Click here to Skip to main content
15,881,882 members

Comments by Blubbo (Top 4 by date)

Blubbo 6-Jul-11 8:30am View    
Deleted
Reason for my vote of 5

I had to do the hard way... create a hidden button and set the form's cancel button associate with this hidden button. Now you have proposed a nice shortcut. (Similiar as you see on Alternate 1) Thanks!
Blubbo 26-Oct-10 9:11am View    
Deleted
oops I was meant to say:

string text = tbStatic.text + " Value = " + nudStatic.Value.ToString();
Blubbo 26-Oct-10 9:09am View    
Deleted
Reason for my vote of 5
Thanks for the tip! I've never used this. I've been using the hard way such as this:

string text = tbStatic.text " Value = " nudStatic.Value.ToString();

That's the hard way! Now that I've gotta update my code to make it more readable as u suggested. Thanks!
Blubbo 26-Oct-10 8:51am View    
Deleted
Reason for my vote of 4
I have used ref often... hardly used "out". Now I understand about the "out" reference. Thanks!