Hey Guys!
I'm a new one in this programmin branche. I work with Visual Studio 2008 C# and the Infragistics Presentation Layer.In my Software, I use the UltraExplorerBar with the Design of Outlook 2003. So I use the Event "ItemClick" to show different User Controls in the second part of a split container.
But when i doubleclick one menu-item, the software hangs off and I could not click any other items.
What can I do??
I tried to use the doubleClick Event as ClickEvent. But it hangs off, too.
Thank you for help.
Best regards
David Mueller
If by "hangs off" you mean that the application stops responding and never comes back, it sounds like something you are doing in response to a click/double-click is causing infinite recursion. In this case you can try selecting Debug->Break All from the Visual Studio main menu; when execution halts you can then check the call stack, and you will probably see repetition therein as one routine indirectly calls another routine which in turn calls the first one, causing execution to get stuck in an infinite loop.
If by "hangs off" you mean that the application seizes for a few seconds but eventually comes back, you might want to use a performance profiling tool (such as RedGate's ANTS, which is very good) which will point you to the code in your application that is causing the bottleneck.