Click here to Skip to main content
16,008,490 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How to Check Whether Client System has internet Connection or not Pin
Owner drawn30-Jan-06 18:16
Owner drawn30-Jan-06 18:16 
GeneralRe: How to Check Whether Client System has internet Connection or not Pin
LV Prasad Y30-Jan-06 23:32
LV Prasad Y30-Jan-06 23:32 
GeneralRe: How to Check Whether Client System has internet Connection or not Pin
Owner drawn30-Jan-06 23:34
Owner drawn30-Jan-06 23:34 
Questioniexplore.exe - Application Error Pin
Julianne_juju30-Jan-06 15:39
Julianne_juju30-Jan-06 15:39 
AnswerRe: iexplore.exe - Application Error Pin
Joshua Quick30-Jan-06 15:48
Joshua Quick30-Jan-06 15:48 
GeneralRe: iexplore.exe - Application Error Pin
Julianne_juju31-Jan-06 7:51
Julianne_juju31-Jan-06 7:51 
QuestionWithEvent / Raise Event Pin
Onderack30-Jan-06 9:47
Onderack30-Jan-06 9:47 
AnswerRe: WithEvent / Raise Event Pin
kasik30-Jan-06 10:33
kasik30-Jan-06 10:33 
The method Test_DLL_Test() will never be fired, because you have created two objects of type ClassTest.Class1 and calling the Test() method of the one that isn't actually hooked up to anything. Try the following:
Public WithEvents clsTest as New ClassTest.Class1

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    clsTest.Test()
End Sub

Public Sub clsTest_Test() Handles clsTest.TestRaiseEvent
    MsgBox("This is a test of the Raise Event Function....")
End Sub
Hope that helps Smile | :)

Cheers,
Will H
GeneralRe: WithEvent / Raise Event Pin
Onderack31-Jan-06 3:08
Onderack31-Jan-06 3:08 
GeneralRe: WithEvent / Raise Event Pin
Dave Kreskowiak31-Jan-06 4:09
mveDave Kreskowiak31-Jan-06 4:09 
QuestionNumber of Twips per character. Pin
Quecumber25630-Jan-06 8:21
Quecumber25630-Jan-06 8:21 
AnswerRe: Number of Twips per character. Pin
Joshua Quick30-Jan-06 11:21
Joshua Quick30-Jan-06 11:21 
GeneralRe: Number of Twips per character. Pin
Quecumber2562-Feb-06 8:34
Quecumber2562-Feb-06 8:34 
QuestionBinding DataGrid to ArrayList and show Appendrow with Asterisk? Pin
Hiske Bekkering30-Jan-06 8:17
professionalHiske Bekkering30-Jan-06 8:17 
QuestionNeed help with simple class Pin
shapper30-Jan-06 7:22
shapper30-Jan-06 7:22 
AnswerRe: Need help with simple class Pin
Colin Angus Mackay30-Jan-06 8:01
Colin Angus Mackay30-Jan-06 8:01 
AnswerRe: Need help with simple class Pin
[Marc]30-Jan-06 9:15
[Marc]30-Jan-06 9:15 
AnswerRe: Need help with simple class Pin
Christian Graus30-Jan-06 16:22
protectorChristian Graus30-Jan-06 16:22 
QuestionioIs it new in Visual Studio 2005 VB.net? Pin
JUNEYT30-Jan-06 7:04
JUNEYT30-Jan-06 7:04 
AnswerRe: ioIs it new in Visual Studio 2005 VB.net? Pin
Dave Kreskowiak30-Jan-06 13:41
mveDave Kreskowiak30-Jan-06 13:41 
GeneralRe: ioIs it new in Visual Studio 2005 VB.net? Pin
JUNEYT30-Jan-06 14:26
JUNEYT30-Jan-06 14:26 
GeneralRe: ioIs it new in Visual Studio 2005 VB.net? Pin
Dave Kreskowiak30-Jan-06 14:41
mveDave Kreskowiak30-Jan-06 14:41 
QuestionDisplaying a second form in the same window as the main form in VB2005 Pin
Dean Forant30-Jan-06 6:35
Dean Forant30-Jan-06 6:35 
AnswerRe: Displaying a second form in the same window as the main form in VB2005 Pin
Dave Kreskowiak30-Jan-06 13:36
mveDave Kreskowiak30-Jan-06 13:36 
QuestionGetUserObjectInformation Pin
jasonbullard30-Jan-06 5:28
jasonbullard30-Jan-06 5:28 

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.