Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Creating HTML Style log files

Status
Not open for further replies.

nissan240zx

Programmer
Jun 26, 2005
280
US
Hello All,
I want to get a log file out of my process with some pizzaz to it..style..html style.
Thsi is my current code which outputs a .htm file but all formatting is text mode..i mean the vb breaks dont work at all.

Code:
'Create Preload Log File
Dim txtStream As TextStream
Set fso = New FileSystemObject
Set txtStream = fso.CreateTextFile("c:\ThorVivek\Thor.htm")

'Rename the M:\FTPFILES\Thor\PRAQ136D-THOR-EXTRACT.D0 file to M:\FTPFILES\Thor\PRAQ136D-THOR-EXTRACT.txt for importing to access - Start

Dim FileName1 As String
Dim NewFileName1 As String
On Error Resume Next

FileName1 = "M:\FTPFILES\Thor\PRAQ136D-THOR-EXTRACT.D0"
NewFileName1 = "M:\FTPFILES\Thor\PRAQ136D-THOR-EXTRACT.txt"
Name FileName1 As NewFileName1
    
'Rename the file to .txt for importing to access - Complete
    
    txtStream.WriteLine "File Copy Start to Local Drive Start" & CStr(Now) & vbCrLf
    fso.CopyFile "T:\ThorBackend\Backend.mdb", "C:\ThorVivek\Backend.mdb"
    txtStream.WriteLine "File Copy to Local Drive End" & CStr(Now) & vbCrLf

Any advice..on how to make it look like really nice and appealing.

Thanks in advance..

A good programmer is someone who looks both ways before crossing a one-way street. - Doug Linder
 
I would look into the HTML language itself for a more complete overview. Very simply you can add breaks by using <br> e.g.
Code:
txtStream.WriteLine "File Copy Start to Local Drive Start" & CStr(Now) & "<br>" & vbCrLf
For a proper HTML page you would need all of the HTML tags in place as well.

Hope this helps

HarleyQuinn
---------------------------------
Get the most out of Tek-Tips, read FAQ222-2244 before posting.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top