I have a VB6 app which brings up a form by invoking a .NET DLL, but the problem is that this form takes almost 5 seconds to appear when the menu item is first selected in the VB6 app is selected. How can I speed this up?

It is only slow for the first time, thereafter it is at an acceptable speed, like it is a native VB6 form.

I'm thinking that one possible solution is to load the Form from the .NET DLL during the splash screen of the VB6 app but make invisible or somehow not show it, and then when the menu item is selected I will make it show or visible.

What are my options?

link|improve this question

63% accept rate
But starting a .Net component shouldn't be a large process. I guess it's the .Net component that's slow? Can you speed that up? Or else it seems like a good choice to start it during splash if you know it will be used later and possibly several times – simendsjo Jun 17 '10 at 8:14
@simendsjo: there are some possible improvements I could make to the .NET component but I think the .NET invocation is causing some delay. How would I start the form during the splash and make it invisible? – CraigJ Jun 17 '10 at 8:19
@Craig Johnston: You could set the form to be invisible by default and then have a Show method in your component that the VB6 app could call rather than creating it. – ho1 Jun 17 '10 at 8:20
1  
I'm having a hard time believing a 5 second .Net startup time. Is the .Net library using large components like devexpress? – simendsjo Jun 17 '10 at 8:32
Already answered: stackoverflow.com/questions/3043843/… – Hans Passant Jun 17 '10 at 9:22
show 2 more comments
feedback

3 Answers

up vote 0 down vote accepted

I dont know exactly what the problem is, but i would suggest to first, investigate the problem in more detail using method profiling, to see which method exactly takes so much time.

But my guess would be that the VB6 app needs to load all sorts of .NET Dlls runtime into memory.. which takes all the time, you can do it by loading all of the Dlls when your program start - i think any call to .NET function will cause the dlls to load, so you can just add a simple method inside your form, that doesnt actually do anything, call it during splash screen and it should help..

but again, this is only an educated guess, investigate.. use sysinternals to see which DLLS are being loaded..

link|improve this answer
feedback

I'd guess that it's the fact that you have to load the .Net framework. You could just add a dummy method to your .Net dll that doesn't really do anything and then call that during the splash screen, this way everything should be loaded already.

link|improve this answer
or if possible, call that dummy method async during start-up/splash screen. – James Manning Jun 17 '10 at 12:14
It is already creating a (non-interactive) .NET object during the splash so perhaps this isn't the cause, but I think maybe the assembly for the .NET form is having to load for the first time? Each time afterwards there is much less delay. – CraigJ Jun 19 '10 at 23:53
feedback

There are several small thing you can do, changing the framework versions > fx3.5, reduce the size of your assemblies, reduce the number of calls the .net dll makes and running NGEN on the assemblies.

link|improve this answer
Doesn't running of NGEN need to happen on all deployed machines? – CraigJ Jun 18 '10 at 4:32
its deployed as part of .net from work %windir%\Microsoft.net\Framework\v?.?????\ngen.exe – Iain Jun 18 '10 at 12:51
Yes, but the ngen of my .NET assembly must be run separately on the deployed machine, not as part of the .net framework installation. – CraigJ Jun 19 '10 at 23:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.