Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 1.0 > C#
|
C# Programming questions specific to the Microsoft C# language. See also the forum Beginning Visual C# to discuss that specific Wrox book and code.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C# section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old December 8th, 2004, 05:10 PM
Authorized User
 
Join Date: Nov 2004
Posts: 19
Thanks: 0
Thanked 0 Times in 0 Posts
Default Click Event

I'm building a button on a form dynamically...

Button btnNew = new Button();
btnNew.Name = "button" + x;
.Controls.Add(btnNew);

How can I capture the click event now that the button is built?

Thanks.

 
Old December 8th, 2004, 05:52 PM
Kep Kep is offline
Authorized User
 
Join Date: Aug 2003
Posts: 79
Thanks: 0
Thanked 0 Times in 0 Posts
Default

You should be able to use
Code:
btnNew.Click += MyNewButtonClick
Kep.
 
Old December 8th, 2004, 06:23 PM
Registered User
 
Join Date: Dec 2004
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Default

I'm not sure if you're asking about a WinForms application or a web application. For WinForms:
   btnNew.Click += new System.EventHandler(MyEventHandler)
where MyEvent Handler is defined as:
   private void MyEventHandler(object sender, System.EventArgs e) {


Chris Jobson
 
Old December 8th, 2004, 06:23 PM
Authorized User
 
Join Date: Nov 2004
Posts: 19
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thanks Kep. (And thanks Chris)

You just answered my other question!

Dkr72





Similar Threads
Thread Thread Starter Forum Replies Last Post
Click event being cancelled!? Abbas ASP.NET 2.0 Professional 3 July 16th, 2007 05:18 PM
DataGrid click event Clive Astley Beginning VB 6 0 July 4th, 2005 12:44 AM
simulating click event simmohall BOOK: Professional SQL Server Reporting Services ISBN: 0-7645-6878-7 0 March 13th, 2005 06:28 PM
Mouse Click Event roniestein Access 4 December 11th, 2003 04:53 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.