home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 January / pcwk_01_1999.iso / Top100sh / Macro / GrounC / data1.cab / Example_Files / Sample3.gc < prev    next >
Text File  |  1998-08-20  |  475b  |  9 lines

  1. // This sample demonstrates the commands that write text to a file
  2. LogError("This line will go into an error log.")
  3. LogEvent("This line will go into the system event log.")
  4. LogSystem("test.log",DISK_C_FREE)
  5. LogToFile("test.log","This is a test log entry")
  6. WriteLineToFile("test.log","This line was entered by the command WriteLineToFile")
  7. WriteToFile("test.log","This line was added by the command WriteToFile")
  8. MessageBox("Macro has finished. Check the log files.")
  9.