P Put Claude Active Member Licensed User Longtime User Dec 25, 2007 #1 Hi, How to use Arguments in Syntax: Shell (Program File, Arguments) Can I use Arguments in the Program File? Are there some examples? Put Claude Belgium
Hi, How to use Arguments in Syntax: Shell (Program File, Arguments) Can I use Arguments in the Program File? Are there some examples? Put Claude Belgium
Erel B4X founder Staff member Licensed User Longtime User Dec 26, 2007 #2 Example - Opens Internet Explorer with Basic4ppc site: B4X: Shell("iexplore.exe","http://www.b4x.com") Note that if you have spaces in your arguments you should add quotes: B4X: Shell("iexplore.exe",chr(34) & "http://www.b4x.com" & chr(34))
Example - Opens Internet Explorer with Basic4ppc site: B4X: Shell("iexplore.exe","http://www.b4x.com") Note that if you have spaces in your arguments you should add quotes: B4X: Shell("iexplore.exe",chr(34) & "http://www.b4x.com" & chr(34))