Click here to Skip to main content
15,920,513 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: CheckBox list: want to only allow single select Pin
cullyk7-Sep-06 3:50
cullyk7-Sep-06 3:50 
GeneralRe: CheckBox list: want to only allow single select Pin
cullyk7-Sep-06 22:02
cullyk7-Sep-06 22:02 
QuestionSaving date in sql database using windows form (vb.net) Pin
Nikhil Bandekar6-Sep-06 19:22
Nikhil Bandekar6-Sep-06 19:22 
QuestionDatagridview Pin
Jodd6-Sep-06 18:33
Jodd6-Sep-06 18:33 
AnswerRe: Datagridview Pin
abhi_n_ind7-Sep-06 3:24
abhi_n_ind7-Sep-06 3:24 
GeneralRe: Datagridview Pin
Jodd7-Sep-06 7:23
Jodd7-Sep-06 7:23 
QuestionHow to trap usercontrol click event in aspx page Pin
Nathan Buckley6-Sep-06 16:45
Nathan Buckley6-Sep-06 16:45 
AnswerRe: How to trap usercontrol click event in aspx page Pin
Rana Muhammad Javed Khan6-Sep-06 20:42
Rana Muhammad Javed Khan6-Sep-06 20:42 
You will have declare an event and raise it in the event which you want to capture e.g. if you have a button in your user control then you capture its click event as:

'Declare it in Declaration Section
Public Event MyButtonClicked()

'In the click event of button you will have to write this:

Private Sub cmdTest_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdTest.Click

RaiseEvent MyButtonClicked()

End Sub

MyButtonClicked() event will be available in aspx form and you can handle it.

hope you will get it if you face any problem let me know.

take care

Javed
QuestionConvert Long to Binary Representation Pin
Loay Al Lusi6-Sep-06 16:23
Loay Al Lusi6-Sep-06 16:23 
AnswerRe: Convert Long to Binary Representation Pin
Dave Kreskowiak7-Sep-06 5:22
mveDave Kreskowiak7-Sep-06 5:22 
QuestionAdd Control during runtime Pin
bamnet6-Sep-06 16:11
bamnet6-Sep-06 16:11 
AnswerRe: Add Control during runtime Pin
Dave Sexton7-Sep-06 0:54
Dave Sexton7-Sep-06 0:54 
GeneralRe: Add Control during runtime Pin
bamnet7-Sep-06 4:11
bamnet7-Sep-06 4:11 
GeneralRe: Add Control during runtime Pin
Dave Kreskowiak7-Sep-06 5:13
mveDave Kreskowiak7-Sep-06 5:13 
GeneralRe: Add Control during runtime Pin
bamnet7-Sep-06 7:30
bamnet7-Sep-06 7:30 
QuestionRe: Add Control during runtime Pin
bamnet7-Sep-06 16:19
bamnet7-Sep-06 16:19 
AnswerRe: Add Control during runtime Pin
Dave Sexton7-Sep-06 22:07
Dave Sexton7-Sep-06 22:07 
QuestionHow do I return only the columns I'm interested in? Pin
Quecumber2566-Sep-06 10:21
Quecumber2566-Sep-06 10:21 
Questionneed some help with printing in VB.net Pin
olekrh6-Sep-06 7:18
olekrh6-Sep-06 7:18 
AnswerRe: need some help with printing in VB.net Pin
Stephen McGuire6-Sep-06 8:49
Stephen McGuire6-Sep-06 8:49 
QuestionDelete Executable Pin
_mubashir6-Sep-06 5:23
_mubashir6-Sep-06 5:23 
AnswerRe: Delete Executable Pin
Dave Kreskowiak6-Sep-06 6:52
mveDave Kreskowiak6-Sep-06 6:52 
GeneralRe: Delete Executable Pin
Ray Cassick6-Sep-06 11:30
Ray Cassick6-Sep-06 11:30 
GeneralRe: Delete Executable Pin
Dave Kreskowiak7-Sep-06 3:46
mveDave Kreskowiak7-Sep-06 3:46 
QuestionConsole application with forms - how can I show forms and keep the console application running? Pin
EnglishRob6-Sep-06 4:55
EnglishRob6-Sep-06 4:55 

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.