Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have a QVW where I need to execute a command to open a URL by script (for example, www.google.com).
But I couldn't do it so far.
Do you know how could I do that?
Thank you!
If you want to execute the command
execute cmd.exe your command
if you want to load data from URL then
How to call a WebService to pull some data into the QV application\
Hi,
I've tried it with:
execute cmd.exe start google.com
But it doesn't work and it works when I open cmd and execute start google.com manually...
What's the error your getting ? do you have the permission to execute the cmd ? because their might be restriction
Yes, what I get is that the CMD prompt opens when I run the script but it stays with the C:> and the cursor blinking
Try like this
execute cmd.exe start www.google.com
this ran successfully for me
May be try
let vVar='cmd.exe /C start www.google.com';
execute $(vVar) ;