Click here to Skip to main content
15,889,462 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: too slow Pin
baerten19-Sep-06 21:56
baerten19-Sep-06 21:56 
GeneralRe: too slow Pin
milleusi20-Sep-06 3:17
milleusi20-Sep-06 3:17 
GeneralRe: too slow Pin
baerten20-Sep-06 5:02
baerten20-Sep-06 5:02 
Question.Net 2.0 and Crystal Reports Pin
j45mw15-Sep-06 11:04
j45mw15-Sep-06 11:04 
Question IE Extension: How to add a button to the status bar? Pin
rryyjw15-Sep-06 6:11
rryyjw15-Sep-06 6:11 
GeneralRe: IE Extension: How to add a button to the status bar? Pin
Guffa15-Sep-06 15:56
Guffa15-Sep-06 15:56 
QuestionReducing time to start application Pin
..Hubert..15-Sep-06 5:34
..Hubert..15-Sep-06 5:34 
AnswerRe: Reducing time to start application Pin
Jakob Farian Krarup17-Sep-06 19:16
Jakob Farian Krarup17-Sep-06 19:16 
Hi H

Do you compile the application in Release mode?
This can change the startup time dramatically.

If you are already in release mode, then try inserting a few Trace lines here and there and add a System.Diagnostics.TextWriterTraceListener to your application, to find out where all those CPU cycles are going.

TextWriterTraceListener myTextListener = new TextWriterTraceListener(@"C:\debug.txt");
Trace.Listeners.Add(myTextListener);
 
// Write output to the file.
Trace.Write("BEFORE doing something - the time is: " + DateTime.Now);
...
Trace.Write("AFTER doing something - the time is: " + DateTime.Now);


Kind regards - Jakob

Kind regards - Jakob Cool | :cool:
*********************************************
Three kinds of people in the world:
- Those who can count..
- Those who can't!

10 kinds of people in the world:
- Those who understand binary
- Those who don't

GeneralRe: Reducing time to start application Pin
..Hubert..18-Sep-06 1:27
..Hubert..18-Sep-06 1:27 
GeneralRe: Reducing time to start application Pin
Jakob Farian Krarup18-Sep-06 2:02
Jakob Farian Krarup18-Sep-06 2:02 
GeneralRe: Reducing time to start application Pin
..Hubert..18-Sep-06 4:48
..Hubert..18-Sep-06 4:48 
GeneralRe: Reducing time to start application Pin
Jakob Farian Krarup18-Sep-06 5:18
Jakob Farian Krarup18-Sep-06 5:18 
GeneralRe: Reducing time to start application Pin
..Hubert..18-Sep-06 6:09
..Hubert..18-Sep-06 6:09 
GeneralRe: Reducing time to start application Pin
Jakob Farian Krarup18-Sep-06 7:19
Jakob Farian Krarup18-Sep-06 7:19 
GeneralRe: Reducing time to start application Pin
Phil Wilson18-Sep-06 13:20
Phil Wilson18-Sep-06 13:20 
GeneralRe: Reducing time to start application Pin
..Hubert..11-Oct-06 0:39
..Hubert..11-Oct-06 0:39 
QuestionCreate HTMLImage control object Pin
Vipul Mehta14-Sep-06 23:00
Vipul Mehta14-Sep-06 23:00 
QuestionDll Import Problem in loading two c++ assemblies with same name Pin
He is Cool14-Sep-06 18:51
He is Cool14-Sep-06 18:51 
GeneralRe: Dll Import Problem in loading two c++ assemblies with same name Pin
Guffa14-Sep-06 19:15
Guffa14-Sep-06 19:15 
GeneralRe: Dll Import Problem in loading two c++ assemblies with same name Pin
He is Cool14-Sep-06 19:52
He is Cool14-Sep-06 19:52 
AnswerRe: Dll Import Problem in loading two c++ assemblies with same name Pin
Guffa14-Sep-06 22:22
Guffa14-Sep-06 22:22 
Questionevent delegate invokation order Pin
urbane.tiger14-Sep-06 16:14
urbane.tiger14-Sep-06 16:14 
AnswerRe: event delegate invokation order Pin
nitikin15-Sep-06 1:30
nitikin15-Sep-06 1:30 
AnswerRe: event delegate invokation order Pin
urbane.tiger19-Sep-06 15:59
urbane.tiger19-Sep-06 15:59 
QuestionUnInstallation option in .Net Setup Creation Pin
satsumatable13-Sep-06 22:47
satsumatable13-Sep-06 22:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.