| View previous topic :: View next topic |
| Author |
Message |
jhaadsma Guest
|
Posted: Fri Jan 29, 2010 7:51 pm Post subject: MSGBOX to LOGFILE |
|
|
Hi- I have one last little hump and my program today is complete. Yea!
I need to have the following information (works great in message box) sent to a txt log file. I would like this to be an ongoing log, so each line would need to append.
As my eyes are burned out from staring at a screen for the last 10 hours,
even the help files are running together. TGIF to all!
MsgBox, %A_MM%-%A_DD%_%A_YYYY% %A_HOUR%:%A_MIN%:%A_SEC% %username% %CreditUnion%
Jim |
|
| Back to top |
|
 |
jhaadsma Guest
|
Posted: Fri Jan 29, 2010 8:04 pm Post subject: FileAppend |
|
|
| FileAppend command...Am I getting hot or cold? |
|
| Back to top |
|
 |
geekdude
Joined: 23 Nov 2009 Posts: 64
|
Posted: Sat Jan 30, 2010 12:16 am Post subject: |
|
|
if you would like it to make a text file, you would use fileappend
BURNING HOT _________________ /\ /\ This is Kitty
(>';'<) Cut, copy, and paste kitty onto your sig.
((")(")) Help Kitty gain World Domination.
(\__/) This is Bunny.
(='.'=) Cut, copy, and paste bunny onto your sig.
(")_(") Help Bunny gain World Domination. |
|
| Back to top |
|
 |
jhaadsma Guest
|
Posted: Mon Feb 01, 2010 5:15 pm Post subject: The answer |
|
|
Just in case it helps someone else...
Here it is:
FileAppend, %A_MM%-%A_DD%_%A_YYYY% %A_HOUR%:%A_MIN%:%A_SEC% %username% %CreditUnion%`n, C:\AutobounceLog.txt |
|
| Back to top |
|
 |
|