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

.NET (Core and Framework)

 
QuestionSetup Project don't share Crystal Reports msm files [modified] Pin
tronix0115-Mar-07 0:54
tronix0115-Mar-07 0:54 
AnswerRe: Setup Project don't pack Crystal Reports msm files Pin
Robert Rohde15-Mar-07 2:39
Robert Rohde15-Mar-07 2:39 
GeneralRe: Setup Project don't pack Crystal Reports msm files Pin
tronix0125-Mar-07 22:04
tronix0125-Mar-07 22:04 
Questionhelp to new Programmer Pin
manugrg14-Mar-07 8:33
manugrg14-Mar-07 8:33 
AnswerRe: help to new Programmer Pin
PlayByTheRules15-Mar-07 0:39
PlayByTheRules15-Mar-07 0:39 
QuestionMaskedTextBox for Percentages Pin
seenu238314-Mar-07 5:43
seenu238314-Mar-07 5:43 
QuestionWPF Usercontrol question Pin
pole_cat14-Mar-07 5:22
pole_cat14-Mar-07 5:22 
QuestionUsing DataAdapter update and returning the id Pin
d-_-b14-Mar-07 5:09
d-_-b14-Mar-07 5:09 
QuestionScreen color depth conversion Pin
priyank_ldce14-Mar-07 4:46
priyank_ldce14-Mar-07 4:46 
QuestionDatabase ConnectionProblem Pin
micydon13-Mar-07 21:21
micydon13-Mar-07 21:21 
AnswerRe: Database ConnectionProblem Pin
led mike14-Mar-07 6:32
led mike14-Mar-07 6:32 
QuestionDoc Conversion Pin
Fahima_Tahir13-Mar-07 10:02
Fahima_Tahir13-Mar-07 10:02 
AnswerRe: Doc Conversion Pin
Pete O'Hanlon14-Mar-07 0:13
mvePete O'Hanlon14-Mar-07 0:13 
QuestionOverrided install sub problem Pin
Memo Soso13-Mar-07 4:55
Memo Soso13-Mar-07 4:55 
QuestionHelp: how to have a binding to correctly update a form? Pin
Spulit13-Mar-07 2:56
Spulit13-Mar-07 2:56 
QuestionFTP upload Pin
jchigg200012-Mar-07 10:17
jchigg200012-Mar-07 10:17 
AnswerRe: FTP upload Pin
Dave Kreskowiak12-Mar-07 12:52
mveDave Kreskowiak12-Mar-07 12:52 
Questiondynamic pictureBox creation Pin
sarah_malik12-Mar-07 6:48
sarah_malik12-Mar-07 6:48 
AnswerRe: dynamic pictureBox creation Pin
Paul Selormey12-Mar-07 15:02
Paul Selormey12-Mar-07 15:02 
GeneralRe: dynamic pictureBox creation Pin
sarah_malik13-Mar-07 1:07
sarah_malik13-Mar-07 1:07 
Questionhelp me to make my program work faster Pin
thesad12-Mar-07 5:23
thesad12-Mar-07 5:23 
AnswerRe: help me to make my program work faster Pin
MikeMarq12-Mar-07 5:43
MikeMarq12-Mar-07 5:43 
Well without knowing anything about your program it is hard to say. But here are some things to look at.

What graphics methods are you using? I don't know alot about all of them but I know that setpixel and getpixel are really slow.

Do you have unnecisary calculations inside of a loop? In other words if you have a value that will remain the same for the duration of a loop, calculate its value outside the loop so your program doesn't have to repeat the operation thousands or millions of times.

Are you rediming large arrays constantly? In particular redim preserve is slow because the computer is actually making a new array and copying the contents over from the old one.

I hope this helps,

Mike
GeneralRe: help me to make my program work faster Pin
thesad12-Mar-07 5:52
thesad12-Mar-07 5:52 
GeneralRe: help me to make my program work faster Pin
Pete O'Hanlon12-Mar-07 6:00
mvePete O'Hanlon12-Mar-07 6:00 
GeneralRe: help me to make my program work faster Pin
MikeMarq12-Mar-07 7:41
MikeMarq12-Mar-07 7:41 

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.