
01/12/2004, 12:49
|
| | Fecha de Ingreso: mayo-2003
Mensajes: 866
Antigüedad: 21 años, 11 meses Puntos: 0 | |
Lo he solucionado asi por si a alguien le interesa:
Function AcomodarTXT(txt) txt = "" & txt
txt = Replace (txt, "<", "<")
txt = Replace (txt, ">", ">")
txt = Replace (txt, vbCrLf, "<BR>")
txt = Replace (txt, "''", "'")
acomodarTXT = txt
End function |