Hai,
I'm read temperature data using MSComm..
The temperature was successfully display on vb6..but how can I update/automatically refresh the temperature on web according to current temperature?
could you kindly please help me over here? thks!
Below is my coding:
Private Sub Form_Load()
MSComm1.PortOpen = True
MSComm1.Output = "temp" + Chr$(13)
'waits for 5 char to be recieved
Do
dummy = DoEvents()
Loop Until MSComm1.InBufferCount >= 20
'print value in text box
Text1.Text = MSComm1.Input
End Sub