From memory using VB6 (now using .net), this may indicate that there is not enough memory on the user's computer or that your code could not get the dictionary application descriptor.
If you cannot create a problem in Visual Studio and donβt know which line in the code is causing the problem, then you are probably best off adding an error handler around the code that causes the problem.
At the top of the south, which has problems, put
On Error GoTo MyErrorHandler
and then on the bottom line
On Error Goto 0 Exit Sub MyErrorHandler: MsgBox "Error " & Err.Number & " (" & Err.Description & ") at line " & Erl
Instead of using MsgBox, as I here, consider writing to a file. Also, for Erl to work correctly, taking into account the numbering of each of your lines.
For VB6, a big plugin is the MZ link tools, which will help you easily add error handling and line numbers
source share