VERSION 1.0 CLASS BEGIN MultiUse = -1 'True END Attribute VB_Name = "WEBUtl" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = True Attribute VB_PredeclaredId = False Attribute VB_Exposed = True Option Explicit Private Indent As String Private lFontFace As String Private lWebPage As String Private Q As String * 1 Private RequestString As String Private IAmADll As Boolean Public Property Let FontFace(ByVal NewFontFace As String) lFontFace = NewFontFace End Property Public Sub AppendRequest(st) 'appends st to the saved request string RequestString = RequestString + st End Sub Public Sub BodyEnd() 'Writes page body end to WEBPage Call WPage("
If Color = "" Then Call WPage("") Else Call WPage("") End If End Sub Public Function Button(Name, Caption, ToolTip) As String 'Returns Button defined by Name and Caption Dim s As String 'EX: s = "" Button = s End Function Public Function Bold(Content) 'Returns Content as bold text 'EX: Content Bold = "" + Content + "" End Function Private Function Encl(s) If InStr(s, " ") + InStr(s, ",") <> 0 Or s = "" Then Encl = Q + s + Q Else Encl = s End If End Function Public Function ITALIC(Content) 'Returns Content as ITALIC text 'EX: