home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Planet Source Code Jumbo …e CD Visual Basic 1 to 7
/
1_2002.ISO
/
Data
/
Zips
/
CODE_UPLOAD78987182000.psc
/
modLogfile.bas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
2000-07-17
|
345 b
|
19 lines
Attribute VB_Name = "modLogfile"
Option Explicit
Public Sub AddtoLogFile(strText As String)
Dim strFile As String
If bLog Then
If Right(strText, 2) = vbCrLf Then
strText = Left(strText, Len(strText) - 2)
End If
Open strLogFile For Append As #1
Print #1, strText
Close #1
End If
End Sub