MikeTranser Posted March 9, 2010 Posted March 9, 2010 How to make log file?? If func() = OK Then write in log.txt c:/xxx/xxx/...../program = Funcion xxx OK IniWrite etc?
mini Posted March 9, 2010 Posted March 9, 2010 How to make log file??If func() = OK Then write in log.txtc:/xxx/xxx/...../program = Funcion xxx OKIniWrite etc?try to understand my program, im creating some INI files on it...http://www.autoitscript.com/forum/index.php?showtopic=111310&view=findpost&p=781009 [size="4"]My first work[/size], it checks if one prograrm is running and if not it closes all necessery windows and run them again.[size="4"]My second work[/size], Script Function: It saves a Client Info and creates a INI file for all clients with all the info.[size="4"]My third work[/size], Script Function: It change some INFO on a working program, every X min configured.
PsaltyDS Posted March 9, 2010 Posted March 9, 2010 It even adds a timestamp for you: _FileWriteLog() See help file. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Fulano Posted March 9, 2010 Posted March 9, 2010 Try something like this:Global $LogFileHandle = FileOpen ("Somefile", 1) ;.... If $something_or_other Then FileWriteLine ($LogFileHandle, $some_log_text) ;.... FileClose ($LogFileHandle)Please not that this is a suggestion and has not been tested #fgpkerw4kcmnq2mns1ax7ilndopen (Q, $0); while ($l = <Q>){if ($l =~ m/^#.*/){$l =~ tr/a-z1-9#/Huh, Junketeer's Alternate Pro Ace /; print $l;}}close (Q);[code] tag ninja!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now