Link to home
Start Free TrialLog in
Avatar of mpdillon
mpdillon

asked on

How to determine if a Process started/was successful

I am writing a Visual basic 2013 console application to register COM dlls. The code I will be using is:
Dim process As New System.Diagnostics.Process()
process.Start("C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\Regasm.exe", """C:\OtherDLL\ShowNotes\ShowNotesVS.dll"" /tlb:""C:\OtherDLL\ShowNotes\ShowNotesVS.tlb"" /codebase")

Open in new window


Is there any way to determine if this process was successful?

Thanks,
pat
SOLUTION
Avatar of David Johnson, CD
David Johnson, CD
Flag of Canada image

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
ASKER CERTIFIED SOLUTION
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