jstiegelmeyer
Programmer
Through product updates, I am using Visual Basic and Windows API to register new dll's and ocx's on my clients' machines. For obvious reason, I want regsvr32 to execute silently, but then I need a way to confirm that the registration was successful.
This is the line of code that I use to execute regsvr silently.
ShellExecute 0, "open", "regsvr32", "/s """ & strFilePath & """", "", 0
Does anyone know of an API call that I can use to confirm that each component is successfully registered? If not, is there anyway to capture/trap the information from the line of code above?
Thanks in advance,
Jamie
This is the line of code that I use to execute regsvr silently.
ShellExecute 0, "open", "regsvr32", "/s """ & strFilePath & """", "", 0
Does anyone know of an API call that I can use to confirm that each component is successfully registered? If not, is there anyway to capture/trap the information from the line of code above?
Thanks in advance,
Jamie