show/hide this revision's text 2 Event Viewer

It's worth ensuring the custom DLLs are identical on the two machines, and that they are registered with regsvr32. Although if they weren't, you should get an error message or an error would be raised in your program, rather than what you describe.

Check the code in your startup procedure - Sub Main() or the Form_Load() event of your main form depending on your project settings. Make sure it's not quitting the program if an error occurs.

Check for any Event Viewer messages (based on this answer by Valentin Galea which helped diagnose a VB6 app bailing on a corrupted database file).

Add logging messages to the startup procedure. The native VB6 App.LogEvent method might be useful. Make sure the first line in the program is a logging statement so you can check whether it starts at all. If you have an error handler in the startup procedure, make sure it logs error details before it does anything else.

show/hide this revision's text 1

It's worth ensuring the custom DLLs are identical on the two machines, and that they are registered with regsvr32. Although if they weren't, you should get an error message or an error would be raised in your program, rather than what you describe.

Check the code in your startup procedure - Sub Main() or the Form_Load() event of your main form depending on your project settings. Make sure it's not quitting the program if an error occurs.

Add logging messages to the startup procedure. The native VB6 App.LogEvent method might be useful. Make sure the first line in the program is a logging statement so you can check whether it starts at all. If you have an error handler in the startup procedure, make sure it logs error details before it does anything else.