All,
I'm experiencing a strange Problem with a UserControl made in C#.
I've added 4 cursor files and set the 'Build Action'-property to 'Embedded Resource'.
Before I did this, the Interop UserControl was succesfully imported in VB6, but after I've added those 4 files, my VB6 enviroment can't save the form or VB-project file.
Who can help?
Regards Guido
Loading
Sam HobbsPosted Oct 22, 2011, 10:41 AM
I am sorry, but there is insufficient information for us to help you with this. The problem you are describing is the type of problem that is often difficult to solve. It is often the result of ignoring errors in tthe program. Your program might be getting an error that it ignores and then it encounters catasrophic failure. Therefore it will be beneficial to put code in (such as try/catch) to catch errors and whatever other code that would help. Even if that does not solve the current problem, it is something that should be done.
You should also learn to use the debugger. You should look at the source code line that the error occurs at. Hopefully there is enough of a clue to limit your analysis and help determine the path to take to determine the problem.