Hi guys,
I have a logging function that will log anything i choose to the logfile, i have a bit of a problem with it..
all it does is use PRINT #File to output to the file..
the logfile will print to a certain point (halfway through a line) then stop, until i close my program.. it goes thru the print statement, i checked.. it just wont do it immediately... anyone know a solution.. code is below for my log function btw..
Code:
Public Function do_log(message As String)
If Not NOLOG Then Print #LogFile, Format(Date, "mm/dd/yyyy") & " " & Format(Time(), "hh:nn:ss") & " " & message
End Function
Ok, update, It now doesnt output _anything_ until i close the form.. (it did before, just missed about 3 lines) any ideas?

[Edited by CAPHS on 10-14-2000 at 07:03 AM]