Click here to Skip to main content
15,915,603 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: drag and drop problem... vb .net Pin
daxfrost11-May-07 1:28
daxfrost11-May-07 1:28 
GeneralRe: drag and drop problem... vb .net Pin
Sonia Gupta11-May-07 1:31
Sonia Gupta11-May-07 1:31 
GeneralRe: drag and drop problem... vb .net Pin
daxfrost11-May-07 1:40
daxfrost11-May-07 1:40 
GeneralRe: drag and drop problem... vb .net Pin
Sonia Gupta11-May-07 1:50
Sonia Gupta11-May-07 1:50 
GeneralRe: drag and drop problem... vb .net Pin
daxfrost11-May-07 1:57
daxfrost11-May-07 1:57 
GeneralRe: drag and drop problem... vb .net Pin
Sonia Gupta11-May-07 2:04
Sonia Gupta11-May-07 2:04 
GeneralRe: drag and drop problem... vb .net Pin
Christian Graus11-May-07 2:33
protectorChristian Graus11-May-07 2:33 
GeneralRe: drag and drop problem... vb .net Pin
Dave Kreskowiak11-May-07 3:36
mveDave Kreskowiak11-May-07 3:36 
GeneralRe: drag and drop problem... vb .net Pin
daxfrost11-May-07 6:07
daxfrost11-May-07 6:07 
Questionmouse events vb.net 2005 Pin
Sonia Gupta10-May-07 23:34
Sonia Gupta10-May-07 23:34 
AnswerRe: mouse events vb.net 2005 Pin
Christian Graus10-May-07 23:46
protectorChristian Graus10-May-07 23:46 
GeneralRe: mouse events vb.net 2005 Pin
harsh_c11-May-07 0:55
professionalharsh_c11-May-07 0:55 
GeneralRe: mouse events vb.net 2005 Pin
Christian Graus11-May-07 1:55
protectorChristian Graus11-May-07 1:55 
QuestionTalk to an EPP server Pin
shahid_isb8510-May-07 23:21
shahid_isb8510-May-07 23:21 
QuestionVBA-Excel: User Name and eMail Problem [modified] Pin
RichardBerry10-May-07 22:50
RichardBerry10-May-07 22:50 
QuestionUpdate Table gets message "parameter has no default value" Pin
keninfo10-May-07 22:10
keninfo10-May-07 22:10 
AnswerRe: Update Table gets message "parameter has no default value" Pin
Dave Kreskowiak11-May-07 3:31
mveDave Kreskowiak11-May-07 3:31 
GeneralRe: Update Table gets message "parameter has no default value" Pin
keninfo11-May-07 4:43
keninfo11-May-07 4:43 
GeneralRe: Update Table gets message "parameter has no default value" Pin
keninfo11-May-07 5:17
keninfo11-May-07 5:17 
QuestionEvent and Functions Pin
Sonia Gupta10-May-07 21:52
Sonia Gupta10-May-07 21:52 
AnswerRe: Event and Functions Pin
Christian Graus10-May-07 23:32
protectorChristian Graus10-May-07 23:32 
AnswerRe: Event and Functions Pin
GgAben11-May-07 3:11
GgAben11-May-07 3:11 
AnswerRe: Event and Functions Pin
TwoFaced11-May-07 7:51
TwoFaced11-May-07 7:51 
Private sub Form_Load... isn't an event. It's a procedure that handles an event. Any procedure can handle an event as long as it matches the signature of the event. A function returns a value while a procedure does not.

This is how you could define an event.
Public Event SomeEvent(ByVal sender As Object, ByVal e As System.EventArgs)
The signature would be the parameters in the definition. I could also create an event like this.
Public Event AnotherEvent(ByVal someText As String)
In this case the procedure to handle this event would need to accept a string. Any procedure that does so can handle this event. It's good practice to create events that with the .net signature of (sender, e) where sender is an object and 'e' inherits from system.eventargs.
QuestionList assemblies Pin
Sonia Gupta10-May-07 21:16
Sonia Gupta10-May-07 21:16 
AnswerRe: List assemblies Pin
Dave Kreskowiak11-May-07 3:23
mveDave Kreskowiak11-May-07 3:23 

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.