Hi,
I use the following code to retrieve data sent after calling a jsp with Inet.Execute()
Private Sub Inet1_StateChanged(ByVal State As Integer)
Select Case State
Case icResponseCompleted ' 12
s1 = ""
S2 = ""
Do
s1 = Inet1.GetChunk(512, icString)
S2 = S2 & s1
Loop Until s1 = ""
dataRetrieved = dataRetrieved & S2
The problem is that I don't retrieve anything when I start my program with WIN98, whereas all works well with WIN2K. Does anyone got the same problem or have an idea ?
I use the following code to retrieve data sent after calling a jsp with Inet.Execute()
Private Sub Inet1_StateChanged(ByVal State As Integer)
Select Case State
Case icResponseCompleted ' 12
s1 = ""
S2 = ""
Do
s1 = Inet1.GetChunk(512, icString)
S2 = S2 & s1
Loop Until s1 = ""
dataRetrieved = dataRetrieved & S2
The problem is that I don't retrieve anything when I start my program with WIN98, whereas all works well with WIN2K. Does anyone got the same problem or have an idea ?