I created a simple application scattergraph (from NI Measurement Studio .Net toolbar) in C# in MS Visual Studio 2003.
When the app is run it takes the nationalinstruments.ui.windowsforms assembly to be loaded from the GAC about 16 seconds (on a Pentium 4 2.4Ghz machine), so the first time the graph appears the user has to wait a rather long time!
I'm new to C# and .Net but thought running NGen.exe may help this problem by creating a Native Images on the NI libraries to stop the JIT compiling. Unfortunately this did not seem to make any difference! Libraries which were run with Ngen where nationalinstruments.common, nationalinstruments.ui, nationalinstruments.ui.windowsforms.
Any suggestions of how to speed it up would be grateful?
I noticed the NI NationalInstruments.GraphFeatureTour.exe example takes the same amount of time to start up!