Click here to Skip to main content
15,914,943 members
Home / Discussions / C#
   

C#

 
QuestionTreeView Quastion Pin
ytubis15-Aug-06 6:06
ytubis15-Aug-06 6:06 
AnswerRe: TreeView Quastion Pin
Judah Gabriel Himango15-Aug-06 7:21
sponsorJudah Gabriel Himango15-Aug-06 7:21 
AnswerRe: TreeView Quastion Pin
Josh Smith15-Aug-06 8:39
Josh Smith15-Aug-06 8:39 
Questioncatch sound From Modem [modified] Pin
mehrdadc4815-Aug-06 5:11
mehrdadc4815-Aug-06 5:11 
Questionlivst view Pin
TAREQ F ABUZUHRI15-Aug-06 5:10
TAREQ F ABUZUHRI15-Aug-06 5:10 
AnswerRe: livst view Pin
Judah Gabriel Himango15-Aug-06 5:15
sponsorJudah Gabriel Himango15-Aug-06 5:15 
GeneralRe: livst view Pin
TAREQ F ABUZUHRI15-Aug-06 5:40
TAREQ F ABUZUHRI15-Aug-06 5:40 
GeneralRe: livst view Pin
Judah Gabriel Himango15-Aug-06 5:47
sponsorJudah Gabriel Himango15-Aug-06 5:47 
Let me make sure I'm understanding. You want to get parameter 5 once the button is clicked?

To generate a button from code and listen for a click event:
// inside your form code
Button b = new Button();
this.Controls.Add(b);
b.Click += new EventHandler(OurClickHandler);

...

void OurClickHandler(object sender, EventArgs e)
{
    // The button was clicked.
}


Does that answer your question?


Tech, life, family, faith: Give me a visit.
I'm currently blogging about: And in this corner, the Party of Allah
The apostle Paul, modernly speaking: Epistles of Paul

Judah Himango


GeneralRe: livst view Pin
TAREQ F ABUZUHRI15-Aug-06 6:25
TAREQ F ABUZUHRI15-Aug-06 6:25 
GeneralRe: livst view Pin
TAREQ F ABUZUHRI15-Aug-06 6:30
TAREQ F ABUZUHRI15-Aug-06 6:30 
GeneralRe: livst view Pin
TAREQ F ABUZUHRI15-Aug-06 6:44
TAREQ F ABUZUHRI15-Aug-06 6:44 
QuestionRefresh Binding Pin
elefrancois12315-Aug-06 3:58
elefrancois12315-Aug-06 3:58 
QuestionDatatable and compute(Sum) Pin
Saamir15-Aug-06 3:18
Saamir15-Aug-06 3:18 
AnswerRe: Datatable and compute(Sum) Pin
Guffa15-Aug-06 4:18
Guffa15-Aug-06 4:18 
GeneralRe: Datatable and compute(Sum) Pin
Saamir15-Aug-06 4:26
Saamir15-Aug-06 4:26 
AnswerRe: Datatable and compute(Sum) Pin
Ennis Ray Lynch, Jr.15-Aug-06 4:22
Ennis Ray Lynch, Jr.15-Aug-06 4:22 
QuestionRe: Datatable and compute(Sum) [modified] Pin
Saamir15-Aug-06 5:09
Saamir15-Aug-06 5:09 
QuestionRe: Datatable and compute(Sum) Pin
Saamir15-Aug-06 5:29
Saamir15-Aug-06 5:29 
QuestionPlacing User Control on Form shut down visual studio 2005 Pin
thunderbirdje15-Aug-06 1:16
thunderbirdje15-Aug-06 1:16 
AnswerRe: Placing User Control on Form shut down visual studio 2005 Pin
Christian Graus15-Aug-06 1:32
protectorChristian Graus15-Aug-06 1:32 
AnswerRe: Placing User Control on Form shut down visual studio 2005 Pin
thunderbirdje15-Aug-06 5:20
thunderbirdje15-Aug-06 5:20 
QuestionConfiguration with Enterprise Lib 2.0 [modified] Pin
Frygreen15-Aug-06 0:53
Frygreen15-Aug-06 0:53 
AnswerRe: Configuration with Enterprise Lib 2.0 Pin
Dustin Metzgar15-Aug-06 8:42
Dustin Metzgar15-Aug-06 8:42 
QuestionAdding button on titlebar Pin
Imtiaz Murtaza15-Aug-06 0:48
Imtiaz Murtaza15-Aug-06 0:48 
AnswerRe: Adding button on titlebar Pin
Ed.Poore15-Aug-06 1:25
Ed.Poore15-Aug-06 1:25 

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.