_ Partial Class GeoCodes Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) If disposing AndAlso components IsNot Nothing Then components.Dispose() End If MyBase.Dispose(disposing) 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. _ Private Sub InitializeComponent() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(GeoCodes)) Me.Run = New System.Windows.Forms.Button Me.txtFileName = New System.Windows.Forms.TextBox Me.Label1 = New System.Windows.Forms.Label Me.Label2 = New System.Windows.Forms.Label Me.Label3 = New System.Windows.Forms.Label Me.SuspendLayout() ' 'Run ' Me.Run.Location = New System.Drawing.Point(682, 245) Me.Run.Name = "Run" Me.Run.Size = New System.Drawing.Size(75, 23) Me.Run.TabIndex = 0 Me.Run.Text = "Run" Me.Run.UseVisualStyleBackColor = True ' 'txtFileName ' Me.txtFileName.Location = New System.Drawing.Point(355, 248) Me.txtFileName.Name = "txtFileName" Me.txtFileName.Size = New System.Drawing.Size(269, 20) Me.txtFileName.TabIndex = 1 ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(164, 255) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(166, 13) Me.Label1.TabIndex = 2 Me.Label1.Text = "Enter Legacy Gedcom File Name:" ' 'Label2 ' Me.Label2.AutoSize = True Me.Label2.Location = New System.Drawing.Point(10, 8) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(774, 221) Me.Label2.TabIndex = 3 Me.Label2.Text = resources.GetString("Label2.Text") ' 'Label3 ' Me.Label3.AutoSize = True Me.Label3.Location = New System.Drawing.Point(12, 255) Me.Label3.Name = "Label3" Me.Label3.Size = New System.Drawing.Size(107, 39) Me.Label3.TabIndex = 4 Me.Label3.Text = "Created August 2007" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Robert Reynolds" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Barry Reynolds" ' 'GeoCodes ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(792, 298) Me.Controls.Add(Me.Label3) Me.Controls.Add(Me.Label2) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.txtFileName) Me.Controls.Add(Me.Run) Me.Name = "GeoCodes" Me.Text = "Read Legacy Gedcom and Create SQL Commands For Latitude and Longitude" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents Run As System.Windows.Forms.Button Friend WithEvents txtFileName As System.Windows.Forms.TextBox Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents Label2 As System.Windows.Forms.Label Friend WithEvents Label3 As System.Windows.Forms.Label End Class