Link to home
Start Free TrialLog in
Avatar of csharp_learner
csharp_learnerFlag for Singapore

asked on

Position launch of shell script

Hi,

I have a shell script that launches an executable via the attached code.
But I could not position where the popup of the executable launch.

Is there an additional code that I can add to achieve where I want to launch the executable?

PS: I am working on a VBA supported environment hence my codes are written in VB script.

Many thanks for the help/advise in advance.

        str = """C:\Program Files (x86)\ICONICS\GENESIS32\Bin\Gwx32.exe""" + " C:\Users\admin\Desktop\Display.gdf -Runtime -AliasFile=""" + sTextFileName + """"
              
        Shell str, vbMinimizedNoFocus

Open in new window

Avatar of aikimark
aikimark
Flag of United States of America image

Are you in a VBScript run-time environment or a VBA run-time environment?
ASKER CERTIFIED SOLUTION
Avatar of Bill Prew
Bill Prew

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of csharp_learner

ASKER

Sorry for the late reply, thanks for the help.