Click here to Skip to main content
15,899,754 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Custom Control Datasource Pin
Thomas Wells8-Aug-06 12:58
Thomas Wells8-Aug-06 12:58 
QuestionGetting xml from webservice into dataset Pin
digsy_8-Aug-06 10:54
digsy_8-Aug-06 10:54 
AnswerRe: Getting xml from webservice into dataset [modified] Pin
Keith Malwitz8-Aug-06 18:01
Keith Malwitz8-Aug-06 18:01 
GeneralRe: Getting xml from webservice into dataset Pin
digsy_9-Aug-06 1:51
digsy_9-Aug-06 1:51 
GeneralRe: Getting xml from webservice into dataset Pin
digsy_9-Aug-06 2:57
digsy_9-Aug-06 2:57 
Questionclick event Pin
iramg8-Aug-06 9:23
iramg8-Aug-06 9:23 
AnswerRe: click event Pin
Stephen McGuire8-Aug-06 12:21
Stephen McGuire8-Aug-06 12:21 
AnswerRe: click event Pin
Dave Kreskowiak8-Aug-06 16:25
mveDave Kreskowiak8-Aug-06 16:25 
Another method is to have the same event handler handle the Click event of both buttons. Look at the end of the event handler declaration for one of the buttons Click events and you'll find a Handles clause:
Private Sub Button1_Click(blah, blah) Handles Button1.Click

You can have a single handler handle the Click events of more than one button by doing this:
Private Sub MyClickHandler(blah, blah) Handles Button1.Click, Button2.Click



Dave Kreskowiak
Microsoft MVP - Visual Basic


AnswerRe: click event Pin
Guerven8-Aug-06 17:10
Guerven8-Aug-06 17:10 
QuestionGlobal Arrays Pin
peterzorbas8-Aug-06 6:20
peterzorbas8-Aug-06 6:20 
AnswerRe: Global Arrays Pin
peterzorbas8-Aug-06 7:06
peterzorbas8-Aug-06 7:06 
QuestionHow to put checkbox in datagrid through DataGridColoumnStyle. Pin
indiaone8-Aug-06 3:38
indiaone8-Aug-06 3:38 
AnswerRe: How to put checkbox in datagrid through DataGridColoumnStyle. Pin
Stephen McGuire8-Aug-06 7:45
Stephen McGuire8-Aug-06 7:45 
GeneralRe: How to put checkbox in datagrid through DataGridColoumnStyle. Pin
indiaone8-Aug-06 18:49
indiaone8-Aug-06 18:49 
GeneralRe: How to put checkbox in datagrid through DataGridColoumnStyle. Pin
Stephen McGuire9-Aug-06 7:24
Stephen McGuire9-Aug-06 7:24 
QuestionIOException question Pin
AntDorr8-Aug-06 3:35
AntDorr8-Aug-06 3:35 
GeneralRe: IOException question Pin
Guffa8-Aug-06 7:29
Guffa8-Aug-06 7:29 
GeneralRe: IOException question Pin
AntDorr8-Aug-06 8:47
AntDorr8-Aug-06 8:47 
GeneralRe: IOException question Pin
Stephen McGuire8-Aug-06 12:20
Stephen McGuire8-Aug-06 12:20 
GeneralRe: IOException question Pin
AntDorr8-Aug-06 22:43
AntDorr8-Aug-06 22:43 
AnswerRe: IOException question Pin
Stephen McGuire8-Aug-06 7:34
Stephen McGuire8-Aug-06 7:34 
AnswerRe: IOException question Pin
Dave Kreskowiak8-Aug-06 16:22
mveDave Kreskowiak8-Aug-06 16:22 
GeneralRe: IOException question Pin
Mekong River8-Aug-06 21:50
Mekong River8-Aug-06 21:50 
GeneralRe: IOException question Pin
jonathan159-Aug-06 0:21
jonathan159-Aug-06 0:21 
GeneralRe: IOException question Pin
Dave Kreskowiak9-Aug-06 1:20
mveDave Kreskowiak9-Aug-06 1:20 

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.