|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Addhandler with parameter ?Is it possible to add a handler , and the function to add has a parameter ?
Or MUST the function have NO parameters ? Thanks Peter Not sure what you mean. Keep in mind that when using addhandler, you just
tell which method to call. You don't perform an actual call. This is why you never have to specify which parameters to use in this context. If this is not the problem, your best bet is to just show us directly what you tried so that we can understand the problem you have... -- Patrice "Peter Stojkovic" <d**@gmx.net> a écrit dans le message de news: Os%23NznTZGHA.4***@TK2MSFTNGP02.phx.gbl...Show quoteHide quote > Is it possible to add a handler , and the function to add has a parameter > ? > > Or MUST the function have NO parameters ? > > > Thanks > Peter > To add to what Patrice already explained, here is some sample code :
------------------------------------- AddHandler Button1.Click, AddressOf ClickHandler AddHandler Button2.Click, AddressOf ClickHandler Private Sub ClickHandler (ByVal sender As System.Object, e As _ System.EventArgs) ' Your code here. End Sub ------------------------------------- In VB.NET, Event Handlers are Subs, not Functions, so they can't return values. This however has no implication on whether they accept parameters or not. In my example, the EventHandler method takes 2 parameters. HTH, Regards, Cerebrus. "Peter Stojkovic" <d**@gmx.net> schrieb: No problem. You do not need to list the function's signature when adding it > Is it possible to add a handler , and the function to add has a parameter > ? as a handler. -- M S Herfried K. Wagner M V P <URL:http://dotnet.mvps.org/> V B <URL:http://classicvb.org/petition/>
Newbie Question about Value and Reference Types
Option strict on and detecting a listview Name backgroundworker Is there a way to see if a file is in use? Retrieving a list of available fonts on system. ReadAllText, special characters set defaultprinter ASP.NET GRID CONTROL. DragDrop to TextBox Can't read xml to Excel (dataset.WriteXml) |
|||||||||||||||||||||||