Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Execute Grind.exe from myApplication

Status
Not open for further replies.

Giber

Technical User
Apr 20, 2006
2
US
Hi,

Do you know how to execute grind.exe from a VB.Net Application?
I have this so far:
Dim p As New Process
p.StartInfo.FileName = "\\path\Aloha\BIN\GRIND.EXE"
p.StartInfo.Arguments = "/DATE 20061226"
p.StartInfo.UseShellExecute = False
p.Start()

But throws me this error: Application Error: IBERSTR.DLL is missing or is not in the working path. Please rerun your installation or update your Aloha\Bin folder.

Do I need to specify more arguments for the process to start?

Thank you for your time and help

P.S. Sorry for any language errors
 
It appears to me that you need to change to the directory where grind.exe is located.
 
Yes, I have to execute my application (the one that runs grind.exe) from inside the machine where the grind.exe (Aloha) is installed.

Thanks for your response.

Giber
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top