Re: vb.net 2010 compatibility - WeOnlyDo Discussion board

Re: vb.net 2010 compatibility (General questions)

by wodDamir, Thursday, December 03, 2009, 11:34 (5468 days ago) @ Klinzter

Klintzer,

I just tried the following:

[code] Dim WithEvents http1 As New wodHttpDLXComLib.wodHttpDLXCom
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
http1.Get( http://www.weonlydo.com )
End Sub

Private Sub http1_Disconnected(ByVal ErrorCode As Integer, ByVal ErrorText As String) Handles http1.Disconnected
Debug.Print( Disconnected )
End Sub

Private Sub http1_StateChange(ByVal OldState As wodHttpDLXComLib.HttpStates) Handles http1.StateChange
Debug.Print( State changed from & http1.StateString(OldState) & TO & http1.StateString(http1.State))
End Sub[/code]

Both events were triggered correctly. Can you verify that?

Regards,
Damba


Complete thread: