Click here to Skip to main content
15,886,963 members
Home / Discussions / Visual Basic
   

Visual Basic

 
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 
Questionhow can i give access permission to Active directory user in vb.net Pin
koolprasad200310-May-07 21:14
professionalkoolprasad200310-May-07 21:14 
AnswerRe: how can i give access permission to Active directory user in vb.net Pin
Dave Kreskowiak11-May-07 3:21
mveDave Kreskowiak11-May-07 3:21 
Questionnewbie: class enum query Pin
aitch4210-May-07 21:09
aitch4210-May-07 21:09 
AnswerRe: newbie: class enum query Pin
Christian Graus10-May-07 21:37
protectorChristian Graus10-May-07 21:37 
GeneralRe: newbie: class enum query Pin
aitch4210-May-07 22:25
aitch4210-May-07 22:25 
GeneralRe: newbie: class enum query Pin
Christian Graus11-May-07 0:59
protectorChristian Graus11-May-07 0:59 
GeneralRe: newbie: class enum query Pin
aitch4211-May-07 6:29
aitch4211-May-07 6:29 
Questiondeployment process in vb.net Pin
Sonia Gupta10-May-07 20:41
Sonia Gupta10-May-07 20:41 
AnswerRe: deployment process in vb.net Pin
Christian Graus10-May-07 20:45
protectorChristian Graus10-May-07 20:45 
GeneralRe: deployment process in vb.net Pin
Sonia Gupta10-May-07 20:53
Sonia Gupta10-May-07 20:53 
GeneralRe: deployment process in vb.net Pin
Christian Graus10-May-07 20:58
protectorChristian Graus10-May-07 20:58 
QuestionRe: deployment process in vb.net Pin
Sonia Gupta10-May-07 21:12
Sonia Gupta10-May-07 21:12 
AnswerRe: deployment process in vb.net Pin
Christian Graus10-May-07 21:40
protectorChristian Graus10-May-07 21:40 
AnswerRe: deployment process in vb.net Pin
P P Vilsad11-May-07 9:32
P P Vilsad11-May-07 9:32 
QuestionURGENT REGEX Pin
ant1xxx10-May-07 19:52
ant1xxx10-May-07 19:52 

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.