What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » HTTP/HTML questions

HTTP/HTML questions
Author: Message:
Millenium_edition
Veteran Member
*****

Avatar

Posts: 1787
Reputation: 57
Joined: Apr 2003
O.P. RE: HTTP/HTML questions
Damn =(

it takes ages to convert 34 kb using my sub.
code:
Function Char2HTML(ByVal sString As String) As String
Dim i As Long, sTemp As String, l As Byte, sTemp2 As String
sTemp2 = Replace(sString, Chr(10), vbNullString, , , vbTextCompare)
For i = 1 To Len(sTemp2)
    l = AscB(Mid$(sTemp2, i, 1))
    If l = 13 Then
        sTemp = sTemp & "<br>"
    Else
        sTemp = sTemp & "&#" & CStr( l) & ";"
    End If
Next i
Char2HTML = sTemp
End Function
help? :(

This post was edited on 11-05-2004 at 01:41 AM by Millenium_edition.
11-05-2004 01:40 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
HTTP/HTML questions - by Millenium_edition on 11-04-2004 at 01:35 AM
RE: HTTP/HTML questions - by fluffy_lobster on 11-04-2004 at 04:38 PM
RE: HTTP/HTML questions - by Millenium_edition on 11-04-2004 at 05:58 PM
RE: HTTP/HTML questions - by WDZ on 11-04-2004 at 06:08 PM
RE: HTTP/HTML questions - by Millenium_edition on 11-04-2004 at 06:17 PM
RE: HTTP/HTML questions - by WDZ on 11-04-2004 at 06:33 PM
RE: HTTP/HTML questions - by fluffy_lobster on 11-04-2004 at 07:39 PM
RE: HTTP/HTML questions - by Millenium_edition on 11-05-2004 at 01:40 AM
RE: HTTP/HTML questions - by RaceProUK on 11-05-2004 at 02:09 AM
RE: HTTP/HTML questions - by Millenium_edition on 11-05-2004 at 02:21 AM
RE: HTTP/HTML questions - by RaceProUK on 11-05-2004 at 10:32 AM
RE: HTTP/HTML questions - by Millenium_edition on 11-05-2004 at 11:54 PM
RE: HTTP/HTML questions - by WDZ on 11-06-2004 at 05:35 AM
RE: HTTP/HTML questions - by -dt- on 11-06-2004 at 09:13 AM
RE: HTTP/HTML questions - by Millenium_edition on 11-06-2004 at 11:24 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On