Hola a todos.
Estoy trabajando en la tesis de mi graduacion jiji y no encuentro como hacer un salto de linea al momento de mandar a imprimir...
Pueden ayudarme? es importante... Gracias de antemano.
Es C#.
el codigo es este:
*****************************************************************
this.conexion.Open();
MySqlCommand consulta = new MySqlCommand("select * from usuarios", this.conexion);
MySqlDataReader leer = consulta.ExecuteReader();
while (leer.Read())
{
Font Fuente = new Font("Courier New", 10, FontStyle.Bold);
int encabezado = 70;
int margen = 20;
e.Graphics.DrawString(leer[1].ToString() + " " + leer[2].ToString() + " " + leer[3]+"AQUI QUISIERA EL SALTO DE LINEA", Fuente, Brushes.Black, new PointF(margen + 10, encabezado + 10));
}
this.conexion.Close();
*****************************************************************
GRACIAS ESPERO ME AYUDEN.