Quote Originally Posted by funnyusername View Post
. No Errors are showing up for this, so the debugger is not helping. I've walked through the code line by line myself numerous times..
Have you set a breakpoint at both of the methods MainForm_Load, timer1_Tick?

Have you stepped into " SplashForm.Opacity = SplashForm.Opacity - .4" when the SplashForm HAS already been closed? [ie anytine after a breakpoint on SplashForm.Close(); is called?

The debugger is NOT about "errors showing up...

Consider the following code:
Code:
decimal price = 1.95M;
decimal quantity = 3M;
decimal total = price*quantity;
Console.WriteLine(total);
In the right context, this will compile and run. NO Errors.

But if the problem statement is: "What is the price of 5 items when each one costs $1.87?", stepping through it with the debugger will immediately revela two bugs.....