Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
* StrToFile is simple in this one line case:
StrToFile('mysqldump -%1 -%2 %3 > %4','C:\somefolder\mybackup.cmd')
* With multiple lines you're better off with TEXT ENDTEXT:
_Text = Fcreate('C:\somefolder\mybackup2.cmd')
Text NoShow
mysqldump -u%1 -p%2 %3 > %4
mysqldump -u%1 -p%2 %5 > %6
mysqldump -u%1 -p%2 %7 > %8
EndText
Fclose(_Text)