DR00ME Posted May 20, 2004 Posted May 20, 2004 I got this for 0 to some big number.... the problem is that it kinda hangs the application until it is done.... how I make it so it wont hang the applicaiton like how do I tell the program only to use like 70% of CPU .... or something like that.... oh and one other question.... I would like to do a setup program for my application.... what program should I use ? or is there something with .net 2003 I could use... -thank you Quote "Everything should be made as simple as possible, but not simpler." "It's not that I'm so smart , it's just that I stay with problems longer ." - Albert Einstein
mooman_fl Posted May 20, 2004 Posted May 20, 2004 In your "for" loop put the following line: Application.DoEvents What is happening is that your program is getting tied up doing the code for your loop and isn't handling other messaging events. This tells it to do that. Quote "Programmers are tools for converting caffeine into code." Madcow Inventions -- Software for the Sanity Challenged.
JABE Posted May 21, 2004 Posted May 21, 2004 I would like to do a setup program for my application.... what program should I use ? or is there something with .net 2003 I could use... Look into the Setup and Deployment Projects in VS.NET. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.