Custom Search

Friday, October 3, 2008

User-defined function that would write to the Print-log as well as write to a file

User-defined function that would write to the Print-log as well as write to a file
function writeLog(in strMessage){
file_open("C:\FilePath\...");
file_printf(strMessage);
printf(strMessage);
}

No comments: