1.

How Can You Run Another Application From Within Powerbuilder?

Answer»

We could do it USING PB function Run(). Run(string{, WindowState}), where string is a string whose value is the filename of the program we WANT to execute. Optionally, the string can CONTAIN one or more PARAMETERS of the program; WindowState (optional) is a value of the WindowState enumerated data type indicating the state in which we want to run the program.

E.g., Run(“c:windowsnotepad.exe”, Maximized!)

We could do it using PB function Run(). Run(string{, WindowState}), where string is a string whose value is the filename of the program we want to execute. Optionally, the string can contain one or more parameters of the program; WindowState (optional) is a value of the WindowState enumerated data type indicating the state in which we want to run the program.

E.g., Run(“c:windowsnotepad.exe”, Maximized!)



Discussion

No Comment Found