Click here to Skip to main content
15,896,730 members
Home / Discussions / C#
   

C#

 
GeneralRe: stack overflow Pin
hotthoughtguy11-May-09 8:37
hotthoughtguy11-May-09 8:37 
AnswerRe: stack overflow Pin
Luc Pattyn11-May-09 9:13
sitebuilderLuc Pattyn11-May-09 9:13 
Questionproxy server Pin
yogesh_softworld12311-May-09 7:41
yogesh_softworld12311-May-09 7:41 
QuestionButtons and form show and close Pin
Star0911-May-09 7:30
Star0911-May-09 7:30 
QuestionRe: Buttons and form show and close Pin
harold aptroot11-May-09 7:32
harold aptroot11-May-09 7:32 
GeneralRe: Buttons and form show and close Pin
Star0911-May-09 7:51
Star0911-May-09 7:51 
GeneralRe: Buttons and form show and close Pin
harold aptroot11-May-09 8:12
harold aptroot11-May-09 8:12 
AnswerRe: Buttons and form show and close Pin
DaveyM6911-May-09 7:52
professionalDaveyM6911-May-09 7:52 
You can't call Show or Close this way unless you overload the methods i.e
//Note: the parameters are defined by the delegate so no parenthesis
yesb.Click += new EventHandler(Show);
void Show(object sender, EventArgs e)
{
    Show();
}
The normal way is to have a Click event handler and call Show from there - the same really - just a more logical name.
yesb.Click += new EventHandler(yesb_Click);
void yesb_Click(object sender, EventArgs e)
{
    Show();
}


Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Visual Basic is not used by normal people so we're not covering it here. (Uncyclopedia)
Why are you using VB6? Do you hate yourself? (Christian Graus)

GeneralRe: Buttons and form show and close Pin
Star0911-May-09 7:55
Star0911-May-09 7:55 
Questionerror when created new datasource Pin
dotnetdev8111-May-09 7:18
dotnetdev8111-May-09 7:18 
Questionstack overflow Pin
hotthoughtguy11-May-09 6:21
hotthoughtguy11-May-09 6:21 
QuestionRe: stack overflow Pin
Ian McCaul11-May-09 6:26
Ian McCaul11-May-09 6:26 
AnswerRe: stack overflow Pin
J4amieC11-May-09 6:34
J4amieC11-May-09 6:34 
AnswerRe: stack overflow Pin
Dan Neely11-May-09 6:56
Dan Neely11-May-09 6:56 
AnswerRe: stack overflow Pin
Dave Kreskowiak11-May-09 7:00
mveDave Kreskowiak11-May-09 7:00 
GeneralRe: stack overflow Pin
hotthoughtguy11-May-09 7:12
hotthoughtguy11-May-09 7:12 
GeneralRe: stack overflow Pin
Luc Pattyn11-May-09 7:27
sitebuilderLuc Pattyn11-May-09 7:27 
GeneralRe: stack overflow Pin
hotthoughtguy11-May-09 7:40
hotthoughtguy11-May-09 7:40 
GeneralRe: stack overflow Pin
Luc Pattyn11-May-09 8:04
sitebuilderLuc Pattyn11-May-09 8:04 
GeneralRe: stack overflow Pin
hotthoughtguy11-May-09 8:08
hotthoughtguy11-May-09 8:08 
GeneralRe: stack overflow Pin
Dave Kreskowiak11-May-09 12:03
mveDave Kreskowiak11-May-09 12:03 
QuestionObtain value from a stored procedure Pin
Gresziu11-May-09 5:50
Gresziu11-May-09 5:50 
AnswerRe: Obtain value from a stored procedure Pin
Ian McCaul11-May-09 6:23
Ian McCaul11-May-09 6:23 
GeneralRe: Obtain value from a stored procedure Pin
Gresziu11-May-09 21:23
Gresziu11-May-09 21:23 
Questionstudent information system Pin
dotnetdev8111-May-09 5:49
dotnetdev8111-May-09 5:49 

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.