home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{48E59290-9880-11CF-9754-00AA00C00908}#1.0#0"; "MSINET.OCX"
- Begin VB.Form Form1
- Caption = "Want.rsd Nrequest.rqst"
- ClientHeight = 5310
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 7380
- LinkTopic = "Form1"
- ScaleHeight = 5310
- ScaleWidth = 7380
- StartUpPosition = 3 'Windows Default
- Begin InetCtlsObjects.Inet Inet
- Left = 6720
- Top = 0
- _ExtentX = 1005
- _ExtentY = 1005
- _Version = 393216
- URL = "http://"
- End
- Begin VB.CommandButton Command2
- Caption = "Save"
- Height = 375
- Left = 0
- TabIndex = 3
- Top = 4920
- Width = 7335
- End
- Begin VB.CommandButton Command1
- Caption = "Get"
- Height = 375
- Left = 0
- TabIndex = 2
- Top = 4560
- Width = 7335
- End
- Begin VB.TextBox Text2
- Height = 4575
- Left = 3720
- MultiLine = -1 'True
- ScrollBars = 3 'Both
- TabIndex = 1
- Top = 0
- Width = 3615
- End
- Begin VB.TextBox Text1
- Height = 4575
- Left = 0
- MultiLine = -1 'True
- ScrollBars = 3 'Both
- TabIndex = 0
- Top = 0
- Width = 3615
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- Text1.Text = Inet.OpenURL("www.jemisp.com/visualcode/want.rsd", icString)
- Text2.Text = Inet.OpenURL("www.jemisp.com/visualcode/nrequest.rqst", icString)
- End Sub
- Private Sub Command2_Click()
- Open "C:\tmp1.trsh" For Output As #1
- Print #1, Text1.Text
- Close #1
- Open "C:\tmp2.trsh" For Output As #1
- Print #1, Text2.Text
- Close #1
- PutFile
- End Sub
- Private Sub Form_Load()
- Text1.Text = Inet.OpenURL("www.jemisp.com/visualcode/want.rsd", icString)
- Text2.Text = Inet.OpenURL("www.jemisp.com/visualcode/nrequest.rqst", icString)
- End Sub
-