|
-
May 14th, 2003, 07:07 PM
#17
Thread Starter
Registered User
Originally posted by JasonLpz
not to discorage anyone but this code is pure simplcity . If you want to make one just use the web browser template that comes with vb then add 1 button and 1 text box :
it would be something like this
VB Code:
Public OnOff As Integer
Private Sub Command1_Click()
If OnOff = 0 Then
Command1.Caption = "Started"
Timer1.Enabled = True
OnOff = 1
Else
Command1.Caption = "Stoped"
Timer1.Enabled = False
OnOff = 0
End If
Timer1.Interval = Text1 * 1000
End Sub
Private Sub Form_Load()
OnOff = 0
Timer1.Enabled = False
WebBrowser1.GoHome
End Sub
Private Sub Timer1_Timer()
WebBrowser1.Refresh
End Sub
Not trying to mean anything offensive ok.
no no i don't think of that at all we are all here to learn and share knowledge right and that's almost how my code is with a few changes however for some reason the zip with all the code did upload and i am not at the computer i did the app on so i will re-re-post it tomorrow. no offense taken
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|