Visual Basic - Size en TXT

Life is soft - evento anual de software empresarial
 
Vista:

Size en TXT

Publicado por Christ (24 intervenciones) el 13/02/2004 17:08:33
Estoy creando un archivo txt q lo abro en Bloc de Notas, todo por codigo, lo q quiero saber es COMO HAGO PARA DARLE EL TAMAÑO DE FUENTE POR CODIGO...Aqui Parte del codigo...::

Set fs = CreateObject("Scripting.FileSystemObject")
Set a = fs.CreateTextFile("C:\0Laboratorio\" & txtCodAna.Text & ".txt", True)
a.Write ("Codigo : " & txtCodAna.Text & vbTab & vbTab & vbTab & "Fecha : " & txtFecAna.Text & vbEnter)
a.Write (Chr(13) + Chr(10))
a.Write ("Paciente : " & vbTab & cboNomPac.Text)
a.Write (Chr(13) + Chr(10))
a.Write ("Ordenado : " & vbTab & cboNomDoc.Text & vbTab & vbTab & vbTab & "Clinica : " & vbTab & cboCliDoc.Text)
a.Write (Chr(13) + Chr(10))
a.Write (Chr(13) + Chr(10))

de Antemano Gracias
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:Size en TXT

Publicado por Cecilia Colalongo (3116 intervenciones) el 13/02/2004 21:55:28
Los archivos de texto TXT no tienen tamaño de fuente, tienes que utilizar o RTF o Word.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar