text conversion

  1. N

    Question How can I extract and display line breaks from SQL text into .NET 4 VB label

    In classic ASP, I was able to use this VB code to find carriage returns in SQL query results and add them as Line Breaks to displayed text. <% Dim Notes Notes = escape(WorkOrderDetails.Fields.Item("note_text").Value) Notes = Replace(Notes, "%0D", "<br>") Notes = unescape(Notes) %> <td...
  2. P

    text file and save to excel?

    Hello, I am really new to vb.net and programming in general. I am wondering if someone can show me how to do this. I have a text file called for example... mytestfile.txt it looks like this: NUMBER....NAME.............................SECOND NAME ======= ====================...
Back
Top