Click here to Skip to main content
15,888,061 members
Home / Discussions / C#
   

C#

 
AnswerRe: Site not working on IE9 for production server Pin
Dave Kreskowiak11-Aug-14 3:07
mveDave Kreskowiak11-Aug-14 3:07 
AnswerRe: Site not working on IE9 for production server Pin
Pete O'Hanlon11-Aug-14 5:27
mvePete O'Hanlon11-Aug-14 5:27 
QuestionExcel.interop error Pin
Member 1098941510-Aug-14 20:28
Member 1098941510-Aug-14 20:28 
SuggestionRe: Excel.interop error Pin
Kornfeld Eliyahu Peter10-Aug-14 20:47
professionalKornfeld Eliyahu Peter10-Aug-14 20:47 
AnswerRe: Excel.interop error Pin
Richard MacCutchan10-Aug-14 21:29
mveRichard MacCutchan10-Aug-14 21:29 
QuestionProblem with my C# code for Motorola MC5574 barcode reader Pin
Jaspar Lamar Crabb10-Aug-14 11:26
Jaspar Lamar Crabb10-Aug-14 11:26 
AnswerRe: Problem with my C# code for Motorola MC5574 barcode reader Pin
Richard Andrew x6410-Aug-14 16:08
professionalRichard Andrew x6410-Aug-14 16:08 
AnswerRe: Problem with my C# code for Motorola MC5574 barcode reader Pin
Bernhard Hiller10-Aug-14 21:41
Bernhard Hiller10-Aug-14 21:41 
AnswerRe: Problem with my C# code for Motorola MC5574 barcode reader Pin
Gerry Schmitz11-Aug-14 19:52
mveGerry Schmitz11-Aug-14 19:52 
Questiondownload webpage Complete Pin
Member 94738099-Aug-14 22:48
Member 94738099-Aug-14 22:48 
AnswerRe: download webpage Complete Pin
Richard MacCutchan10-Aug-14 1:51
mveRichard MacCutchan10-Aug-14 1:51 
QuestionRe: download webpage Complete Pin
Member 947380910-Aug-14 4:07
Member 947380910-Aug-14 4:07 
AnswerRe: download webpage Complete Pin
Richard MacCutchan10-Aug-14 6:09
mveRichard MacCutchan10-Aug-14 6:09 
AnswerRe: download webpage Complete Pin
Kornfeld Eliyahu Peter10-Aug-14 6:28
professionalKornfeld Eliyahu Peter10-Aug-14 6:28 
GeneralRe: download webpage Complete Pin
Member 947380910-Aug-14 18:32
Member 947380910-Aug-14 18:32 
QuestionRe: download webpage Complete Pin
Member 947380911-Aug-14 5:42
Member 947380911-Aug-14 5:42 
AnswerRe: download webpage Complete Pin
Eddy Vluggen11-Aug-14 7:06
professionalEddy Vluggen11-Aug-14 7:06 
QuestionRe: download webpage Complete Pin
Member 947380911-Aug-14 21:33
Member 947380911-Aug-14 21:33 
AnswerRe: download webpage Complete Pin
thatraja11-Aug-14 23:15
professionalthatraja11-Aug-14 23:15 
QuestionHow to process data asynchronous when (socket ) recieving data high frequently Pin
Peng20139-Aug-14 6:53
Peng20139-Aug-14 6:53 
AnswerRe: How to process data asynchronous when (socket ) recieving data high frequently Pin
Eddy Vluggen11-Aug-14 7:08
professionalEddy Vluggen11-Aug-14 7:08 
Questionngen in windows applications c# Pin
Zeyad Jalil9-Aug-14 2:03
professionalZeyad Jalil9-Aug-14 2:03 
AnswerRe: ngen in windows applications c# Pin
Dave Kreskowiak9-Aug-14 4:25
mveDave Kreskowiak9-Aug-14 4:25 
GeneralRe: ngen in windows applications c# Pin
Zeyad Jalil9-Aug-14 19:27
professionalZeyad Jalil9-Aug-14 19:27 
GeneralRe: ngen in windows applications c# Pin
Dave Kreskowiak10-Aug-14 4:45
mveDave Kreskowiak10-Aug-14 4:45 
This is normally done in your application installer. After your application is installed, you run NGEN on it to get the binaries built. This is normally an automatic option in modern installation builder tools like InstallShield and InnoSetup.

You're also going to improve performance by evaluating what your application is doing on startup, not just counting controls. What is going on in your Program.cs? What is going on in your Form.Load event? How big is your resulting executable when you compile it? Are you doing any database work? Are you using Entity Framework? There is a "warm-up" time when EF first starts.

Stuff like that...
A guide to posting questions on CodeProject

Click this: Asking questions is a skill.
Seriously, do it.

Dave Kreskowiak

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.