-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinternet.frm
111 lines (110 loc) · 3.41 KB
/
internet.frm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
VERSION 5.00
Object = "{48E59290-9880-11CF-9754-00AA00C00908}#1.0#0"; "MSINET.OCX"
Object = "{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}#1.1#0"; "SHDOCVW.DLL"
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form Form1
BorderStyle = 3 'Fixed Dialog
Caption = "Proxy Ridder"
ClientHeight = 7170
ClientLeft = 45
ClientTop = 330
ClientWidth = 7230
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 7170
ScaleWidth = 7230
ShowInTaskbar = 0 'False
StartUpPosition = 3 'Windows Default
Begin MSComctlLib.ImageList ImageList1
Left = 480
Top = 2880
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 254
ImageHeight = 227
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 1
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "internet.frx":0000
Key = ""
EndProperty
EndProperty
End
Begin VB.CommandButton Command1
Caption = "Open"
Height = 375
Left = 5760
TabIndex = 2
Top = 0
Width = 1455
End
Begin VB.TextBox Text2
Height = 285
Left = 0
TabIndex = 1
Text = "http://"
Top = 0
Width = 5655
End
Begin VB.TextBox Text1
Height = 2055
Left = -120
MultiLine = -1 'True
TabIndex = 0
Top = 4680
Visible = 0 'False
Width = 7095
End
Begin InetCtlsObjects.Inet Inet1
Left = 4680
Top = 600
_ExtentX = 1005
_ExtentY = 1005
_Version = 393216
End
Begin SHDocVwCtl.WebBrowser WebBrowser1
Height = 6375
Left = 0
TabIndex = 3
Top = 360
Width = 7215
ExtentX = 12726
ExtentY = 11245
ViewMode = 0
Offline = 0
Silent = 0
RegisterAsBrowser= 0
RegisterAsDropTarget= 1
AutoArrange = 0 'False
NoClientEdge = 0 'False
AlignLeft = 0 'False
NoWebView = 0 'False
HideFileNames = 0 'False
SingleClick = 0 'False
SingleSelection = 0 'False
NoFolders = 0 'False
Transparent = 0 'False
ViewID = "{0057D0E0-3573-11CF-AE69-08002B2E1262}"
Location = "http:///"
End
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()
Command1.Enabled = False
Text1.Text = Inet1.OpenURL(Text2.Text)
End Sub
Private Sub Text1_Change()
Open App.Path & "\temp.html" For Output As #1
Print #1, Text1.Text
WebBrowser1.Navigate App.Path & "\temp.html"
Close #1
Command1.Enabled = True
End Sub