I am trying to compile this:
Code: Select all
runprogram(configvalue$(0)+"mysqld-nt.exe")
Regards
Code: Select all
runprogram(configvalue$(0)+"mysqld-nt.exe")
Code: Select all
path$="C:\WINDOWS"
file$="notepad.exe"
Debug path$+file$
RunProgram(path$+file$) ; DOESN'T WORK
Code: Select all
path$="C:\WINDOWS"
If Right(path$, 1) <> "\"
path$+"\"
EndIf
Debug path$
Code: Select all
path$="C:\WINDOWS"
PathAddBackslash_(@path$)
Debug path$
Code: Select all
onErrorGoto(?Fred)
Code: Select all
onErrorGoto(?Fred)