Has anyone executed a VB6 program from within Navision? I need to send 3 fields from a Navision table to a VB program and have the VB run time show on the Navision screen - It should work like Excel or word but am unsure how to pass the fields - any ideas? [-o<
0
Comments
My world: Dynamics NAV,SQL and .NET
CEO at Solving Dynamics
http://www.solvingdynamics.com
SHELL works fine, and it is that simple:
SHELL(program.exe + '/commandline_parameter /parameter2');
Just put the command line parameters in single quotes. This runs an exe in the current directory, if you want to change the directory just put the full path before the exe.
Check the help, this is pretty straightfoward.
Andrew