|
Answer» hi
I have an app that i've written in vfp8...i've written a batch file so that the app is idiot proof to the users...how can i FORCE the ERROR logs to open in windows notepad? edit command shows the logfiles in a dos window...which isn't bad, but it's not perfect.
mHow about using the start command? For example lets assume the log you are attempting to open is CALLED error.log you could type the below line into your batch file.
start notepad error.log
|