Click here to Skip to main content
15,910,661 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionHow would I do this? Pin
AcadianMan25-Feb-05 8:18
AcadianMan25-Feb-05 8:18 
AnswerRe: How would I do this? Pin
DougW4825-Feb-05 14:09
DougW4825-Feb-05 14:09 
AnswerRe: How would I do this? Pin
Tom John26-Feb-05 4:59
Tom John26-Feb-05 4:59 
GeneralRe: How would I do this? Pin
AcadianMan26-Feb-05 6:35
AcadianMan26-Feb-05 6:35 
GeneralDetermine the no of ports Pin
Mahesh167925-Feb-05 2:18
Mahesh167925-Feb-05 2:18 
GeneralRe: Determine the no of ports Pin
Dave Kreskowiak25-Feb-05 3:39
mveDave Kreskowiak25-Feb-05 3:39 
GeneralEvent Handler for simple control Pin
peterchen25-Feb-05 1:34
peterchen25-Feb-05 1:34 
GeneralRe: Event Handler for simple control Pin
Dave Kreskowiak25-Feb-05 3:05
mveDave Kreskowiak25-Feb-05 3:05 
Declare the control using the WithEvents modifier, then write a sub that Handles the exposed event.
Snatched from an MSDN example:
Dim WithEvents EClass As New EventClass() ' Declare a WithEvents variable.
 
' Declare an event handler that handles multiple events.
Sub EClass_EventHandler() Handles Eclass.XEvent
   MsgBox("Received Event.")
End Sub
 
Class EventClass
   Public Event XEvent()
 
   Sub RaiseEvents() 'Raises two events handled by EClass_EventHandler.
      RaiseEvent XEvent()
   End Sub
End Class



RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

GeneralRe: Event Handler for simple control Pin
peterchen25-Feb-05 3:24
peterchen25-Feb-05 3:24 
GeneralGetting totals of access DB Pin
stevemwangi25-Feb-05 0:59
stevemwangi25-Feb-05 0:59 
GeneralRe: Getting totals of access DB Pin
Dave Kreskowiak25-Feb-05 2:51
mveDave Kreskowiak25-Feb-05 2:51 
GeneralCreate Excel in VB.NET Pin
thanh_bkhn24-Feb-05 21:59
professionalthanh_bkhn24-Feb-05 21:59 
GeneralRe: Create Excel in VB.NET Pin
Dave Kreskowiak25-Feb-05 4:56
mveDave Kreskowiak25-Feb-05 4:56 
GeneralRe: Create Excel in VB.NET Pin
thanh_bkhn25-Feb-05 15:39
professionalthanh_bkhn25-Feb-05 15:39 
GeneralStart Your Application Automaticly Pin
NathanJonker24-Feb-05 20:18
NathanJonker24-Feb-05 20:18 
GeneralRe: Start Your Application Automaticly Pin
Colin Angus Mackay24-Feb-05 23:01
Colin Angus Mackay24-Feb-05 23:01 
GeneralRe: Start Your Application Automaticly Pin
NathanJonker25-Feb-05 2:55
NathanJonker25-Feb-05 2:55 
GeneralRe: Start Your Application Automaticly Pin
Dave Kreskowiak25-Feb-05 0:49
mveDave Kreskowiak25-Feb-05 0:49 
GeneralRe: Start Your Application Automaticly Pin
NathanJonker25-Feb-05 3:02
NathanJonker25-Feb-05 3:02 
GeneralRe: Start Your Application Automaticly Pin
Dave Kreskowiak25-Feb-05 4:21
mveDave Kreskowiak25-Feb-05 4:21 
GeneralDataGrid Display Question Pin
satcomengineer24-Feb-05 16:15
satcomengineer24-Feb-05 16:15 
GeneralRe: DataGrid Display Question Pin
Dave Kreskowiak25-Feb-05 1:04
mveDave Kreskowiak25-Feb-05 1:04 
GeneralRe: DataGrid Display Question Pin
satcomengineer25-Feb-05 2:14
satcomengineer25-Feb-05 2:14 
GeneralRe: DataGrid Display Question Pin
Avarona25-Feb-05 1:05
Avarona25-Feb-05 1:05 
GeneralFrom text to time Pin
numbrel24-Feb-05 15:24
numbrel24-Feb-05 15:24 

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.