-
Notifications
You must be signed in to change notification settings - Fork 0
/
Browser.Designer.vb
149 lines (144 loc) · 5.79 KB
/
Browser.Designer.vb
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Browser
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Browser))
Me.urlfield = New System.Windows.Forms.TextBox()
Me.GoButton = New System.Windows.Forms.Button()
Me.WebBrowser1 = New System.Windows.Forms.WebBrowser()
Me.backbutton = New System.Windows.Forms.Button()
Me.refreshbutton = New System.Windows.Forms.Button()
Me.Forwordbutton = New System.Windows.Forms.Button()
Me.logout = New System.Windows.Forms.Button()
Me.exitbutton = New System.Windows.Forms.Button()
Me.menubutton = New System.Windows.Forms.Button()
Me.SuspendLayout()
'
'urlfield
'
Me.urlfield.Location = New System.Drawing.Point(22, 3)
Me.urlfield.Name = "urlfield"
Me.urlfield.Size = New System.Drawing.Size(1285, 22)
Me.urlfield.TabIndex = 0
'
'GoButton
'
Me.GoButton.Location = New System.Drawing.Point(1313, 0)
Me.GoButton.Name = "GoButton"
Me.GoButton.Size = New System.Drawing.Size(131, 25)
Me.GoButton.TabIndex = 1
Me.GoButton.Text = "Go"
Me.GoButton.UseVisualStyleBackColor = True
'
'WebBrowser1
'
Me.WebBrowser1.Location = New System.Drawing.Point(1, 75)
Me.WebBrowser1.MinimumSize = New System.Drawing.Size(20, 20)
Me.WebBrowser1.Name = "WebBrowser1"
Me.WebBrowser1.Size = New System.Drawing.Size(1457, 754)
Me.WebBrowser1.TabIndex = 2
Me.WebBrowser1.Url = New System.Uri("https://google.com", System.UriKind.Absolute)
'
'backbutton
'
Me.backbutton.Location = New System.Drawing.Point(22, 30)
Me.backbutton.Name = "backbutton"
Me.backbutton.Size = New System.Drawing.Size(219, 40)
Me.backbutton.TabIndex = 3
Me.backbutton.Text = "Back"
Me.backbutton.UseVisualStyleBackColor = True
'
'refreshbutton
'
Me.refreshbutton.Location = New System.Drawing.Point(256, 31)
Me.refreshbutton.Name = "refreshbutton"
Me.refreshbutton.Size = New System.Drawing.Size(199, 39)
Me.refreshbutton.TabIndex = 4
Me.refreshbutton.Text = "Refresh"
Me.refreshbutton.UseVisualStyleBackColor = True
'
'Forwordbutton
'
Me.Forwordbutton.Location = New System.Drawing.Point(481, 30)
Me.Forwordbutton.Name = "Forwordbutton"
Me.Forwordbutton.Size = New System.Drawing.Size(206, 40)
Me.Forwordbutton.TabIndex = 5
Me.Forwordbutton.Text = "Forword"
Me.Forwordbutton.UseVisualStyleBackColor = True
'
'logout
'
Me.logout.Location = New System.Drawing.Point(937, 31)
Me.logout.Name = "logout"
Me.logout.Size = New System.Drawing.Size(219, 40)
Me.logout.TabIndex = 6
Me.logout.Text = "LogOut"
Me.logout.UseVisualStyleBackColor = True
'
'exitbutton
'
Me.exitbutton.Location = New System.Drawing.Point(1178, 30)
Me.exitbutton.Name = "exitbutton"
Me.exitbutton.Size = New System.Drawing.Size(266, 39)
Me.exitbutton.TabIndex = 7
Me.exitbutton.Text = "Exit"
Me.exitbutton.UseVisualStyleBackColor = True
'
'menubutton
'
Me.menubutton.Location = New System.Drawing.Point(706, 29)
Me.menubutton.Name = "menubutton"
Me.menubutton.Size = New System.Drawing.Size(213, 39)
Me.menubutton.TabIndex = 8
Me.menubutton.Text = "Main Menu"
Me.menubutton.UseVisualStyleBackColor = True
'
'Browser
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(8.0!, 16.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.BackgroundImage = CType(resources.GetObject("$this.BackgroundImage"), System.Drawing.Image)
Me.ClientSize = New System.Drawing.Size(1456, 831)
Me.Controls.Add(Me.menubutton)
Me.Controls.Add(Me.exitbutton)
Me.Controls.Add(Me.logout)
Me.Controls.Add(Me.Forwordbutton)
Me.Controls.Add(Me.refreshbutton)
Me.Controls.Add(Me.backbutton)
Me.Controls.Add(Me.WebBrowser1)
Me.Controls.Add(Me.GoButton)
Me.Controls.Add(Me.urlfield)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow
Me.MaximizeBox = False
Me.Name = "Browser"
Me.Text = "Web Grabber | Browser"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents urlfield As TextBox
Friend WithEvents GoButton As Button
Friend WithEvents WebBrowser1 As WebBrowser
Friend WithEvents backbutton As Button
Friend WithEvents refreshbutton As Button
Friend WithEvents Forwordbutton As Button
Friend WithEvents logout As Button
Friend WithEvents exitbutton As Button
Friend WithEvents menubutton As Button
End Class