Contents:

 

 

Introduction


News blog


What is Servoy?


Getting Started


Comparison Servoy/VFP


Performance


How-To's

 

Code Reference

 

VFP2Servoy Toolkit

 

 

Contact / feedback

 

 

 

 

 

 

 

 

 

 

 

 

 

 

RUN - application.executeProgram() | application.executeProgramInBackGround()



Executes external programs.

 

VFP code example

RUN c:\windows\system32\calc.exe && start windows calculator
RUN /N c:\windows\system32\calc.exe && start windows calculator NOWAIT

 

Servoy code example

var cResult=application.executeProgram("c:\\windows\\system32\\calc.exe");
application.executeProgramInBackground("c:\\windows\\system32\\calc.exe");
 
// alternatively:

var cResult=globals.RUN("c:\\windows\\system32\\calc.exe");
globals.RUN("c:\\windows\\system32\\calc.exe", true);


Note: RUN() is a function of the VFP2Servoy Toolkit

 

 

External resources:

 

vfp plugin

 

ServoyWorld 2012 pics

 

Official Servoy website

 

Ken Levy on Servoy

 

Servoy info

 

Servoy Forum

 

Servoy Documentation

 

VisualFoxpro.com © 2010-2012 • All rights reserved • Contact: info@visualfoxpro.com