473,327 Members | 2,055 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,327 software developers and data experts.

Converting RTF2HTML

Hi.

I'm trying to convert Brady Hegberg's great RTF2HTML[1] VB 6.0
module to C#. I've managed to convert the VB code to VB.NET,
which gave me the following code:

Option Strict On
Option Explicit On
Option Compare Binary

Public Class RtfToHtml
'Version 3.03
'Copyright Brady Hegberg 2000
' I'm not licensing this software but I'd appreciate it if
' you'd to consider it to be under an lgpl sort of license

'More information can be found at
'http://www2.bitstream.net/~bradyh/downloads/rtf2htmlrm.html

'Converts Rich Text encoded text to HTML format
'if you find some text that this function doesn't
'convert properly please email the coded text to
'b*****@bitstream.net

'Thanks to various people for assistance including
' Anthony DiMauro for work on 3.0x font support
' ...and many others

Private Structure CodeList
Dim Code As String
Dim Status As String
'P=Pending;A=Active;G=Paragraph;D=Dead;K=Killed
'"Dead" means the code is active but will be killed at next
text
'"Pending" means it's waiting for text - if the code is
canceled before text appears it will be killed
'"Active" means there is text using the code at this moment
'"Paragraph" means that the code stays active until the next
paragraph: "/pard" or "/pntext"
End Structure

Private strCurPhrase As String
Dim strHTML As String
Private Codes() As CodeList
Private CodesBeg() As CodeList 'beginning codes
Private NextCodes() As String
Private NextCodesBeg() As String 'beginning codes for next
text
Dim CodesTmp() As String 'temp stack for copying
Dim CodesTmpBeg() As String 'temp stack for copying beg

Private strCR As String 'string to use for CRs - blank if +CR
not chosen in options
Dim strBeforeText As String
Dim strBeforeText2 As String
Dim strBeforeText3 As String
Dim gPlain As Boolean 'true if all codes shouls be popped
before next text
Dim gWBPlain As Boolean 'plain will be true after next text
Dim strColorTable() As String 'table of colors
Dim lColors As Integer '# of colors
Dim strEOL As String 'string to include before <br>
Dim strBOL As String 'string to include after <br>
Dim lSkipWords As Integer 'number od words to skip from
current
Dim gBOL As Boolean 'a <br> was inserted but no non-whitespace
text has been inserted
Dim gPar As Boolean 'true if paragraph was reached since last
text
Dim lBrLev As Integer 'bracket level when finding matching
brackets
Dim strSecTmp As String 'temporary section buffer
Dim gIgnorePard As Boolean 'should pard end list items or not?

Dim strFontTable() As String 'table of fonts
Dim lFonts As Integer '# of fonts
Dim strFont As String
Dim strTable As String
Dim strFace As String 'current font face for setting up
fontstring
Dim strFontColor As String 'current font color for setting up
fontstring
Dim strFontSize As String 'current font size for setting up
fontstring
Dim lFontSize As Integer
Dim iDefFontSize As Short 'default font size
Dim gUseFontFace As Boolean 'use different fonts or always use
default font

Private gDebug As Boolean 'for debugging
Private gStep As Boolean 'for debugging

Private Sub ClearCodes()
ReDim Codes(0)
ReDim CodesBeg(0)
ClearNext()
End Sub

Private Sub ClearNext(Optional ByRef strExcept As String = "")
Dim l As Integer

If Len(strExcept) > 0 Then
If InNext(strExcept) Then
While NextCodes(1) <> strExcept
ShiftNext()
ShiftNextBeg()
End While

Return
End If
End If

ReDim NextCodes(0)
ReDim NextCodesBeg(0)

End Sub

Private Sub ClearFont()
strFont = ""
strTable = ""
strFontColor = ""
strFace = ""
strFontSize = ""
lFontSize = 0
End Sub

Private Sub Codes2NextTill(ByRef strCode As String)
Dim strTmp As String
Dim strTmpbeg As String
Dim l As Integer

For l = 1 To UBound(Codes)
If Codes(l).Code = strCode Then Exit For
If Codes(l).Status <> "K" And Codes(l).Status <> "D" Then
If Not InNext(strCode) Then
UnShiftNext(Codes(l).Code)
UnShiftNextBeg(CodesBeg(l).Code)
End If
End If
Next l
End Sub

Private Sub GetColorTable(ByRef strSecTmp As String, ByRef
strColorTable() As String)
'get color table data and fill in strColorTable array
Dim lColors As Integer
Dim lBOS As Integer
Dim lEOS As Integer
Dim strTmp As String

lBOS = InStr(strSecTmp, "\colortbl")
ReDim strColorTable(0)
lColors = 1
If lBOS <> 0 Then
lBOS = InStr(lBOS, strSecTmp, ";")
lEOS = InStr(lBOS, strSecTmp, ";}")
If lEOS <> 0 Then
lBOS = InStr(lBOS, strSecTmp, "\red")
While ((lBOS <= lEOS) And (lBOS <> 0))
ReDim Preserve strColorTable(lColors)
strTmp = Trim(Hex(CInt(Mid(strSecTmp, lBOS + 4, 1) & _
Convert.ToString(IIf(IsNumeric(Mid(strSecTmp, lBOS +
5, 1)), Mid(strSecTmp, lBOS + 5, 1), "")) & _
Convert.ToString(IIf(IsNumeric(Mid(strSecTmp, lBOS +
6, 1)), Mid(strSecTmp, lBOS + 6, 1), "")))))
If Len(strTmp) = 1 Then strTmp = "0" & strTmp
strColorTable(lColors) = strColorTable(lColors) &
strTmp
lBOS = InStr(lBOS, strSecTmp, "\green")
strTmp = Trim(Hex(CInt(Mid(strSecTmp, lBOS + 6, 1) & _
Convert.ToString(IIf(IsNumeric(Mid(strSecTmp, lBOS +
7, 1)), Mid(strSecTmp, lBOS + 7, 1), "")) & _
Convert.ToString(IIf(IsNumeric(Mid(strSecTmp, lBOS +
8, 1)), Mid(strSecTmp, lBOS + 8, 1), "")))))
If Len(strTmp) = 1 Then strTmp = "0" & strTmp
strColorTable(lColors) = strColorTable(lColors) &
strTmp
lBOS = InStr(lBOS, strSecTmp, "\blue")
strTmp = Trim(Hex(CInt(Mid(strSecTmp, lBOS + 5, 1) & _
Convert.ToString(IIf(IsNumeric(Mid(strSecTmp, lBOS +
6, 1)), Mid(strSecTmp, lBOS + 6, 1), "")) & _
Convert.ToString(IIf(IsNumeric(Mid(strSecTmp, lBOS +
7, 1)), Mid(strSecTmp, lBOS + 7, 1), "")))))
If Len(strTmp) = 1 Then strTmp = "0" & strTmp
strColorTable(lColors) = strColorTable(lColors) &
strTmp
lBOS = InStr(lBOS, strSecTmp, "\red")
lColors = lColors + 1
End While
End If
End If
End Sub

Private Sub GetFontTable(ByRef strSecTmp As String, ByRef
strFontTable() As String)
'get font table data and fill in strFontTable array
Dim lFonts As Integer
Dim lBOS As Integer
Dim lEOS As Integer
Dim strTmp As String
Dim lLvl As Integer
Dim strNextChar As String

lBOS = InStr(strSecTmp, "\fonttbl")
ReDim strFontTable(0)
lFonts = 0
If lBOS <> 0 Then
lEOS = InStr(lBOS, strSecTmp, ";}}")
If lEOS <> 0 Then
lBOS = InStr(lBOS, strSecTmp, "\f0")
While ((lBOS <= lEOS) And (lBOS <> 0))
ReDim Preserve strFontTable(lFonts)
strNextChar = Mid(strSecTmp, lBOS, 1)
While (((strNextChar <> " ") And (lBOS <= lEOS)) Or
(lLvl > 0))
lBOS = lBOS + 1
If strNextChar = "{" Then
lLvl = lLvl + 1
strNextChar = Mid(strSecTmp, lBOS, 1)
ElseIf strNextChar = "}" Then
lLvl = lLvl - 1
If lLvl = 0 Then
strNextChar = " "
lBOS = lBOS - 1
Else
strNextChar = Mid(strSecTmp, lBOS, 1)
End If
Else
strNextChar = Mid(strSecTmp, lBOS, 1)
End If
End While
lBOS = lBOS + 1
strTmp = Mid(strSecTmp, lBOS, InStr(lBOS, strSecTmp,
";") - lBOS)
strFontTable(lFonts) = strFontTable(lFonts) & strTmp
lBOS = InStr(lBOS, strSecTmp, "\f" & (lFonts + 1))
lFonts = lFonts + 1
End While
End If
End If
End Sub

Private Function InNext(ByRef strTmp As String) As Boolean
Dim gTmp As Boolean
Dim l As Integer

l = 1
gTmp = False
While l <= UBound(NextCodes) And Not gTmp
If NextCodes(l) = strTmp Then gTmp = True
l = l + 1
End While

Return gTmp
End Function

Private Function InNextBeg(ByRef strTmp As String) As Boolean
Dim gTmp As Boolean
Dim l As Integer

l = 1
gTmp = False
While l <= UBound(NextCodesBeg) And Not gTmp
If NextCodesBeg(l) = strTmp Then gTmp = True
l = l + 1
End While

Return gTmp
End Function

Private Function InCodes(ByRef strTmp As String, Optional
ByRef gActiveOnly As Boolean = False) As Boolean
Dim gTmp As Boolean
Dim l As Integer

l = 1
gTmp = False
While l <= UBound(Codes) And Not gTmp
If gActiveOnly Then
If Codes(l).Code = strTmp And (Codes(l).Status = "A" Or
Codes(l).Status = "G") Then gTmp = True
Else
If Codes(l).Code = strTmp Then gTmp = True
End If
l = l + 1
End While

Return gTmp
End Function

Private Function InCodesBeg(ByRef strTmp As String) As Boolean
Dim gTmp As Boolean
Dim l As Integer

l = 1
gTmp = False
While l <= UBound(CodesBeg) And Not gTmp
If CodesBeg(l).Code = strTmp Then gTmp = True
l = l + 1
End While

Return gTmp
End Function

Private Function NabNextLine(ByRef strRTF As String) As String
Dim l As Integer

l = InStr(strRTF, vbCrLf)
If l = 0 Then l = Len(strRTF)

NabNextLine = TrimAll(Left(strRTF, l))

If l = Len(strRTF) Then
strRTF = ""
Else
strRTF = TrimAll(Mid(strRTF, l))
End If
End Function

Private Function NabNextWord(ByRef strLine As String) As
String
Dim l As Integer
Dim lvl As Short
Dim gEndofWord As Boolean
Dim gInCommand As Boolean 'current word is command instead
of plain word
Dim lTmp As Integer

gInCommand = False
l = 0
lvl = 0
'strLine = TrimifCmd(strLine)
If Left(strLine, 1) = "}" Then
strLine = Mid(strLine, 2)
NabNextWord = "}"
Return Nothing
End If

If Left(strLine, 1) = "{" Then
strLine = Mid(strLine, 2)
NabNextWord = "{"
Return Nothing
End If

If Left(strLine, 2) = "\'" Then
NabNextWord = Left(strLine, 4)
strLine = Mid(strLine, 5)
Return Nothing
End If

If Left(strLine, 2) = "\\" Or Left(strLine, 2) = "\{" Or
Left(strLine, 2) = "\}" Then
NabNextWord = Left(strLine, 2)
strLine = Mid(strLine, 3)
Return Nothing
End If

While Not gEndofWord
l = l + 1
If l >= Len(strLine) Then
If l = Len(strLine) Then l = l + 1
gEndofWord = True
ElseIf InStr("\{}", Mid(strLine, l, 1)) > 0 Then
If l = 1 And Mid(strLine, l, 1) = "\" Then gInCommand =
True
' If Mid(strLine, l + 1, 1) <> "\" And l > 1
And lvl = 0 Then 'avoid...what?
If l > 1 And lvl = 0 Then
gEndofWord = True
End If
ElseIf Mid(strLine, l, 1) = " " And lvl = 0 And gInCommand
Then
gEndofWord = True
End If
End While

If l = 0 Then l = Len(strLine)
NabNextWord = Left(strLine, l - 1)

While Len(NabNextWord) > 0 And InStr("{}",
Right(NabNextWord, 1)) > 0 And l > 0
NabNextWord = Left(NabNextWord, Len(NabNextWord) - 1)
l = l - 1
End While

strLine = Mid(strLine, l)
If Left(strLine, 1) = " " Then strLine = Mid(strLine, 2)

End Function

Private Function NabSection(ByRef strRTF As String, ByRef lPos
As Integer) As String
'grab section surrounding lPos, strip section out of strRTF
and return it
Dim lBOS As Integer 'beginning of section
Dim lEOS As Integer 'ending of section
Dim strChar As String
Dim lLev As Integer 'level of brackets/parens
Dim lRTFLen As Integer

lRTFLen = Len(strRTF)

lBOS = lPos
strChar = Mid(strRTF, lBOS, 1)
lLev = 1
While lLev > 0
lBOS = lBOS - 1
If lBOS <= 0 Then
lLev = lLev - 1
Else
strChar = Mid(strRTF, lBOS, 1)
If strChar = "}" Then
lLev = lLev + 1
ElseIf strChar = "{" Then
lLev = lLev - 1
End If
End If
End While
lBOS = lBOS - 1
If lBOS < 1 Then lBOS = 1

lEOS = lPos
strChar = Mid(strRTF, lEOS, 1)
lLev = 1
While lLev > 0
lEOS = lEOS + 1
If lEOS >= lRTFLen Then
lLev = lLev - 1
Else
strChar = Mid(strRTF, lEOS, 1)
If strChar = "{" Then
lLev = lLev + 1
ElseIf strChar = "}" Then
lLev = lLev - 1
End If
End If
End While
lEOS = lEOS + 1
If lEOS > lRTFLen Then lEOS = lRTFLen
NabSection = Mid(strRTF, lBOS + 1, lEOS - lBOS - 1)
strRTF = Mid(strRTF, 1, lBOS) & Mid(strRTF, lEOS)
strRTF = rtf2html_replace(strRTF, vbCrLf & vbCrLf, vbCrLf)
End Function

Private Sub Next2Codes()
'move codes from pending ("next") stack to front of current
stack
Dim lNumCodes As Integer
Dim lNumNext As Integer
Dim l As Integer

If UBound(NextCodes) > 0 Then
If InNext("</li>") Then
For l = UBound(NextCodes) To 1 Step -1
If NextCodes(l) = "</li>" And l > 1 Then
NextCodes(l) = NextCodes(l - 1)
NextCodesBeg(l) = NextCodesBeg(l - 1)
NextCodes(l - 1) = "</li>"
NextCodesBeg(l - 1) = "<li>"
End If
Next l
End If

lNumCodes = UBound(Codes)
lNumNext = UBound(NextCodes)
ReDim Preserve Codes(lNumCodes + lNumNext)
ReDim Preserve CodesBeg(lNumCodes + lNumNext)
For l = UBound(Codes) To 1 Step -1
If l > lNumNext Then
Codes(l) = Codes(l - lNumNext)
CodesBeg(l) = CodesBeg(l - lNumNext)
Else
Codes(l).Code = NextCodes(lNumNext - l + 1)
CodesBeg(l).Code = NextCodesBeg(lNumNext - l + 1)
Select Case Codes(l).Code
Case "</td></tr></table>", "</li>"
Codes(l).Status = "PG"
CodesBeg(l).Status = "PG"
Case Else
Codes(l).Status = "P"
CodesBeg(l).Status = "P"
End Select
End If
Next l
ReDim NextCodes(0)
ReDim NextCodesBeg(0)
End If
End Sub

Private Sub Codes2Next()
'move codes from "current" stack to pending ("next") stack
Dim lNumCodes As Integer
Dim l As Integer

If UBound(Codes) > 0 Then
lNumCodes = UBound(NextCodes)
ReDim Preserve NextCodes(lNumCodes + UBound(Codes))
ReDim Preserve NextCodesBeg(lNumCodes + UBound(Codes))
For l = 1 To UBound(Codes)
NextCodes(lNumCodes + l) = Codes(l).Code
NextCodesBeg(lNumCodes + l) = CodesBeg(l).Code
Next l
ReDim Codes(0)
ReDim CodesBeg(0)
End If
End Sub

Private Function ParseFont(ByRef strColor As String, ByRef
strSize As String, ByRef strFace As String) As String
Dim strTmpFont As String

If strColor & strSize & strFace = "" Then
strTmpFont = ""
Else
strTmpFont = "<font"
If strFace <> "" Then
strTmpFont = strTmpFont & " face=""" & strFace & """"
End If
If strColor <> "" Then
strTmpFont = strTmpFont & " color=""" & strColor & """"
End If
If strSize <> "" And Val(strSize) <> iDefFontSize Then
strTmpFont = strTmpFont & " size=""" & strSize & """"
End If
strTmpFont = strTmpFont & ">"
End If
ParseFont = strTmpFont
End Function

Private Function PopCode() As String
If UBound(Codes) > 0 Then
PopCode = Codes(UBound(Codes)).Code
ReDim Preserve Codes(UBound(Codes) - 1)
End If
End Function

Private Function ProcessAfterTextCodes() As String
Dim strTmp As String
Dim l As Integer
Dim lLastKilled As Integer
Dim lRetVal As Integer

'check for/handle font change
If strFont <> GetLastFont() Then
KillCode("</font>")
If Len(strFont) > 0 Then
lRetVal = ReplaceInNextBeg("</font>", strFont)
If lRetVal = 0 Then
PushNext("</font>")
PushNextBeg(strFont)
End If
End If
Else
If Not InNext("</li>") Then ReviveCode("</font>")
End If

'now handle everything killed and move codes farther in to
next
' ie: \b B\i B \u B\i0 B \u0\b0 =>
<b>B<i>B<u>B</u>B</i><u>B</u></b>
strTmp = ""
If UBound(Codes) > 0 Then
lLastKilled = 0
For l = UBound(Codes) To 1 Step -1
If Codes(l).Status = "K" Then
lLastKilled = l
Exit For
End If
Next l
If lLastKilled > 0 Then
For l = 1 To lLastKilled
strTmp = strTmp & Codes(l).Code
If Codes(l).Code = "</li>" Then strTmp = strTmp &
strCR
Next l
For l = lLastKilled To 1 Step -1
If Codes(l).Status <> "D" And Codes(l).Status <> "K"
Then
If Not InNext(Codes(l).Code) Then
PushNext(Codes(l).Code)
PushNextBeg(CodesBeg(l).Code)
End If
Codes(l).Status = "K"
CodesBeg(l).Status = "K"
End If
Next l
End If
End If
ProcessAfterTextCodes = strTmp
End Function

Private Function GetActiveCodes() As String
Dim strTmp As String
Dim l As Integer

strTmp = ""
If UBound(Codes) > 0 Then
For l = 1 To UBound(Codes)
strTmp = strTmp & Codes(l).Code
Next l
End If
GetActiveCodes = strTmp
End Function

Private Function GetLastFont() As String
Dim strTmp As String
Dim l As Integer

strTmp = ""
If UBound(Codes) > 0 Then
For l = UBound(Codes) To 1 Step -1
If Codes(l).Code = "</font>" Then
strTmp = CodesBeg(l).Code
Exit For
End If
Next l
End If
GetLastFont = strTmp
End Function

Private Sub SetPendingCodesActive()
Dim strTmp As String
Dim l As Integer

strTmp = ""
If UBound(Codes) > 0 Then
For l = 1 To UBound(Codes)
If Codes(l).Status = "P" Then
Codes(l).Status = "A"
CodesBeg(l).Status = "A"
ElseIf Codes(l).Status = "PG" Then
Codes(l).Status = "G"
CodesBeg(l).Status = "G"
End If
Next l
End If
End Sub

Private Function KillCode(ByRef strCode As String, Optional
ByRef strExcept As String = "") As Integer
'mark all codes of type strCode as killed
' except where status = strExcept
' if strCode = "*" then mark all killed
Dim strTmp As String
Dim l As Integer

strTmp = ""
If UBound(Codes) > 0 Then
If Left(strExcept, 1) = "<" Then 'strExcept is either a
code or a status
For l = 1 To UBound(Codes)
If (Codes(l).Code = strCode Or strCode = "*") And
Codes(l).Code <> strExcept Then
Codes(l).Status = "K"
CodesBeg(l).Status = "K"
End If
If strCode = "*" And Codes(l).Code = strExcept Then
Exit For
Next l
Else
For l = 1 To UBound(Codes)
If (Codes(l).Code = strCode Or strCode = "*") And
Codes(l).Status <> strExcept Then
Codes(l).Status = "K"
CodesBeg(l).Status = "K"
End If
Next l
End If
End If
End Function

Private Function GetAllCodesTill(ByRef strTill As String) As
String
'get all codes except strTill
Dim strTmp As String
Dim l As Integer

strTmp = ""
If UBound(Codes) > 0 Then
For l = UBound(Codes) To 1 Step -1
If Codes(l).Code = strTill Then
Exit For
Else
If Not InNextBeg(CodesBeg(l).Code) And Codes(l).Status
<> "D" Then
strTmp = strTmp & Codes(l).Code
Codes(l).Status = "K"
CodesBeg(l).Status = "K"
End If
End If
Next l
End If
GetAllCodesTill = strTmp
End Function
Private Function GetAllCodesBeg() As String
Dim strTmp As String
Dim l As Integer

strTmp = ""
If UBound(CodesBeg) > 0 Then
For l = UBound(CodesBeg) To 1 Step -1
If CodesBeg(l).Status = "P" Then
strTmp = strTmp & CodesBeg(l).Code
CodesBeg(l).Status = "A"
Codes(l).Status = "A"
ElseIf CodesBeg(l).Status = "PG" Then
strTmp = strTmp & CodesBeg(l).Code
CodesBeg(l).Status = "G"
Codes(l).Status = "G"
End If
Next l
End If
GetAllCodesBeg = strTmp
End Function

Private Function GetAllCodesBegTill(ByRef strTill As String)
As String
'get all codes except strTill - stop if strTill reached
'"<table"
Dim strTmp As String
Dim l As Integer

strTmp = ""
If UBound(CodesBeg) > 0 Then
For l = 1 To UBound(CodesBeg)
If Codes(l).Code = strTill Then
Exit For
Else
If CodesBeg(l).Status = "P" Then
strTmp = strTmp & CodesBeg(l).Code
Codes(l).Status = "A"
CodesBeg(l).Status = "A"
ElseIf CodesBeg(l).Status = "PG" Then
strTmp = strTmp & CodesBeg(l).Code
Codes(l).Status = "G"
CodesBeg(l).Status = "G"
End If
End If
Next l
End If
GetAllCodesBegTill = strTmp
End Function

Private Function ShiftNext() As String
'get 1st code off list and shorten list
Dim l As Integer

If UBound(NextCodes) > 0 Then
ShiftNext = NextCodes(1)
For l = 1 To UBound(NextCodes) - 1
NextCodes(l) = NextCodes(l + 1)
Next l
ReDim Preserve NextCodes(UBound(NextCodes) - 1)
End If
End Function

Private Function ShiftNextBeg() As String
'get 1st code off list and shorten list
Dim l As Integer

If UBound(NextCodesBeg) > 0 Then
ShiftNextBeg = NextCodesBeg(1)
For l = 1 To UBound(NextCodesBeg) - 1
NextCodesBeg(l) = NextCodesBeg(l + 1)
Next l
ReDim Preserve NextCodesBeg(UBound(NextCodesBeg) - 1)
End If
End Function
Private Sub ProcessWord(ByRef strWord As String)
Dim strTmp As String
Dim strTmpbeg As String
Dim l As Integer
Dim gPopAll As Boolean
Dim lRetVal As Integer

Dim strTableAlign As String 'current table alignment for
setting up tablestring
Dim strTableWidth As String 'current table width for setting
up tablestring

If lSkipWords > 0 Then
lSkipWords = lSkipWords - 1
Exit Sub
End If
If (Left(strWord, 1) = "\" Or Left(strWord, 1) = "{" Or
Left(strWord, 1) = "}") And (Left(strWord, 2) <> "\\" And
Left(strWord, 2) <> "\{" And Left(strWord, 2) <> "\}") Then
strWord = Trim(strWord)
Select Case Left(strWord, 2)
Case "}"
If lBrLev = 0 Then
lRetVal = KillCode("*", "G")
ClearNext("</li>")
ClearFont()
End If
Case "\'" 'special characters
strTmp = HTMLCode(Mid(strWord, 3))
If Left(strTmp, 6) = "<rtf>:" Then
strSecTmp = Mid(strTmp, 7) & " " & strSecTmp
Else
strSecTmp = strTmp & strSecTmp
End If
Case "\b" 'bold
If strWord = "\b" Then
If InCodes("</b>", True) Then
' Codes2NextTill ("</b>")
Else
PushNext("</b>")
PushNextBeg("<b>")
End If
ElseIf strWord = "\bullet" Then
'If Not (Codes(UBound(Codes)).Code = "</li>" And
Codes(UBound(Codes)).Status = "A") Then
PushNext("</li>")
PushNextBeg("<li>")
'End If
ElseIf strWord = "\b0" Then 'bold off
If InCodes("</b>") Then
Codes2NextTill("</b>")
KillCode("</b>")
End If
If InNext("</b>") Then
RemoveFromNext("</b>")
End If
End If
Case "\c"
If strWord = "\cf0" Then 'color font off
strFontColor = ""
strFont = ParseFont(strFontColor, strFontSize,
strFace)
ElseIf Left(strWord, 3) = "\cf" And
IsNumeric(Mid(strWord, 4)) Then 'color font
'get color code
l = Convert.ToInt32(Val(Mid(strWord, 4)))
If l <= UBound(strColorTable) And l > 0 Then
strFontColor = "#" & strColorTable(l)
End If

'insert color
If strFontColor <> "#" Then
strFont = ParseFont(strFontColor, strFontSize,
strFace)
If InNext("</font>") Then
ReplaceInNextBeg("</font>", strFont)
ElseIf InCodes("</font>") Then
PushNext("</font>")
PushNextBeg(strFont)
Codes2NextTill("</font>")
KillCode("</font>")
Else
PushNext("</font>")
PushNextBeg(strFont)
End If
End If
End If
Case "\f"
If Left(strWord, 3) = "\fs" And IsNumeric(Mid(strWord,
4)) Then 'font size
l = Convert.ToInt32(Val(Mid(strWord, 4)))
lFontSize = Convert.ToInt32(Int((l / 7) - 0)) 'calc
to convert RTF to HTML sizes
If lFontSize > 8 Then lFontSize = 8
If lFontSize < 1 Then lFontSize = 1
strFontSize = Trim(CStr(lFontSize))
If Val(strFontSize) = iDefFontSize Then strFontSize
= ""
'insert size
strFont = ParseFont(strFontColor, strFontSize,
strFace)
ElseIf Left(strWord, 2) = "\f" And
IsNumeric(Mid(strWord, 3)) And gUseFontFace Then 'font type
strFace =
strFontTable(Convert.ToInt32(Val(Mid(strWord, 3))))
strFont = ParseFont(strFontColor, strFontSize,
strFace)
End If
Case "\i"
If strWord = "\i" Then 'italics
If InCodes("</i>", True) Then
' Codes2NextTill ("</i>")
Else
PushNext("</i>")
PushNextBeg("<i>")
End If
ElseIf strWord = "\i0" Then 'italics off
If InCodes("</i>") Then
Codes2NextTill("</i>")
KillCode("</i>")
End If
If InNext("</i>") Then
RemoveFromNext("</i>")
End If
End If
Case "\l"
'If strWord = "\listname" Then
' lSkipWords = 1
'End If
Case "\n"
If strWord = "\nosupersub" Then 'superscript/subscript
off
If InCodes("</sub>", True) Then
Codes2NextTill("</sub>")
KillCode("</sub>")
End If
If InNext("</sub>") Then
RemoveFromNext("</sub>")
End If
If InCodes("</sup>", True) Then
Codes2NextTill("</sup>")
KillCode("</sup>")
End If
If InNext("</sup>") Then
RemoveFromNext("</sup>")
End If
End If
Case "\p"
If strWord = "\par" Then
If Not (InCodes("</ul>") Or InCodes("</li>")) Then
strBeforeText2 = strBeforeText2 & strEOL & "<br>"
& strCR
Else
lRetVal = KillCode("</li>")
RemoveFromNext("</li>")
End If
gBOL = True
gPar = True
'If InCodes("</ul>") Then
' PushNext ("</li>")
' PushNextBeg ("<li>")
'End If
ElseIf strWord = "\pard" Then
For l = 1 To UBound(CodesBeg)
If Codes(l).Status = "G" Or Codes(l).Status = "PG"
Then
Codes(l).Status = "K"
CodesBeg(l).Status = "K"
End If
Next l
If Not gIgnorePard Then
If InCodes("</li>") Then
lRetVal = KillCode("</li>")
RemoveFromNext("</li>")
End If
End If
gPar = True
ElseIf strWord = "\plain" Then
lRetVal = KillCode("*", "G")
ClearFont()
ElseIf strWord = "\pnlvlblt" Then 'bulleted list
If Not InNext("</li>") Then
PushNext("</li>")
PushNextBeg("<li>")
End If
'PushNext ("</ul>")
'PushNextBeg ("<ul>")
ElseIf strWord = "\pntxta" Then 'numbered list?
lSkipWords = 1
ElseIf strWord = "\pntxtb" Then 'numbered list?
lSkipWords = 1
ElseIf strWord = "\pntext" Then 'bullet
If Not InNext("</li>") Then
PushNext("</li>")
PushNextBeg("<li>")
Codes2NextTill("</table>")
KillCode("*")
End If
End If
Case "\q"
If strWord = "\qc" Then 'centered
strTableAlign = "center"
strTableWidth = "100%"
If InNext("</td></tr></table>") Then
'?
Else
strTable = "<table width=""" & strTableWidth &
"""><tr><td align=""" & strTableAlign & """>"
End If
If InNext("</td></tr></table>") Then
ReplaceInNextBeg("</td></tr></table>", strTable)
ElseIf InCodes("</td></tr></table>") Then
PushNext("</td></tr></table>")
PushNextBeg(strTable)
Codes2NextTill("</td></tr></table>")
Else
PushNext("</td></tr></table>")
PushNextBeg(strTable)
End If
ElseIf strWord = "\qr" Then 'right justified
strTableAlign = "right"
strTableWidth = "100%"
If InNext("</td></tr></table>") Then
'?
Else
strTable = "<table width=""" & strTableWidth &
"""><tr><td align=""" & strTableAlign & """>"
End If
If InNext("</td></tr></table>") Then
ReplaceInNextBeg("</td></tr></table>", strTable)
ElseIf InCodes("</td></tr></table>") Then
PushNext("</td></tr></table>")
PushNextBeg(strTable)
Codes2NextTill("</td></tr></table>")
Else
PushNext("</td></tr></table>")
PushNextBeg(strTable)
End If
End If
Case "\s"
If strWord = "\strike" Then 'strike text
If Codes(UBound(Codes)).Code <> "</s>" Or
(Codes(UBound(Codes)).Code = "</s>" And
CodesBeg(UBound(Codes)).Code = "") Then
PushNext("</s>")
PushNextBeg("<s>")
End If
ElseIf strWord = "\strike0" Then 'strike off
If InCodes("</s>") Then
Codes2NextTill("</s>")
KillCode("</s>")
End If
If InNext("</s>") Then
RemoveFromNext("</s>")
End If
ElseIf strWord = "\super" Then 'superscript
If Codes(UBound(Codes)).Code <> "</sup>" Or
(Codes(UBound(Codes)).Code = "</sup>" And
CodesBeg(UBound(Codes)).Code = "") Then
PushNext("</sup>")
PushNextBeg("<sup>")
End If
ElseIf strWord = "\sub" Then 'subscript
If Codes(UBound(Codes)).Code <> "</sub>" Or
(Codes(UBound(Codes)).Code = "</sub>" And
CodesBeg(UBound(Codes)).Code = "") Then
PushNext("</sub>")
PushNextBeg("<sub>")
End If
End If

'If strWord = "\snext0" Then 'style
' lSkipWords = 1
'End If
Case "\t"
If strWord = "\tab" Then 'tab
strSecTmp = vbTab & strSecTmp
End If
Case "\u"
If strWord = "\ul" Then 'underline
If InCodes("</u>", True) Then
' Codes2NextTill ("</u>")
Else
PushNext("</u>")
PushNextBeg("<u>")
End If
ElseIf strWord = "\ulnone" Then 'stop underline
If InCodes("</u>") Then
Codes2NextTill("</u>")
KillCode("</u>")
End If
If InNext("</u>") Then
RemoveFromNext("</u>")
End If
End If
End Select
Else
If Len(strWord) > 0 Then
If strWord = "\\" Or strWord = "\{" Or strWord = "\}"
Then strWord = Right(strWord, 1)
If Trim(strWord) = "" Then
If gBOL Then strWord = rtf2html_replace(strWord, " ",
"&nbsp;")
strCurPhrase = strCurPhrase & strBeforeText3 & strWord
Else
'regular text
If gPar Then
strBeforeText = strBeforeText &
ProcessAfterTextCodes()
Next2Codes()
strBeforeText3 = GetAllCodesBeg()
gPar = False
Else
strBeforeText = strBeforeText &
ProcessAfterTextCodes()
Next2Codes()
strBeforeText3 =
GetAllCodesBegTill("</td></tr></table>")
End If
RemoveBlanks()

strCurPhrase = strCurPhrase & strBeforeText
strBeforeText = ""
strCurPhrase = strCurPhrase & strBeforeText2
strBeforeText2 = ""
strCurPhrase = strCurPhrase & strBeforeText3 & strWord
strBeforeText3 = ""
gBOL = False
End If
End If
End If
End Sub

Private Sub PushNext(ByRef strCode As String)
If Len(strCode) > 0 Then
ReDim Preserve NextCodes(UBound(NextCodes) + 1)
NextCodes(UBound(NextCodes)) = strCode
End If
End Sub

Private Sub UnShiftNext(ByRef strCode As String)
'stick strCode on front of list and move everything over to
make room
Dim l As Integer

If Len(strCode) > 0 Then
ReDim Preserve NextCodes(UBound(NextCodes) + 1)
If UBound(NextCodes) > 1 Then
For l = UBound(NextCodes) To 1 Step -1
NextCodes(l) = NextCodes(l - 1)
Next l
End If
NextCodes(1) = strCode
End If
End Sub

Private Sub UnShiftNextBeg(ByRef strCode As String)
Dim l As Integer

If Len(strCode) > 0 Then
ReDim Preserve NextCodesBeg(UBound(NextCodesBeg) + 1)
If UBound(NextCodesBeg) > 1 Then
For l = UBound(NextCodesBeg) To 1 Step -1
NextCodesBeg(l) = NextCodesBeg(l - 1)
Next l
End If
NextCodesBeg(1) = strCode
End If
End Sub

Private Sub PushNextBeg(ByRef strCode As String)
ReDim Preserve NextCodesBeg(UBound(NextCodesBeg) + 1)
NextCodesBeg(UBound(NextCodesBeg)) = strCode
End Sub

Private Sub RemoveBlanks()
Dim l As Integer
Dim lOffSet As Integer

l = 1
lOffSet = 0
While l <= UBound(CodesBeg) And l + lOffSet <=
UBound(CodesBeg)
If CodesBeg(l).Status = "K" Or CodesBeg(l).Status = ""
Then 'And Not (Codes(l) = "</font>" And Len(strFont) > 0) Then
lOffSet = lOffSet + 1
Else
l = l + 1
End If
If l + lOffSet <= UBound(CodesBeg) Then
Codes(l) = Codes(l + lOffSet)
CodesBeg(l) = CodesBeg(l + lOffSet)
End If
End While
If lOffSet > 0 Then
ReDim Preserve Codes(UBound(Codes) - lOffSet)
ReDim Preserve CodesBeg(UBound(CodesBeg) - lOffSet)
End If
End Sub

Private Sub RemoveFromNext(ByRef strRem As String)
Dim l As Integer
Dim m As Integer

If UBound(NextCodes) < 1 Then Return

l = 1
While l < UBound(NextCodes)
If NextCodes(l) = strRem Then
For m = l To UBound(NextCodes) - 1
NextCodes(m) = NextCodes(m + 1)
NextCodesBeg(m) = NextCodesBeg(m + 1)
Next m
l = m
Else
l = l + 1
End If
End While
ReDim Preserve NextCodes(UBound(NextCodes) - 1)
ReDim Preserve NextCodesBeg(UBound(NextCodesBeg) - 1)

End Sub

Private Function rtf2html_replace(ByVal strIn As String, ByVal
strRepl As String, ByVal strWith As String) As String
'replace all instances of strRepl in strIn with strWith
Dim i As Short

If ((Len(strRepl) = 0) Or (Len(strIn) = 0)) Then
rtf2html_replace = strIn
Exit Function
End If
i = Convert.ToInt16(InStr(strIn, strRepl))
While i <> 0
strIn = Left(strIn, i - 1) & strWith & Mid(strIn, i +
Len(strRepl))
i = Convert.ToInt16(InStr(i + Len(strWith), strIn,
strRepl))
End While
rtf2html_replace = strIn
End Function

Private Sub ReviveCode(ByRef strCode As String)
Dim l As Integer

For l = 1 To UBound(Codes)
If Codes(l).Code = strCode Then
Codes(l).Status = "A"
CodesBeg(l).Status = "A"
End If
Next l
End Sub

Private Function ReplaceInNextBeg(ByRef strCode As String,
ByRef strWith As String) As Integer
Dim l As Integer
Dim lCount As Integer 'number of codes replaced

lCount = 0
For l = 1 To UBound(NextCodes)
If NextCodes(l) = strCode Then
NextCodesBeg(l) = strWith
lCount = lCount + 1
End If
Next l
ReplaceInNextBeg = lCount
End Function

Private Sub ReplaceInCodesBeg(ByRef strCode As String, ByRef
strWith As String)
Dim l As Integer

l = 1
While l <= UBound(Codes) And Codes(l).Code <> strCode
l = l + 1
End While
If Codes(l).Code = strCode Then
If CodesBeg(l).Code <> strWith Then
CodesBeg(l).Code = strWith
Codes(l).Status = "P"
CodesBeg(l).Status = "P"
Else
Codes(l).Status = "P"
CodesBeg(l).Status = "P"
End If
End If
End Sub

Public Enum Options
Html = 1
H = 1
End Enum

Public Function ConvertRtfToHtml(ByVal strRTF As String,
Optional ByVal strOptions As String = "") As String
'Options:
'+H add an HTML header and footer
'+G add a generator Metatag
'+T="MyTitle" add a title (only works if +H is used)
'+CR add a carraige return after all <br>s
'+I keep html codes intact
'+F=X default font size (blanks out any changes
to this size - saves on space)
'-FF ignore font faces

Dim strHTML As String
Dim strRTFTmp As String
Dim l As Integer
Dim lTmp As Integer
Dim lTmp2 As Integer
Dim lTmp3 As Integer
Dim lRTFLen As Integer
Dim lBOS As Integer 'beginning of section
Dim lEOS As Integer 'end of section
Dim strTmp As String
Dim strTmp2 As String
Dim strEOS As String 'string to be added to end of section
Dim strBOS As String 'string to be added to beginning of
section
Dim strEOP As String 'string to be added to end of paragraph
Dim strBOL As String 'string to be added to the begining of
each new line
Dim strEOL As String 'string to be added to the end of each
new line
Dim strEOLL As String 'string to be added to the end of
previous line
Const gHellFrozenOver As Boolean = False 'always false
Dim gSkip As Boolean 'skip to next word/command
Dim strCodes As String 'codes for ascii to HTML char
conversion
Dim strCurLine As String 'temp storage for text for current
line before being added to strHTML
Dim strFontCodes As String 'list of font code modifiers
Dim gSeekingText As Boolean 'True if we have to hit text
before inserting a </FONT>
Dim gText As Boolean 'true if there is text (as opposed to a
control code) in strTmp
Dim strAlign As String '"center" or "right"
Dim gAlign As Boolean 'if current text is aligned
Dim strGen As String 'Temp store for Generator Meta Tag if
requested
Dim strTitle As String 'Temp store for Title if requested
Dim gHTML As Boolean 'true if html codes should be left
intact
Dim strWordTmp As String 'temporary word buffer
Dim strEndText As String 'ending text
Dim strLastWord As String 'previous "word"

ClearCodes()
strHTML = ""
gPlain = False
gBOL = True
gPar = False
strCurPhrase = ""

'setup +CR option
If InStr(strOptions, "+CR") <> 0 Then strCR = vbCrLf Else
strCR = ""
'setup +HTML option
If InStr(strOptions, "+I") <> 0 Then gHTML = True Else gHTML
= False
'setup default font size option
If InStr(strOptions, "+F=") <> 0 Then
l = InStr(strOptions, "+F=") + 3
strTmp = Mid(strOptions, l, 1)
iDefFontSize = 0
While IsDig(strTmp)
iDefFontSize = Convert.ToInt16(iDefFontSize * 10 +
Val(strTmp))
l = l + 1
strTmp = Mid(strOptions, l, 1)
End While
End If
'setup to use different fonts or not
If InStr(strOptions, "-FF") <> 0 Then gUseFontFace = False
Else gUseFontFace = True

strRTFTmp = TrimAll(strRTF)

If Left(strRTFTmp, 1) = "{" And Right(strRTFTmp, 1) = "}"
Then strRTFTmp = Mid(strRTFTmp, 2, Len(strRTFTmp) - 2)

'setup list (bullets) status
If InStr(strRTFTmp, "\list\") <> 0 Then
'I'm not sure if this is in any way correct but it seems
to work for Me
'sometimes \pard ends a list item sometimes it doesn't
gIgnorePard = True
Else
gIgnorePard = False
End If

'setup color table
lBOS = InStr(strRTFTmp, "\colortbl")
If lBOS > 0 Then
strSecTmp = NabSection(strRTFTmp, lBOS)
GetColorTable(strSecTmp, strColorTable)
End If

'setup font table
lBOS = InStr(strRTFTmp, "\fonttbl")
If lBOS > 0 Then
strSecTmp = NabSection(strRTFTmp, lBOS)
GetFontTable(strSecTmp, strFontTable)
End If

'setup stylesheets
lBOS = InStr(strRTFTmp, "\stylesheet")
If lBOS > 0 Then
strSecTmp = NabSection(strRTFTmp, lBOS)
'ignore stylesheets for now
End If

'setup info
lBOS = InStr(strRTFTmp, "\info")
If lBOS > 0 Then
strSecTmp = NabSection(strRTFTmp, lBOS)
'ignore info for now
End If

'list table
lBOS = InStr(strRTFTmp, "\listtable")
If lBOS > 0 Then
strSecTmp = NabSection(strRTFTmp, lBOS)
'ignore info for now
End If

'list override table
lBOS = InStr(strRTFTmp, "\listoverridetable")
If lBOS > 0 Then
strSecTmp = NabSection(strRTFTmp, lBOS)
'ignore info for now
End If

lBrLev = 0
strLastWord = ""
While Len(strRTFTmp) > 0
strSecTmp = NabNextLine(strRTFTmp)
While Len(strSecTmp) > 0
strLastWord = strWordTmp
strWordTmp = NabNextWord(strSecTmp)
If lBrLev > 0 Then
If strWordTmp = "{" Then
lBrLev = lBrLev + 1
ElseIf strWordTmp = "}" Then
lBrLev = lBrLev - 1
End If
strWordTmp = ""
ElseIf strWordTmp = "\*" Or strWordTmp = "\pict" Then
'skip \pnlvlbt stuff
lBrLev = 1
strWordTmp = ""
ElseIf strWordTmp = "\pntext" Then
'get bullet codes but skip rest for now
lBrLev = 1
End If
If Len(strWordTmp) > 0 Then
If Len(strWordTmp) > 0 Then ProcessWord(strWordTmp)
End If
End While
End While

'get any remaining codes in stack
strEndText = strEndText & GetActiveCodes()
strBeforeText2 = rtf2html_replace(strBeforeText2, "<br />",
"")
strBeforeText2 = rtf2html_replace(strBeforeText2, vbCrLf,
"")
strCurPhrase = strCurPhrase & strBeforeText & strBeforeText2
& strEndText
strBeforeText = ""
strBeforeText2 = ""
strBeforeText3 = ""
strHTML = strHTML & strCurPhrase
strCurPhrase = ""
ClearFont()
Return strHTML
End Function

Private Function IsDig(ByRef strChar As String) As Boolean
If Len(strChar) = 0 Then
IsDig = False
Else
IsDig = InStr("1234567890", strChar) > 0
End If
End Function
Private Function GetCodes(ByRef strWordTmp As String) As
String
Dim strTmp As String
Dim l As Integer

strTmp = "CurWord: "
If Len(strWordTmp) > 20 Then
strTmp = strTmp & Left(strWordTmp, 20) & "..."
Else
strTmp = strTmp & strWordTmp
End If
strTmp = strTmp & vbCrLf & vbCrLf & "BegCodes: "
For l = 1 To UBound(CodesBeg)
strTmp = strTmp & CodesBeg(l).Code & " (" &
CodesBeg(l).Status & "), "
Next l
strTmp = strTmp & vbCrLf & "Codes: "
For l = 1 To UBound(Codes)
strTmp = strTmp & Codes(l).Code & " (" & Codes(l).Status &
"), "
Next l
strTmp = strTmp & vbCrLf & vbCrLf & "NextBegCodes: "
For l = 1 To UBound(NextCodesBeg)
strTmp = strTmp & NextCodesBeg(l) & ", "
Next l
strTmp = strTmp & vbCrLf & "NextCodes: "
For l = 1 To UBound(NextCodes)
strTmp = strTmp & NextCodes(l) & ", "
Next l
strTmp = strTmp & vbCrLf & vbCrLf & "Font String: " &
strFont
strTmp = strTmp & vbCrLf & vbCrLf & "Before Text: " &
strBeforeText2
GetCodes = strTmp
End Function

Private Function TrimAll(ByVal strTmp As String) As String
Dim l As Integer

strTmp = Trim(strTmp)
l = Len(strTmp) + 1
While l <> Len(strTmp)
l = Len(strTmp)
If Right(strTmp, 1) = vbCrLf Then strTmp = Left(strTmp,
Len(strTmp) - 1)
If Left(strTmp, 1) = vbCrLf Then strTmp = Right(strTmp,
Len(strTmp) - 1)
If Right(strTmp, 1) = vbCr Then strTmp = Left(strTmp,
Len(strTmp) - 1)
If Left(strTmp, 1) = vbCr Then strTmp = Right(strTmp,
Len(strTmp) - 1)
If Right(strTmp, 1) = vbLf Then strTmp = Left(strTmp,
Len(strTmp) - 1)
If Left(strTmp, 1) = vbLf Then strTmp = Right(strTmp,
Len(strTmp) - 1)
End While
TrimAll = strTmp
End Function

Private Function HTMLCode(ByRef strRTFCode As String) As
String
'given rtf code return html code
Select Case strRTFCode
Case "00"
HTMLCode = "&nbsp;"
Case "a9"
HTMLCode = "&copy;"
Case "b4"
HTMLCode = "&acute;"
Case "ab"
HTMLCode = "&laquo;"
Case "bb"
HTMLCode = "&raquo;"
Case "a1"
HTMLCode = "&iexcl;"
Case "bf"
HTMLCode = "&iquest;"
Case "c0"
HTMLCode = "&Agrave;"
Case "e0"
HTMLCode = "&agrave;"
Case "c1"
HTMLCode = "&Aacute;"
Case "e1"
HTMLCode = "&aacute;" 'á
Case "c2"
HTMLCode = "&Acirc;"
Case "e2"
HTMLCode = "&acirc;"
Case "c3"
HTMLCode = "&Atilde;"
Case "e3"
HTMLCode = "&atilde;"
Case "c4"
HTMLCode = "&Auml;"
Case "e4", "99"
HTMLCode = "<rtf>:\super TM\nosupersub"
Case "c5"
HTMLCode = "&Aring;"
Case "e5"
HTMLCode = "&aring;"
Case "c6"
HTMLCode = "&AElig;"
Case "e6"
HTMLCode = "&aelig;"
Case "c7"
HTMLCode = "&Ccedil;"
Case "e7"
HTMLCode = "&ccedil;"
Case "d0"
HTMLCode = "&ETH;"
Case "f0"
HTMLCode = "&eth;"
Case "c8"
HTMLCode = "&Egrave;"
Case "e8"
HTMLCode = "&egrave;"
Case "c9"
HTMLCode = "&Eacute;"
Case "e9"
HTMLCode = "&eacute;"
Case "ca"
HTMLCode = "&Ecirc;"
Case "ea"
HTMLCode = "&ecirc;"
Case "cb"
HTMLCode = "&Euml;"
Case "eb"
HTMLCode = "&euml;"
Case "cc"
HTMLCode = "&Igrave;"
Case "ec"
HTMLCode = "&igrave;"
Case "cd"
HTMLCode = "&Iacute;"
Case "ed"
HTMLCode = "&iacute;" 'í
Case "ce"
HTMLCode = "&Icirc;"
Case "ee"
HTMLCode = "&icirc;"
Case "cf"
HTMLCode = "&Iuml;"
Case "ef"
HTMLCode = "&iuml;"
Case "d1"
HTMLCode = "&Ntilde;"
Case "f1"
HTMLCode = "&ntilde;"
Case "d2"
HTMLCode = "&Ograve;"
Case "f2"
HTMLCode = "&ograve;"
Case "d3"
HTMLCode = "&Oacute;"
Case "f3"
HTMLCode = "&oacute;"
Case "d4"
HTMLCode = "&Ocirc;"
Case "f4"
HTMLCode = "&ocirc;"
Case "d5"
HTMLCode = "&Otilde;"
Case "f5"
HTMLCode = "&otilde;"
Case "d6"
HTMLCode = "&Ouml;"
Case "f6"
HTMLCode = "&ouml;"
Case "d8"
HTMLCode = "&Oslash;"
Case "f8"
HTMLCode = "&oslash;"
Case "d9"
HTMLCode = "&Ugrave;"
Case "f9"
HTMLCode = "&ugrave;"
Case "da"
HTMLCode = "&Uacute;"
Case "fa"
HTMLCode = "&uacute;"
Case "db"
HTMLCode = "&Ucirc;"
Case "fb"
HTMLCode = "&ucirc;"
Case "dc"
HTMLCode = "&Uuml;"
Case "fc"
HTMLCode = "&uuml;"
Case "dd"
HTMLCode = "&Yacute;"
Case "fd"
HTMLCode = "&yacute;"
Case "ff"
HTMLCode = "&yuml;"
Case "de"
HTMLCode = "&THORN;"
Case "fe"
HTMLCode = "&thorn;"
Case "df"
HTMLCode = "&szlig;"
Case "a7"
HTMLCode = "&sect;"
Case "b6"
HTMLCode = "&para;"
Case "b5"
HTMLCode = "&micro;"
Case "a6"
HTMLCode = "&brvbar;"
Case "b1"
HTMLCode = "&plusmn;"
Case "b7"
HTMLCode = "&middot;"
Case "a8"
HTMLCode = "&uml;"
Case "b8"
HTMLCode = "&cedil;"
Case "aa"
HTMLCode = "&ordf;"
Case "ba"
HTMLCode = "&ordm;"
Case "ac"
HTMLCode = "&not;"
Case "ad"
HTMLCode = "­"
Case "af"
HTMLCode = "&macr;"
Case "b0"
HTMLCode = "&deg;"
Case "b9"
HTMLCode = "&sup1;"
Case "b2"
HTMLCode = "&sup2;"
Case "b3"
HTMLCode = "&sup3;"
Case "bc"
HTMLCode = "&frac14;"
Case "bd"
HTMLCode = "&frac12;"
Case "be"
HTMLCode = "&frac34;"
Case "d7"
HTMLCode = "&times;"
Case "f7"
HTMLCode = "&divide;"
Case "a2"
HTMLCode = "&cent;"
Case "a3"
HTMLCode = "&pound;"
Case "a4"
HTMLCode = "&curren;"
Case "a5"
HTMLCode = "&yen;"
Case "85"
HTMLCode = "..."
Case "9e"
HTMLCode = "?" '?
Case "9a"
HTMLCode = "?" '?
End Select
End Function

Private Function TrimifCmd(ByVal strTmp As String) As String
Dim l As Integer

l = 1
While Mid(strTmp, l, 1) = " "
l = l + 1
End While
If Mid(strTmp, l, 1) = "\" Or Mid(strTmp, l, 1) = "{" Then
strTmp = Trim(strTmp)
Else
If Left(strTmp, 1) = " " Then strTmp = Mid(strTmp, 2)
strTmp = RTrim(strTmp)
End If
TrimifCmd = strTmp
End Function
End Class

Then, I'm trying to convert this VB.NET code into C#. That's not
very easy. I've tried two different VB.NET->C# converters[2],
but none of them gets it right. Can anyone, by glancing at the
above code, explain why it can't be converted to C#?

The reason I want it to be C# code, is that C# is my main
programming language, and I would like to convert the RTF2HTML
module into an RTF2XML class. I don't want to do this in VB.NET.

What I want to use the RTF2HTML module for, is converting the
RTF output from a RichTextBox in Windows.Forms into an XML
document. If there already exists an RTF2XML class out there,
please scream!

Thanks.

____
[1] <url:http://www2.bitstream.net/~bradyh/downloads/rtf2htmlrm
..html>
[2] <url:http://www.codeproject.com/csharp/GBVB.asp>
<url:http://www.ellkay.com/ConvertVB2CSharp.htm>

--
Asbjørn Ulsberg -=|=- X-No-Archive: No
"He's a loathsome offensive brute, yet I can't look away"
Nov 20 '05 #1
2 3660
Asbjørn,

It's a little much to go through. Can you narrow down the sections that
you believe the converters are having problems with?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com
"Asbjørn Ulsberg" <as*****@tigerstaden.no> wrote in message
news:Xn**********************************@news.onl ine.no...
Hi.

I'm trying to convert Brady Hegberg's great RTF2HTML[1] VB 6.0
module to C#. I've managed to convert the VB code to VB.NET,
which gave me the following code:

Option Strict On
Option Explicit On
Option Compare Binary

Public Class RtfToHtml
'Version 3.03
'Copyright Brady Hegberg 2000
' I'm not licensing this software but I'd appreciate it if
' you'd to consider it to be under an lgpl sort of license

'More information can be found at
'http://www2.bitstream.net/~bradyh/downloads/rtf2htmlrm.html

'Converts Rich Text encoded text to HTML format
'if you find some text that this function doesn't
'convert properly please email the coded text to
'b*****@bitstream.net

'Thanks to various people for assistance including
' Anthony DiMauro for work on 3.0x font support
' ...and many others

Private Structure CodeList
Dim Code As String
Dim Status As String
'P=Pending;A=Active;G=Paragraph;D=Dead;K=Killed
'"Dead" means the code is active but will be killed at next
text
'"Pending" means it's waiting for text - if the code is
canceled before text appears it will be killed
'"Active" means there is text using the code at this moment
'"Paragraph" means that the code stays active until the next
paragraph: "/pard" or "/pntext"
End Structure

Private strCurPhrase As String
Dim strHTML As String
Private Codes() As CodeList
Private CodesBeg() As CodeList 'beginning codes
Private NextCodes() As String
Private NextCodesBeg() As String 'beginning codes for next
text
Dim CodesTmp() As String 'temp stack for copying
Dim CodesTmpBeg() As String 'temp stack for copying beg

Private strCR As String 'string to use for CRs - blank if +CR
not chosen in options
Dim strBeforeText As String
Dim strBeforeText2 As String
Dim strBeforeText3 As String
Dim gPlain As Boolean 'true if all codes shouls be popped
before next text
Dim gWBPlain As Boolean 'plain will be true after next text
Dim strColorTable() As String 'table of colors
Dim lColors As Integer '# of colors
Dim strEOL As String 'string to include before <br>
Dim strBOL As String 'string to include after <br>
Dim lSkipWords As Integer 'number od words to skip from
current
Dim gBOL As Boolean 'a <br> was inserted but no non-whitespace
text has been inserted
Dim gPar As Boolean 'true if paragraph was reached since last
text
Dim lBrLev As Integer 'bracket level when finding matching
brackets
Dim strSecTmp As String 'temporary section buffer
Dim gIgnorePard As Boolean 'should pard end list items or not?

Dim strFontTable() As String 'table of fonts
Dim lFonts As Integer '# of fonts
Dim strFont As String
Dim strTable As String
Dim strFace As String 'current font face for setting up
fontstring
Dim strFontColor As String 'current font color for setting up
fontstring
Dim strFontSize As String 'current font size for setting up
fontstring
Dim lFontSize As Integer
Dim iDefFontSize As Short 'default font size
Dim gUseFontFace As Boolean 'use different fonts or always use
default font

Private gDebug As Boolean 'for debugging
Private gStep As Boolean 'for debugging

Private Sub ClearCodes()
ReDim Codes(0)
ReDim CodesBeg(0)
ClearNext()
End Sub

Private Sub ClearNext(Optional ByRef strExcept As String = "")
Dim l As Integer

If Len(strExcept) > 0 Then
If InNext(strExcept) Then
While NextCodes(1) <> strExcept
ShiftNext()
ShiftNextBeg()
End While

Return
End If
End If

ReDim NextCodes(0)
ReDim NextCodesBeg(0)

End Sub

Private Sub ClearFont()
strFont = ""
strTable = ""
strFontColor = ""
strFace = ""
strFontSize = ""
lFontSize = 0
End Sub

Private Sub Codes2NextTill(ByRef strCode As String)
Dim strTmp As String
Dim strTmpbeg As String
Dim l As Integer

For l = 1 To UBound(Codes)
If Codes(l).Code = strCode Then Exit For
If Codes(l).Status <> "K" And Codes(l).Status <> "D" Then
If Not InNext(strCode) Then
UnShiftNext(Codes(l).Code)
UnShiftNextBeg(CodesBeg(l).Code)
End If
End If
Next l
End Sub

Private Sub GetColorTable(ByRef strSecTmp As String, ByRef
strColorTable() As String)
'get color table data and fill in strColorTable array
Dim lColors As Integer
Dim lBOS As Integer
Dim lEOS As Integer
Dim strTmp As String

lBOS = InStr(strSecTmp, "\colortbl")
ReDim strColorTable(0)
lColors = 1
If lBOS <> 0 Then
lBOS = InStr(lBOS, strSecTmp, ";")
lEOS = InStr(lBOS, strSecTmp, ";}")
If lEOS <> 0 Then
lBOS = InStr(lBOS, strSecTmp, "\red")
While ((lBOS <= lEOS) And (lBOS <> 0))
ReDim Preserve strColorTable(lColors)
strTmp = Trim(Hex(CInt(Mid(strSecTmp, lBOS + 4, 1) & _
Convert.ToString(IIf(IsNumeric(Mid(strSecTmp, lBOS +
5, 1)), Mid(strSecTmp, lBOS + 5, 1), "")) & _
Convert.ToString(IIf(IsNumeric(Mid(strSecTmp, lBOS +
6, 1)), Mid(strSecTmp, lBOS + 6, 1), "")))))
If Len(strTmp) = 1 Then strTmp = "0" & strTmp
strColorTable(lColors) = strColorTable(lColors) &
strTmp
lBOS = InStr(lBOS, strSecTmp, "\green")
strTmp = Trim(Hex(CInt(Mid(strSecTmp, lBOS + 6, 1) & _
Convert.ToString(IIf(IsNumeric(Mid(strSecTmp, lBOS +
7, 1)), Mid(strSecTmp, lBOS + 7, 1), "")) & _
Convert.ToString(IIf(IsNumeric(Mid(strSecTmp, lBOS +
8, 1)), Mid(strSecTmp, lBOS + 8, 1), "")))))
If Len(strTmp) = 1 Then strTmp = "0" & strTmp
strColorTable(lColors) = strColorTable(lColors) &
strTmp
lBOS = InStr(lBOS, strSecTmp, "\blue")
strTmp = Trim(Hex(CInt(Mid(strSecTmp, lBOS + 5, 1) & _
Convert.ToString(IIf(IsNumeric(Mid(strSecTmp, lBOS +
6, 1)), Mid(strSecTmp, lBOS + 6, 1), "")) & _
Convert.ToString(IIf(IsNumeric(Mid(strSecTmp, lBOS +
7, 1)), Mid(strSecTmp, lBOS + 7, 1), "")))))
If Len(strTmp) = 1 Then strTmp = "0" & strTmp
strColorTable(lColors) = strColorTable(lColors) &
strTmp
lBOS = InStr(lBOS, strSecTmp, "\red")
lColors = lColors + 1
End While
End If
End If
End Sub

Private Sub GetFontTable(ByRef strSecTmp As String, ByRef
strFontTable() As String)
'get font table data and fill in strFontTable array
Dim lFonts As Integer
Dim lBOS As Integer
Dim lEOS As Integer
Dim strTmp As String
Dim lLvl As Integer
Dim strNextChar As String

lBOS = InStr(strSecTmp, "\fonttbl")
ReDim strFontTable(0)
lFonts = 0
If lBOS <> 0 Then
lEOS = InStr(lBOS, strSecTmp, ";}}")
If lEOS <> 0 Then
lBOS = InStr(lBOS, strSecTmp, "\f0")
While ((lBOS <= lEOS) And (lBOS <> 0))
ReDim Preserve strFontTable(lFonts)
strNextChar = Mid(strSecTmp, lBOS, 1)
While (((strNextChar <> " ") And (lBOS <= lEOS)) Or
(lLvl > 0))
lBOS = lBOS + 1
If strNextChar = "{" Then
lLvl = lLvl + 1
strNextChar = Mid(strSecTmp, lBOS, 1)
ElseIf strNextChar = "}" Then
lLvl = lLvl - 1
If lLvl = 0 Then
strNextChar = " "
lBOS = lBOS - 1
Else
strNextChar = Mid(strSecTmp, lBOS, 1)
End If
Else
strNextChar = Mid(strSecTmp, lBOS, 1)
End If
End While
lBOS = lBOS + 1
strTmp = Mid(strSecTmp, lBOS, InStr(lBOS, strSecTmp,
";") - lBOS)
strFontTable(lFonts) = strFontTable(lFonts) & strTmp
lBOS = InStr(lBOS, strSecTmp, "\f" & (lFonts + 1))
lFonts = lFonts + 1
End While
End If
End If
End Sub

Private Function InNext(ByRef strTmp As String) As Boolean
Dim gTmp As Boolean
Dim l As Integer

l = 1
gTmp = False
While l <= UBound(NextCodes) And Not gTmp
If NextCodes(l) = strTmp Then gTmp = True
l = l + 1
End While

Return gTmp
End Function

Private Function InNextBeg(ByRef strTmp As String) As Boolean
Dim gTmp As Boolean
Dim l As Integer

l = 1
gTmp = False
While l <= UBound(NextCodesBeg) And Not gTmp
If NextCodesBeg(l) = strTmp Then gTmp = True
l = l + 1
End While

Return gTmp
End Function

Private Function InCodes(ByRef strTmp As String, Optional
ByRef gActiveOnly As Boolean = False) As Boolean
Dim gTmp As Boolean
Dim l As Integer

l = 1
gTmp = False
While l <= UBound(Codes) And Not gTmp
If gActiveOnly Then
If Codes(l).Code = strTmp And (Codes(l).Status = "A" Or
Codes(l).Status = "G") Then gTmp = True
Else
If Codes(l).Code = strTmp Then gTmp = True
End If
l = l + 1
End While

Return gTmp
End Function

Private Function InCodesBeg(ByRef strTmp As String) As Boolean
Dim gTmp As Boolean
Dim l As Integer

l = 1
gTmp = False
While l <= UBound(CodesBeg) And Not gTmp
If CodesBeg(l).Code = strTmp Then gTmp = True
l = l + 1
End While

Return gTmp
End Function

Private Function NabNextLine(ByRef strRTF As String) As String
Dim l As Integer

l = InStr(strRTF, vbCrLf)
If l = 0 Then l = Len(strRTF)

NabNextLine = TrimAll(Left(strRTF, l))

If l = Len(strRTF) Then
strRTF = ""
Else
strRTF = TrimAll(Mid(strRTF, l))
End If
End Function

Private Function NabNextWord(ByRef strLine As String) As
String
Dim l As Integer
Dim lvl As Short
Dim gEndofWord As Boolean
Dim gInCommand As Boolean 'current word is command instead
of plain word
Dim lTmp As Integer

gInCommand = False
l = 0
lvl = 0
'strLine = TrimifCmd(strLine)
If Left(strLine, 1) = "}" Then
strLine = Mid(strLine, 2)
NabNextWord = "}"
Return Nothing
End If

If Left(strLine, 1) = "{" Then
strLine = Mid(strLine, 2)
NabNextWord = "{"
Return Nothing
End If

If Left(strLine, 2) = "\'" Then
NabNextWord = Left(strLine, 4)
strLine = Mid(strLine, 5)
Return Nothing
End If

If Left(strLine, 2) = "\\" Or Left(strLine, 2) = "\{" Or
Left(strLine, 2) = "\}" Then
NabNextWord = Left(strLine, 2)
strLine = Mid(strLine, 3)
Return Nothing
End If

While Not gEndofWord
l = l + 1
If l >= Len(strLine) Then
If l = Len(strLine) Then l = l + 1
gEndofWord = True
ElseIf InStr("\{}", Mid(strLine, l, 1)) > 0 Then
If l = 1 And Mid(strLine, l, 1) = "\" Then gInCommand =
True
' If Mid(strLine, l + 1, 1) <> "\" And l > 1
And lvl = 0 Then 'avoid...what?
If l > 1 And lvl = 0 Then
gEndofWord = True
End If
ElseIf Mid(strLine, l, 1) = " " And lvl = 0 And gInCommand
Then
gEndofWord = True
End If
End While

If l = 0 Then l = Len(strLine)
NabNextWord = Left(strLine, l - 1)

While Len(NabNextWord) > 0 And InStr("{}",
Right(NabNextWord, 1)) > 0 And l > 0
NabNextWord = Left(NabNextWord, Len(NabNextWord) - 1)
l = l - 1
End While

strLine = Mid(strLine, l)
If Left(strLine, 1) = " " Then strLine = Mid(strLine, 2)

End Function

Private Function NabSection(ByRef strRTF As String, ByRef lPos
As Integer) As String
'grab section surrounding lPos, strip section out of strRTF
and return it
Dim lBOS As Integer 'beginning of section
Dim lEOS As Integer 'ending of section
Dim strChar As String
Dim lLev As Integer 'level of brackets/parens
Dim lRTFLen As Integer

lRTFLen = Len(strRTF)

lBOS = lPos
strChar = Mid(strRTF, lBOS, 1)
lLev = 1
While lLev > 0
lBOS = lBOS - 1
If lBOS <= 0 Then
lLev = lLev - 1
Else
strChar = Mid(strRTF, lBOS, 1)
If strChar = "}" Then
lLev = lLev + 1
ElseIf strChar = "{" Then
lLev = lLev - 1
End If
End If
End While
lBOS = lBOS - 1
If lBOS < 1 Then lBOS = 1

lEOS = lPos
strChar = Mid(strRTF, lEOS, 1)
lLev = 1
While lLev > 0
lEOS = lEOS + 1
If lEOS >= lRTFLen Then
lLev = lLev - 1
Else
strChar = Mid(strRTF, lEOS, 1)
If strChar = "{" Then
lLev = lLev + 1
ElseIf strChar = "}" Then
lLev = lLev - 1
End If
End If
End While
lEOS = lEOS + 1
If lEOS > lRTFLen Then lEOS = lRTFLen
NabSection = Mid(strRTF, lBOS + 1, lEOS - lBOS - 1)
strRTF = Mid(strRTF, 1, lBOS) & Mid(strRTF, lEOS)
strRTF = rtf2html_replace(strRTF, vbCrLf & vbCrLf, vbCrLf)
End Function

Private Sub Next2Codes()
'move codes from pending ("next") stack to front of current
stack
Dim lNumCodes As Integer
Dim lNumNext As Integer
Dim l As Integer

If UBound(NextCodes) > 0 Then
If InNext("</li>") Then
For l = UBound(NextCodes) To 1 Step -1
If NextCodes(l) = "</li>" And l > 1 Then
NextCodes(l) = NextCodes(l - 1)
NextCodesBeg(l) = NextCodesBeg(l - 1)
NextCodes(l - 1) = "</li>"
NextCodesBeg(l - 1) = "<li>"
End If
Next l
End If

lNumCodes = UBound(Codes)
lNumNext = UBound(NextCodes)
ReDim Preserve Codes(lNumCodes + lNumNext)
ReDim Preserve CodesBeg(lNumCodes + lNumNext)
For l = UBound(Codes) To 1 Step -1
If l > lNumNext Then
Codes(l) = Codes(l - lNumNext)
CodesBeg(l) = CodesBeg(l - lNumNext)
Else
Codes(l).Code = NextCodes(lNumNext - l + 1)
CodesBeg(l).Code = NextCodesBeg(lNumNext - l + 1)
Select Case Codes(l).Code
Case "</td></tr></table>", "</li>"
Codes(l).Status = "PG"
CodesBeg(l).Status = "PG"
Case Else
Codes(l).Status = "P"
CodesBeg(l).Status = "P"
End Select
End If
Next l
ReDim NextCodes(0)
ReDim NextCodesBeg(0)
End If
End Sub

Private Sub Codes2Next()
'move codes from "current" stack to pending ("next") stack
Dim lNumCodes As Integer
Dim l As Integer

If UBound(Codes) > 0 Then
lNumCodes = UBound(NextCodes)
ReDim Preserve NextCodes(lNumCodes + UBound(Codes))
ReDim Preserve NextCodesBeg(lNumCodes + UBound(Codes))
For l = 1 To UBound(Codes)
NextCodes(lNumCodes + l) = Codes(l).Code
NextCodesBeg(lNumCodes + l) = CodesBeg(l).Code
Next l
ReDim Codes(0)
ReDim CodesBeg(0)
End If
End Sub

Private Function ParseFont(ByRef strColor As String, ByRef
strSize As String, ByRef strFace As String) As String
Dim strTmpFont As String

If strColor & strSize & strFace = "" Then
strTmpFont = ""
Else
strTmpFont = "<font"
If strFace <> "" Then
strTmpFont = strTmpFont & " face=""" & strFace & """"
End If
If strColor <> "" Then
strTmpFont = strTmpFont & " color=""" & strColor & """"
End If
If strSize <> "" And Val(strSize) <> iDefFontSize Then
strTmpFont = strTmpFont & " size=""" & strSize & """"
End If
strTmpFont = strTmpFont & ">"
End If
ParseFont = strTmpFont
End Function

Private Function PopCode() As String
If UBound(Codes) > 0 Then
PopCode = Codes(UBound(Codes)).Code
ReDim Preserve Codes(UBound(Codes) - 1)
End If
End Function

Private Function ProcessAfterTextCodes() As String
Dim strTmp As String
Dim l As Integer
Dim lLastKilled As Integer
Dim lRetVal As Integer

'check for/handle font change
If strFont <> GetLastFont() Then
KillCode("</font>")
If Len(strFont) > 0 Then
lRetVal = ReplaceInNextBeg("</font>", strFont)
If lRetVal = 0 Then
PushNext("</font>")
PushNextBeg(strFont)
End If
End If
Else
If Not InNext("</li>") Then ReviveCode("</font>")
End If

'now handle everything killed and move codes farther in to
next
' ie: \b B\i B \u B\i0 B \u0\b0 =>
<b>B<i>B<u>B</u>B</i><u>B</u></b>
strTmp = ""
If UBound(Codes) > 0 Then
lLastKilled = 0
For l = UBound(Codes) To 1 Step -1
If Codes(l).Status = "K" Then
lLastKilled = l
Exit For
End If
Next l
If lLastKilled > 0 Then
For l = 1 To lLastKilled
strTmp = strTmp & Codes(l).Code
If Codes(l).Code = "</li>" Then strTmp = strTmp &
strCR
Next l
For l = lLastKilled To 1 Step -1
If Codes(l).Status <> "D" And Codes(l).Status <> "K"
Then
If Not InNext(Codes(l).Code) Then
PushNext(Codes(l).Code)
PushNextBeg(CodesBeg(l).Code)
End If
Codes(l).Status = "K"
CodesBeg(l).Status = "K"
End If
Next l
End If
End If
ProcessAfterTextCodes = strTmp
End Function

Private Function GetActiveCodes() As String
Dim strTmp As String
Dim l As Integer

strTmp = ""
If UBound(Codes) > 0 Then
For l = 1 To UBound(Codes)
strTmp = strTmp & Codes(l).Code
Next l
End If
GetActiveCodes = strTmp
End Function

Private Function GetLastFont() As String
Dim strTmp As String
Dim l As Integer

strTmp = ""
If UBound(Codes) > 0 Then
For l = UBound(Codes) To 1 Step -1
If Codes(l).Code = "</font>" Then
strTmp = CodesBeg(l).Code
Exit For
End If
Next l
End If
GetLastFont = strTmp
End Function

Private Sub SetPendingCodesActive()
Dim strTmp As String
Dim l As Integer

strTmp = ""
If UBound(Codes) > 0 Then
For l = 1 To UBound(Codes)
If Codes(l).Status = "P" Then
Codes(l).Status = "A"
CodesBeg(l).Status = "A"
ElseIf Codes(l).Status = "PG" Then
Codes(l).Status = "G"
CodesBeg(l).Status = "G"
End If
Next l
End If
End Sub

Private Function KillCode(ByRef strCode As String, Optional
ByRef strExcept As String = "") As Integer
'mark all codes of type strCode as killed
' except where status = strExcept
' if strCode = "*" then mark all killed
Dim strTmp As String
Dim l As Integer

strTmp = ""
If UBound(Codes) > 0 Then
If Left(strExcept, 1) = "<" Then 'strExcept is either a
code or a status
For l = 1 To UBound(Codes)
If (Codes(l).Code = strCode Or strCode = "*") And
Codes(l).Code <> strExcept Then
Codes(l).Status = "K"
CodesBeg(l).Status = "K"
End If
If strCode = "*" And Codes(l).Code = strExcept Then
Exit For
Next l
Else
For l = 1 To UBound(Codes)
If (Codes(l).Code = strCode Or strCode = "*") And
Codes(l).Status <> strExcept Then
Codes(l).Status = "K"
CodesBeg(l).Status = "K"
End If
Next l
End If
End If
End Function

Private Function GetAllCodesTill(ByRef strTill As String) As
String
'get all codes except strTill
Dim strTmp As String
Dim l As Integer

strTmp = ""
If UBound(Codes) > 0 Then
For l = UBound(Codes) To 1 Step -1
If Codes(l).Code = strTill Then
Exit For
Else
If Not InNextBeg(CodesBeg(l).Code) And Codes(l).Status
<> "D" Then
strTmp = strTmp & Codes(l).Code
Codes(l).Status = "K"
CodesBeg(l).Status = "K"
End If
End If
Next l
End If
GetAllCodesTill = strTmp
End Function
Private Function GetAllCodesBeg() As String
Dim strTmp As String
Dim l As Integer

strTmp = ""
If UBound(CodesBeg) > 0 Then
For l = UBound(CodesBeg) To 1 Step -1
If CodesBeg(l).Status = "P" Then
strTmp = strTmp & CodesBeg(l).Code
CodesBeg(l).Status = "A"
Codes(l).Status = "A"
ElseIf CodesBeg(l).Status = "PG" Then
strTmp = strTmp & CodesBeg(l).Code
CodesBeg(l).Status = "G"
Codes(l).Status = "G"
End If
Next l
End If
GetAllCodesBeg = strTmp
End Function

Private Function GetAllCodesBegTill(ByRef strTill As String)
As String
'get all codes except strTill - stop if strTill reached
'"<table"
Dim strTmp As String
Dim l As Integer

strTmp = ""
If UBound(CodesBeg) > 0 Then
For l = 1 To UBound(CodesBeg)
If Codes(l).Code = strTill Then
Exit For
Else
If CodesBeg(l).Status = "P" Then
strTmp = strTmp & CodesBeg(l).Code
Codes(l).Status = "A"
CodesBeg(l).Status = "A"
ElseIf CodesBeg(l).Status = "PG" Then
strTmp = strTmp & CodesBeg(l).Code
Codes(l).Status = "G"
CodesBeg(l).Status = "G"
End If
End If
Next l
End If
GetAllCodesBegTill = strTmp
End Function

Private Function ShiftNext() As String
'get 1st code off list and shorten list
Dim l As Integer

If UBound(NextCodes) > 0 Then
ShiftNext = NextCodes(1)
For l = 1 To UBound(NextCodes) - 1
NextCodes(l) = NextCodes(l + 1)
Next l
ReDim Preserve NextCodes(UBound(NextCodes) - 1)
End If
End Function

Private Function ShiftNextBeg() As String
'get 1st code off list and shorten list
Dim l As Integer

If UBound(NextCodesBeg) > 0 Then
ShiftNextBeg = NextCodesBeg(1)
For l = 1 To UBound(NextCodesBeg) - 1
NextCodesBeg(l) = NextCodesBeg(l + 1)
Next l
ReDim Preserve NextCodesBeg(UBound(NextCodesBeg) - 1)
End If
End Function
Private Sub ProcessWord(ByRef strWord As String)
Dim strTmp As String
Dim strTmpbeg As String
Dim l As Integer
Dim gPopAll As Boolean
Dim lRetVal As Integer

Dim strTableAlign As String 'current table alignment for
setting up tablestring
Dim strTableWidth As String 'current table width for setting
up tablestring

If lSkipWords > 0 Then
lSkipWords = lSkipWords - 1
Exit Sub
End If
If (Left(strWord, 1) = "\" Or Left(strWord, 1) = "{" Or
Left(strWord, 1) = "}") And (Left(strWord, 2) <> "\\" And
Left(strWord, 2) <> "\{" And Left(strWord, 2) <> "\}") Then
strWord = Trim(strWord)
Select Case Left(strWord, 2)
Case "}"
If lBrLev = 0 Then
lRetVal = KillCode("*", "G")
ClearNext("</li>")
ClearFont()
End If
Case "\'" 'special characters
strTmp = HTMLCode(Mid(strWord, 3))
If Left(strTmp, 6) = "<rtf>:" Then
strSecTmp = Mid(strTmp, 7) & " " & strSecTmp
Else
strSecTmp = strTmp & strSecTmp
End If
Case "\b" 'bold
If strWord = "\b" Then
If InCodes("</b>", True) Then
' Codes2NextTill ("</b>")
Else
PushNext("</b>")
PushNextBeg("<b>")
End If
ElseIf strWord = "\bullet" Then
'If Not (Codes(UBound(Codes)).Code = "</li>" And
Codes(UBound(Codes)).Status = "A") Then
PushNext("</li>")
PushNextBeg("<li>")
'End If
ElseIf strWord = "\b0" Then 'bold off
If InCodes("</b>") Then
Codes2NextTill("</b>")
KillCode("</b>")
End If
If InNext("</b>") Then
RemoveFromNext("</b>")
End If
End If
Case "\c"
If strWord = "\cf0" Then 'color font off
strFontColor = ""
strFont = ParseFont(strFontColor, strFontSize,
strFace)
ElseIf Left(strWord, 3) = "\cf" And
IsNumeric(Mid(strWord, 4)) Then 'color font
'get color code
l = Convert.ToInt32(Val(Mid(strWord, 4)))
If l <= UBound(strColorTable) And l > 0 Then
strFontColor = "#" & strColorTable(l)
End If

'insert color
If strFontColor <> "#" Then
strFont = ParseFont(strFontColor, strFontSize,
strFace)
If InNext("</font>") Then
ReplaceInNextBeg("</font>", strFont)
ElseIf InCodes("</font>") Then
PushNext("</font>")
PushNextBeg(strFont)
Codes2NextTill("</font>")
KillCode("</font>")
Else
PushNext("</font>")
PushNextBeg(strFont)
End If
End If
End If
Case "\f"
If Left(strWord, 3) = "\fs" And IsNumeric(Mid(strWord,
4)) Then 'font size
l = Convert.ToInt32(Val(Mid(strWord, 4)))
lFontSize = Convert.ToInt32(Int((l / 7) - 0)) 'calc
to convert RTF to HTML sizes
If lFontSize > 8 Then lFontSize = 8
If lFontSize < 1 Then lFontSize = 1
strFontSize = Trim(CStr(lFontSize))
If Val(strFontSize) = iDefFontSize Then strFontSize
= ""
'insert size
strFont = ParseFont(strFontColor, strFontSize,
strFace)
ElseIf Left(strWord, 2) = "\f" And
IsNumeric(Mid(strWord, 3)) And gUseFontFace Then 'font type
strFace =
strFontTable(Convert.ToInt32(Val(Mid(strWord, 3))))
strFont = ParseFont(strFontColor, strFontSize,
strFace)
End If
Case "\i"
If strWord = "\i" Then 'italics
If InCodes("</i>", True) Then
' Codes2NextTill ("</i>")
Else
PushNext("</i>")
PushNextBeg("<i>")
End If
ElseIf strWord = "\i0" Then 'italics off
If InCodes("</i>") Then
Codes2NextTill("</i>")
KillCode("</i>")
End If
If InNext("</i>") Then
RemoveFromNext("</i>")
End If
End If
Case "\l"
'If strWord = "\listname" Then
' lSkipWords = 1
'End If
Case "\n"
If strWord = "\nosupersub" Then 'superscript/subscript
off
If InCodes("</sub>", True) Then
Codes2NextTill("</sub>")
KillCode("</sub>")
End If
If InNext("</sub>") Then
RemoveFromNext("</sub>")
End If
If InCodes("</sup>", True) Then
Codes2NextTill("</sup>")
KillCode("</sup>")
End If
If InNext("</sup>") Then
RemoveFromNext("</sup>")
End If
End If
Case "\p"
If strWord = "\par" Then
If Not (InCodes("</ul>") Or InCodes("</li>")) Then
strBeforeText2 = strBeforeText2 & strEOL & "<br>"
& strCR
Else
lRetVal = KillCode("</li>")
RemoveFromNext("</li>")
End If
gBOL = True
gPar = True
'If InCodes("</ul>") Then
' PushNext ("</li>")
' PushNextBeg ("<li>")
'End If
ElseIf strWord = "\pard" Then
For l = 1 To UBound(CodesBeg)
If Codes(l).Status = "G" Or Codes(l).Status = "PG"
Then
Codes(l).Status = "K"
CodesBeg(l).Status = "K"
End If
Next l
If Not gIgnorePard Then
If InCodes("</li>") Then
lRetVal = KillCode("</li>")
RemoveFromNext("</li>")
End If
End If
gPar = True
ElseIf strWord = "\plain" Then
lRetVal = KillCode("*", "G")
ClearFont()
ElseIf strWord = "\pnlvlblt" Then 'bulleted list
If Not InNext("</li>") Then
PushNext("</li>")
PushNextBeg("<li>")
End If
'PushNext ("</ul>")
'PushNextBeg ("<ul>")
ElseIf strWord = "\pntxta" Then 'numbered list?
lSkipWords = 1
ElseIf strWord = "\pntxtb" Then 'numbered list?
lSkipWords = 1
ElseIf strWord = "\pntext" Then 'bullet
If Not InNext("</li>") Then
PushNext("</li>")
PushNextBeg("<li>")
Codes2NextTill("</table>")
KillCode("*")
End If
End If
Case "\q"
If strWord = "\qc" Then 'centered
strTableAlign = "center"
strTableWidth = "100%"
If InNext("</td></tr></table>") Then
'?
Else
strTable = "<table width=""" & strTableWidth &
"""><tr><td align=""" & strTableAlign & """>"
End If
If InNext("</td></tr></table>") Then
ReplaceInNextBeg("</td></tr></table>", strTable)
ElseIf InCodes("</td></tr></table>") Then
PushNext("</td></tr></table>")
PushNextBeg(strTable)
Codes2NextTill("</td></tr></table>")
Else
PushNext("</td></tr></table>")
PushNextBeg(strTable)
End If
ElseIf strWord = "\qr" Then 'right justified
strTableAlign = "right"
strTableWidth = "100%"
If InNext("</td></tr></table>") Then
'?
Else
strTable = "<table width=""" & strTableWidth &
"""><tr><td align=""" & strTableAlign & """>"
End If
If InNext("</td></tr></table>") Then
ReplaceInNextBeg("</td></tr></table>", strTable)
ElseIf InCodes("</td></tr></table>") Then
PushNext("</td></tr></table>")
PushNextBeg(strTable)
Codes2NextTill("</td></tr></table>")
Else
PushNext("</td></tr></table>")
PushNextBeg(strTable)
End If
End If
Case "\s"
If strWord = "\strike" Then 'strike text
If Codes(UBound(Codes)).Code <> "</s>" Or
(Codes(UBound(Codes)).Code = "</s>" And
CodesBeg(UBound(Codes)).Code = "") Then
PushNext("</s>")
PushNextBeg("<s>")
End If
ElseIf strWord = "\strike0" Then 'strike off
If InCodes("</s>") Then
Codes2NextTill("</s>")
KillCode("</s>")
End If
If InNext("</s>") Then
RemoveFromNext("</s>")
End If
ElseIf strWord = "\super" Then 'superscript
If Codes(UBound(Codes)).Code <> "</sup>" Or
(Codes(UBound(Codes)).Code = "</sup>" And
CodesBeg(UBound(Codes)).Code = "") Then
PushNext("</sup>")
PushNextBeg("<sup>")
End If
ElseIf strWord = "\sub" Then 'subscript
If Codes(UBound(Codes)).Code <> "</sub>" Or
(Codes(UBound(Codes)).Code = "</sub>" And
CodesBeg(UBound(Codes)).Code = "") Then
PushNext("</sub>")
PushNextBeg("<sub>")
End If
End If

'If strWord = "\snext0" Then 'style
' lSkipWords = 1
'End If
Case "\t"
If strWord = "\tab" Then 'tab
strSecTmp = vbTab & strSecTmp
End If
Case "\u"
If strWord = "\ul" Then 'underline
If InCodes("</u>", True) Then
' Codes2NextTill ("</u>")
Else
PushNext("</u>")
PushNextBeg("<u>")
End If
ElseIf strWord = "\ulnone" Then 'stop underline
If InCodes("</u>") Then
Codes2NextTill("</u>")
KillCode("</u>")
End If
If InNext("</u>") Then
RemoveFromNext("</u>")
End If
End If
End Select
Else
If Len(strWord) > 0 Then
If strWord = "\\" Or strWord = "\{" Or strWord = "\}"
Then strWord = Right(strWord, 1)
If Trim(strWord) = "" Then
If gBOL Then strWord = rtf2html_replace(strWord, " ",
"&nbsp;")
strCurPhrase = strCurPhrase & strBeforeText3 & strWord
Else
'regular text
If gPar Then
strBeforeText = strBeforeText &
ProcessAfterTextCodes()
Next2Codes()
strBeforeText3 = GetAllCodesBeg()
gPar = False
Else
strBeforeText = strBeforeText &
ProcessAfterTextCodes()
Next2Codes()
strBeforeText3 =
GetAllCodesBegTill("</td></tr></table>")
End If
RemoveBlanks()

strCurPhrase = strCurPhrase & strBeforeText
strBeforeText = ""
strCurPhrase = strCurPhrase & strBeforeText2
strBeforeText2 = ""
strCurPhrase = strCurPhrase & strBeforeText3 & strWord
strBeforeText3 = ""
gBOL = False
End If
End If
End If
End Sub

Private Sub PushNext(ByRef strCode As String)
If Len(strCode) > 0 Then
ReDim Preserve NextCodes(UBound(NextCodes) + 1)
NextCodes(UBound(NextCodes)) = strCode
End If
End Sub

Private Sub UnShiftNext(ByRef strCode As String)
'stick strCode on front of list and move everything over to
make room
Dim l As Integer

If Len(strCode) > 0 Then
ReDim Preserve NextCodes(UBound(NextCodes) + 1)
If UBound(NextCodes) > 1 Then
For l = UBound(NextCodes) To 1 Step -1
NextCodes(l) = NextCodes(l - 1)
Next l
End If
NextCodes(1) = strCode
End If
End Sub

Private Sub UnShiftNextBeg(ByRef strCode As String)
Dim l As Integer

If Len(strCode) > 0 Then
ReDim Preserve NextCodesBeg(UBound(NextCodesBeg) + 1)
If UBound(NextCodesBeg) > 1 Then
For l = UBound(NextCodesBeg) To 1 Step -1
NextCodesBeg(l) = NextCodesBeg(l - 1)
Next l
End If
NextCodesBeg(1) = strCode
End If
End Sub

Private Sub PushNextBeg(ByRef strCode As String)
ReDim Preserve NextCodesBeg(UBound(NextCodesBeg) + 1)
NextCodesBeg(UBound(NextCodesBeg)) = strCode
End Sub

Private Sub RemoveBlanks()
Dim l As Integer
Dim lOffSet As Integer

l = 1
lOffSet = 0
While l <= UBound(CodesBeg) And l + lOffSet <=
UBound(CodesBeg)
If CodesBeg(l).Status = "K" Or CodesBeg(l).Status = ""
Then 'And Not (Codes(l) = "</font>" And Len(strFont) > 0) Then
lOffSet = lOffSet + 1
Else
l = l + 1
End If
If l + lOffSet <= UBound(CodesBeg) Then
Codes(l) = Codes(l + lOffSet)
CodesBeg(l) = CodesBeg(l + lOffSet)
End If
End While
If lOffSet > 0 Then
ReDim Preserve Codes(UBound(Codes) - lOffSet)
ReDim Preserve CodesBeg(UBound(CodesBeg) - lOffSet)
End If
End Sub

Private Sub RemoveFromNext(ByRef strRem As String)
Dim l As Integer
Dim m As Integer

If UBound(NextCodes) < 1 Then Return

l = 1
While l < UBound(NextCodes)
If NextCodes(l) = strRem Then
For m = l To UBound(NextCodes) - 1
NextCodes(m) = NextCodes(m + 1)
NextCodesBeg(m) = NextCodesBeg(m + 1)
Next m
l = m
Else
l = l + 1
End If
End While
ReDim Preserve NextCodes(UBound(NextCodes) - 1)
ReDim Preserve NextCodesBeg(UBound(NextCodesBeg) - 1)

End Sub

Private Function rtf2html_replace(ByVal strIn As String, ByVal
strRepl As String, ByVal strWith As String) As String
'replace all instances of strRepl in strIn with strWith
Dim i As Short

If ((Len(strRepl) = 0) Or (Len(strIn) = 0)) Then
rtf2html_replace = strIn
Exit Function
End If
i = Convert.ToInt16(InStr(strIn, strRepl))
While i <> 0
strIn = Left(strIn, i - 1) & strWith & Mid(strIn, i +
Len(strRepl))
i = Convert.ToInt16(InStr(i + Len(strWith), strIn,
strRepl))
End While
rtf2html_replace = strIn
End Function

Private Sub ReviveCode(ByRef strCode As String)
Dim l As Integer

For l = 1 To UBound(Codes)
If Codes(l).Code = strCode Then
Codes(l).Status = "A"
CodesBeg(l).Status = "A"
End If
Next l
End Sub

Private Function ReplaceInNextBeg(ByRef strCode As String,
ByRef strWith As String) As Integer
Dim l As Integer
Dim lCount As Integer 'number of codes replaced

lCount = 0
For l = 1 To UBound(NextCodes)
If NextCodes(l) = strCode Then
NextCodesBeg(l) = strWith
lCount = lCount + 1
End If
Next l
ReplaceInNextBeg = lCount
End Function

Private Sub ReplaceInCodesBeg(ByRef strCode As String, ByRef
strWith As String)
Dim l As Integer

l = 1
While l <= UBound(Codes) And Codes(l).Code <> strCode
l = l + 1
End While
If Codes(l).Code = strCode Then
If CodesBeg(l).Code <> strWith Then
CodesBeg(l).Code = strWith
Codes(l).Status = "P"
CodesBeg(l).Status = "P"
Else
Codes(l).Status = "P"
CodesBeg(l).Status = "P"
End If
End If
End Sub

Public Enum Options
Html = 1
H = 1
End Enum

Public Function ConvertRtfToHtml(ByVal strRTF As String,
Optional ByVal strOptions As String = "") As String
'Options:
'+H add an HTML header and footer
'+G add a generator Metatag
'+T="MyTitle" add a title (only works if +H is used)
'+CR add a carraige return after all <br>s
'+I keep html codes intact
'+F=X default font size (blanks out any changes
to this size - saves on space)
'-FF ignore font faces

Dim strHTML As String
Dim strRTFTmp As String
Dim l As Integer
Dim lTmp As Integer
Dim lTmp2 As Integer
Dim lTmp3 As Integer
Dim lRTFLen As Integer
Dim lBOS As Integer 'beginning of section
Dim lEOS As Integer 'end of section
Dim strTmp As String
Dim strTmp2 As String
Dim strEOS As String 'string to be added to end of section
Dim strBOS As String 'string to be added to beginning of
section
Dim strEOP As String 'string to be added to end of paragraph
Dim strBOL As String 'string to be added to the begining of
each new line
Dim strEOL As String 'string to be added to the end of each
new line
Dim strEOLL As String 'string to be added to the end of
previous line
Const gHellFrozenOver As Boolean = False 'always false
Dim gSkip As Boolean 'skip to next word/command
Dim strCodes As String 'codes for ascii to HTML char
conversion
Dim strCurLine As String 'temp storage for text for current
line before being added to strHTML
Dim strFontCodes As String 'list of font code modifiers
Dim gSeekingText As Boolean 'True if we have to hit text
before inserting a </FONT>
Dim gText As Boolean 'true if there is text (as opposed to a
control code) in strTmp
Dim strAlign As String '"center" or "right"
Dim gAlign As Boolean 'if current text is aligned
Dim strGen As String 'Temp store for Generator Meta Tag if
requested
Dim strTitle As String 'Temp store for Title if requested
Dim gHTML As Boolean 'true if html codes should be left
intact
Dim strWordTmp As String 'temporary word buffer
Dim strEndText As String 'ending text
Dim strLastWord As String 'previous "word"

ClearCodes()
strHTML = ""
gPlain = False
gBOL = True
gPar = False
strCurPhrase = ""

'setup +CR option
If InStr(strOptions, "+CR") <> 0 Then strCR = vbCrLf Else
strCR = ""
'setup +HTML option
If InStr(strOptions, "+I") <> 0 Then gHTML = True Else gHTML
= False
'setup default font size option
If InStr(strOptions, "+F=") <> 0 Then
l = InStr(strOptions, "+F=") + 3
strTmp = Mid(strOptions, l, 1)
iDefFontSize = 0
While IsDig(strTmp)
iDefFontSize = Convert.ToInt16(iDefFontSize * 10 +
Val(strTmp))
l = l + 1
strTmp = Mid(strOptions, l, 1)
End While
End If
'setup to use different fonts or not
If InStr(strOptions, "-FF") <> 0 Then gUseFontFace = False
Else gUseFontFace = True

strRTFTmp = TrimAll(strRTF)

If Left(strRTFTmp, 1) = "{" And Right(strRTFTmp, 1) = "}"
Then strRTFTmp = Mid(strRTFTmp, 2, Len(strRTFTmp) - 2)

'setup list (bullets) status
If InStr(strRTFTmp, "\list\") <> 0 Then
'I'm not sure if this is in any way correct but it seems
to work for Me
'sometimes \pard ends a list item sometimes it doesn't
gIgnorePard = True
Else
gIgnorePard = False
End If

'setup color table
lBOS = InStr(strRTFTmp, "\colortbl")
If lBOS > 0 Then
strSecTmp = NabSection(strRTFTmp, lBOS)
GetColorTable(strSecTmp, strColorTable)
End If

'setup font table
lBOS = InStr(strRTFTmp, "\fonttbl")
If lBOS > 0 Then
strSecTmp = NabSection(strRTFTmp, lBOS)
GetFontTable(strSecTmp, strFontTable)
End If

'setup stylesheets
lBOS = InStr(strRTFTmp, "\stylesheet")
If lBOS > 0 Then
strSecTmp = NabSection(strRTFTmp, lBOS)
'ignore stylesheets for now
End If

'setup info
lBOS = InStr(strRTFTmp, "\info")
If lBOS > 0 Then
strSecTmp = NabSection(strRTFTmp, lBOS)
'ignore info for now
End If

'list table
lBOS = InStr(strRTFTmp, "\listtable")
If lBOS > 0 Then
strSecTmp = NabSection(strRTFTmp, lBOS)
'ignore info for now
End If

'list override table
lBOS = InStr(strRTFTmp, "\listoverridetable")
If lBOS > 0 Then
strSecTmp = NabSection(strRTFTmp, lBOS)
'ignore info for now
End If

lBrLev = 0
strLastWord = ""
While Len(strRTFTmp) > 0
strSecTmp = NabNextLine(strRTFTmp)
While Len(strSecTmp) > 0
strLastWord = strWordTmp
strWordTmp = NabNextWord(strSecTmp)
If lBrLev > 0 Then
If strWordTmp = "{" Then
lBrLev = lBrLev + 1
ElseIf strWordTmp = "}" Then
lBrLev = lBrLev - 1
End If
strWordTmp = ""
ElseIf strWordTmp = "\*" Or strWordTmp = "\pict" Then
'skip \pnlvlbt stuff
lBrLev = 1
strWordTmp = ""
ElseIf strWordTmp = "\pntext" Then
'get bullet codes but skip rest for now
lBrLev = 1
End If
If Len(strWordTmp) > 0 Then
If Len(strWordTmp) > 0 Then ProcessWord(strWordTmp)
End If
End While
End While

'get any remaining codes in stack
strEndText = strEndText & GetActiveCodes()
strBeforeText2 = rtf2html_replace(strBeforeText2, "<br />",
"")
strBeforeText2 = rtf2html_replace(strBeforeText2, vbCrLf,
"")
strCurPhrase = strCurPhrase & strBeforeText & strBeforeText2
& strEndText
strBeforeText = ""
strBeforeText2 = ""
strBeforeText3 = ""
strHTML = strHTML & strCurPhrase
strCurPhrase = ""
ClearFont()
Return strHTML
End Function

Private Function IsDig(ByRef strChar As String) As Boolean
If Len(strChar) = 0 Then
IsDig = False
Else
IsDig = InStr("1234567890", strChar) > 0
End If
End Function
Private Function GetCodes(ByRef strWordTmp As String) As
String
Dim strTmp As String
Dim l As Integer

strTmp = "CurWord: "
If Len(strWordTmp) > 20 Then
strTmp = strTmp & Left(strWordTmp, 20) & "..."
Else
strTmp = strTmp & strWordTmp
End If
strTmp = strTmp & vbCrLf & vbCrLf & "BegCodes: "
For l = 1 To UBound(CodesBeg)
strTmp = strTmp & CodesBeg(l).Code & " (" &
CodesBeg(l).Status & "), "
Next l
strTmp = strTmp & vbCrLf & "Codes: "
For l = 1 To UBound(Codes)
strTmp = strTmp & Codes(l).Code & " (" & Codes(l).Status &
"), "
Next l
strTmp = strTmp & vbCrLf & vbCrLf & "NextBegCodes: "
For l = 1 To UBound(NextCodesBeg)
strTmp = strTmp & NextCodesBeg(l) & ", "
Next l
strTmp = strTmp & vbCrLf & "NextCodes: "
For l = 1 To UBound(NextCodes)
strTmp = strTmp & NextCodes(l) & ", "
Next l
strTmp = strTmp & vbCrLf & vbCrLf & "Font String: " &
strFont
strTmp = strTmp & vbCrLf & vbCrLf & "Before Text: " &
strBeforeText2
GetCodes = strTmp
End Function

Private Function TrimAll(ByVal strTmp As String) As String
Dim l As Integer

strTmp = Trim(strTmp)
l = Len(strTmp) + 1
While l <> Len(strTmp)
l = Len(strTmp)
If Right(strTmp, 1) = vbCrLf Then strTmp = Left(strTmp,
Len(strTmp) - 1)
If Left(strTmp, 1) = vbCrLf Then strTmp = Right(strTmp,
Len(strTmp) - 1)
If Right(strTmp, 1) = vbCr Then strTmp = Left(strTmp,
Len(strTmp) - 1)
If Left(strTmp, 1) = vbCr Then strTmp = Right(strTmp,
Len(strTmp) - 1)
If Right(strTmp, 1) = vbLf Then strTmp = Left(strTmp,
Len(strTmp) - 1)
If Left(strTmp, 1) = vbLf Then strTmp = Right(strTmp,
Len(strTmp) - 1)
End While
TrimAll = strTmp
End Function

Private Function HTMLCode(ByRef strRTFCode As String) As
String
'given rtf code return html code
Select Case strRTFCode
Case "00"
HTMLCode = "&nbsp;"
Case "a9"
HTMLCode = "&copy;"
Case "b4"
HTMLCode = "&acute;"
Case "ab"
HTMLCode = "&laquo;"
Case "bb"
HTMLCode = "&raquo;"
Case "a1"
HTMLCode = "&iexcl;"
Case "bf"
HTMLCode = "&iquest;"
Case "c0"
HTMLCode = "&Agrave;"
Case "e0"
HTMLCode = "&agrave;"
Case "c1"
HTMLCode = "&Aacute;"
Case "e1"
HTMLCode = "&aacute;" 'á
Case "c2"
HTMLCode = "&Acirc;"
Case "e2"
HTMLCode = "&acirc;"
Case "c3"
HTMLCode = "&Atilde;"
Case "e3"
HTMLCode = "&atilde;"
Case "c4"
HTMLCode = "&Auml;"
Case "e4", "99"
HTMLCode = "<rtf>:\super TM\nosupersub"
Case "c5"
HTMLCode = "&Aring;"
Case "e5"
HTMLCode = "&aring;"
Case "c6"
HTMLCode = "&AElig;"
Case "e6"
HTMLCode = "&aelig;"
Case "c7"
HTMLCode = "&Ccedil;"
Case "e7"
HTMLCode = "&ccedil;"
Case "d0"
HTMLCode = "&ETH;"
Case "f0"
HTMLCode = "&eth;"
Case "c8"
HTMLCode = "&Egrave;"
Case "e8"
HTMLCode = "&egrave;"
Case "c9"
HTMLCode = "&Eacute;"
Case "e9"
HTMLCode = "&eacute;"
Case "ca"
HTMLCode = "&Ecirc;"
Case "ea"
HTMLCode = "&ecirc;"
Case "cb"
HTMLCode = "&Euml;"
Case "eb"
HTMLCode = "&euml;"
Case "cc"
HTMLCode = "&Igrave;"
Case "ec"
HTMLCode = "&igrave;"
Case "cd"
HTMLCode = "&Iacute;"
Case "ed"
HTMLCode = "&iacute;" 'í
Case "ce"
HTMLCode = "&Icirc;"
Case "ee"
HTMLCode = "&icirc;"
Case "cf"
HTMLCode = "&Iuml;"
Case "ef"
HTMLCode = "&iuml;"
Case "d1"
HTMLCode = "&Ntilde;"
Case "f1"
HTMLCode = "&ntilde;"
Case "d2"
HTMLCode = "&Ograve;"
Case "f2"
HTMLCode = "&ograve;"
Case "d3"
HTMLCode = "&Oacute;"
Case "f3"
HTMLCode = "&oacute;"
Case "d4"
HTMLCode = "&Ocirc;"
Case "f4"
HTMLCode = "&ocirc;"
Case "d5"
HTMLCode = "&Otilde;"
Case "f5"
HTMLCode = "&otilde;"
Case "d6"
HTMLCode = "&Ouml;"
Case "f6"
HTMLCode = "&ouml;"
Case "d8"
HTMLCode = "&Oslash;"
Case "f8"
HTMLCode = "&oslash;"
Case "d9"
HTMLCode = "&Ugrave;"
Case "f9"
HTMLCode = "&ugrave;"
Case "da"
HTMLCode = "&Uacute;"
Case "fa"
HTMLCode = "&uacute;"
Case "db"
HTMLCode = "&Ucirc;"
Case "fb"
HTMLCode = "&ucirc;"
Case "dc"
HTMLCode = "&Uuml;"
Case "fc"
HTMLCode = "&uuml;"
Case "dd"
HTMLCode = "&Yacute;"
Case "fd"
HTMLCode = "&yacute;"
Case "ff"
HTMLCode = "&yuml;"
Case "de"
HTMLCode = "&THORN;"
Case "fe"
HTMLCode = "&thorn;"
Case "df"
HTMLCode = "&szlig;"
Case "a7"
HTMLCode = "&sect;"
Case "b6"
HTMLCode = "&para;"
Case "b5"
HTMLCode = "&micro;"
Case "a6"
HTMLCode = "&brvbar;"
Case "b1"
HTMLCode = "&plusmn;"
Case "b7"
HTMLCode = "&middot;"
Case "a8"
HTMLCode = "&uml;"
Case "b8"
HTMLCode = "&cedil;"
Case "aa"
HTMLCode = "&ordf;"
Case "ba"
HTMLCode = "&ordm;"
Case "ac"
HTMLCode = "&not;"
Case "ad"
HTMLCode = "­"
Case "af"
HTMLCode = "&macr;"
Case "b0"
HTMLCode = "&deg;"
Case "b9"
HTMLCode = "&sup1;"
Case "b2"
HTMLCode = "&sup2;"
Case "b3"
HTMLCode = "&sup3;"
Case "bc"
HTMLCode = "&frac14;"
Case "bd"
HTMLCode = "&frac12;"
Case "be"
HTMLCode = "&frac34;"
Case "d7"
HTMLCode = "&times;"
Case "f7"
HTMLCode = "&divide;"
Case "a2"
HTMLCode = "&cent;"
Case "a3"
HTMLCode = "&pound;"
Case "a4"
HTMLCode = "&curren;"
Case "a5"
HTMLCode = "&yen;"
Case "85"
HTMLCode = "..."
Case "9e"
HTMLCode = "?" '?
Case "9a"
HTMLCode = "?" '?
End Select
End Function

Private Function TrimifCmd(ByVal strTmp As String) As String
Dim l As Integer

l = 1
While Mid(strTmp, l, 1) = " "
l = l + 1
End While
If Mid(strTmp, l, 1) = "\" Or Mid(strTmp, l, 1) = "{" Then
strTmp = Trim(strTmp)
Else
If Left(strTmp, 1) = " " Then strTmp = Mid(strTmp, 2)
strTmp = RTrim(strTmp)
End If
TrimifCmd = strTmp
End Function
End Class

Then, I'm trying to convert this VB.NET code into C#. That's not
very easy. I've tried two different VB.NET->C# converters[2],
but none of them gets it right. Can anyone, by glancing at the
above code, explain why it can't be converted to C#?

The reason I want it to be C# code, is that C# is my main
programming language, and I would like to convert the RTF2HTML
module into an RTF2XML class. I don't want to do this in VB.NET.

What I want to use the RTF2HTML module for, is converting the
RTF output from a RichTextBox in Windows.Forms into an XML
document. If there already exists an RTF2XML class out there,
please scream!

Thanks.

____
[1] <url:http://www2.bitstream.net/~bradyh/downloads/rtf2htmlrm
.html>
[2] <url:http://www.codeproject.com/csharp/GBVB.asp>
<url:http://www.ellkay.com/ConvertVB2CSharp.htm>

--
Asbjørn Ulsberg -=|=- X-No-Archive: No
"He's a loathsome offensive brute, yet I can't look away"

Nov 20 '05 #2
"Nicholas Paldino [.NET/C# MVP]" skrev:
It's a little much to go through. Can you narrow down
the sections that
you believe the converters are having problems with?


This one;

<url:http://www.ellkay.com/ConvertVB2CSharp.htm>

just throws an exception, and GBVB[1] stops after having
converted CodeList;

Private Structure CodeList
Dim Code As String
Dim Status As String
End Structure

into:

private struct CodeList
{
}

So I have no clue how to make the code more convertable.

____
[1] <url:http://www.codeproject.com/csharp/GBVB.asp>

--
Asbjørn Ulsberg -=|=- X-No-Archive: No
"He's a loathsome offensive brute, yet I can't look away"
Nov 20 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: mustafa | last post by:
Dear sir , I have built my application in visual basic 6.0 and crystal Report8.5 , Now i migrated my application to VB.net using the upgrade wizard.My visual basic form is upgraded to vb.net...
29
by: Armand Karlsen | last post by:
I have a website ( http://www.zen62775.zen.co.uk ) that I made HTML 4.01 Transitional and CSS compliant, and I'm thinking of converting it into XHTML to learn a little about it. Which XHTML variant...
8
by: prabha | last post by:
Hello Everybody, I have to conert the word doc to multiple html files,according to the templates in the word doc. I had converted the word to xml.Also through Exsl ,had finished the multiple...
2
by: Asbjørn Ulsberg | last post by:
Hi. I'm trying to convert Brady Hegberg's great RTF2HTML VB 6.0 module to C#. I've managed to convert the VB code to VB.NET, which gave me the following code: Option Strict On Option...
5
by: Robert | last post by:
I have a series of web applications (configured as separate applications) on a server. There is a main application at the root and then several virtual directories that are independant...
3
by: Mary | last post by:
Hi, Does anyone know of any software out there that would convert an application written in VBScript to either VB.NET or C#/C++ quite quickly for me, or will I have to re-write the application...
2
by: Map Reader | last post by:
Greetings, I am converting an old VB6 application to use .NET. One of the old controls loads icons from the disk and displays them. However, the transparent color turns to blue somewhere in the...
12
by: Frederik Vanderhaeghe | last post by:
Hi, I have a problem converting text to a double. Why doesn't the code work: If Not (txtdocbedrag.Text = "") Then Select Case ddlBedrag.SelectedIndex Case 0 Case 1
7
by: Tor Aadnevik | last post by:
Hi, I have a problem converting values from Single to double. eg. When the Single value 12.19 is converted to double, the result is 12.1899995803833. Anyone know how to avoid this? Regards...
2
by: shenanwei | last post by:
DB2 V8.2 on AIX, type II index is created. I see this from deadlock event monitor. 5) Deadlocked Connection ... Participant no.: 2 Lock wait start time: 09/18/2006 23:04:09.911774 .........
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.