Ver Mensaje Individual
  #7 (permalink)  
Antiguo 01/12/2004, 12:49
sqa212
 
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, "<", "&lt;")
txt = Replace (txt, ">", "&gt;")
txt = Replace (txt, vbCrLf, "<BR>")
txt = Replace (txt, "''", "'")
acomodarTXT = txt
End function