Write Log // strLog : the log content need write to log file; // strFile: the compliete file path(include the file name) of the log file. e.g. C:\log.log; procedure WriteLog(strLog, strFile: string); var fLog: TextFile; begin AssignFile(fLog, strFile); try i... Read More
posted @ 2013-11-14 16:47 LARSON _ Views(245) Comments(0) Diggs(0) Edit