/Source Code/PowerSong/Export and Import/frmImportProgress.Designer.vb
Visual Basic | 118 lines | 90 code | 5 blank | 23 comment | 1 complexity | eda52c84e96e5646ed9937b6452be19e MD5 | raw file
1<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _ 2Partial Class frmImportProgress 3 Inherits System.Windows.Forms.Form 4 5 'Form overrides dispose to clean up the component list. 6 <System.Diagnostics.DebuggerNonUserCode()> _ 7 Protected Overrides Sub Dispose(ByVal disposing As Boolean) 8 Try 9 If disposing AndAlso components IsNot Nothing Then 10 components.Dispose() 11 End If 12 Finally 13 MyBase.Dispose(disposing) 14 End Try 15 End Sub 16 17 'Required by the Windows Form Designer 18 Private components As System.ComponentModel.IContainer 19 20 'NOTE: The following procedure is required by the Windows Form Designer 21 'It can be modified using the Windows Form Designer. 22 'Do not modify it using the code editor. 23 <System.Diagnostics.DebuggerStepThrough()> _ 24 Private Sub InitializeComponent() 25 Me.OK_Button = New System.Windows.Forms.Button 26 Me.lstImport = New System.Windows.Forms.ListBox 27 Me.Label1 = New System.Windows.Forms.Label 28 Me.txtSelectedItem = New System.Windows.Forms.TextBox 29 Me.lblStatus = New PowerSong.UserInterface.NoticeLabel 30 Me.SuspendLayout() 31 ' 32 'OK_Button 33 ' 34 Me.OK_Button.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) 35 Me.OK_Button.Enabled = False 36 Me.OK_Button.Location = New System.Drawing.Point(567, 345) 37 Me.OK_Button.Name = "OK_Button" 38 Me.OK_Button.Size = New System.Drawing.Size(67, 23) 39 Me.OK_Button.TabIndex = 0 40 Me.OK_Button.Text = "OK" 41 ' 42 'lstImport 43 ' 44 Me.lstImport.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ 45 Or System.Windows.Forms.AnchorStyles.Left) _ 46 Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) 47 Me.lstImport.FormattingEnabled = True 48 Me.lstImport.IntegralHeight = False 49 Me.lstImport.Location = New System.Drawing.Point(12, 41) 50 Me.lstImport.Name = "lstImport" 51 Me.lstImport.ScrollAlwaysVisible = True 52 Me.lstImport.Size = New System.Drawing.Size(622, 220) 53 Me.lstImport.TabIndex = 1 54 ' 55 'Label1 56 ' 57 Me.Label1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles) 58 Me.Label1.AutoSize = True 59 Me.Label1.Location = New System.Drawing.Point(12, 272) 60 Me.Label1.Name = "Label1" 61 Me.Label1.Size = New System.Drawing.Size(161, 13) 62 Me.Label1.TabIndex = 2 63 Me.Label1.Text = "Select an item to view it in detail:" 64 ' 65 'txtSelectedItem 66 ' 67 Me.txtSelectedItem.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _ 68 Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) 69 Me.txtSelectedItem.Location = New System.Drawing.Point(15, 288) 70 Me.txtSelectedItem.Multiline = True 71 Me.txtSelectedItem.Name = "txtSelectedItem" 72 Me.txtSelectedItem.ReadOnly = True 73 Me.txtSelectedItem.ScrollBars = System.Windows.Forms.ScrollBars.Vertical 74 Me.txtSelectedItem.Size = New System.Drawing.Size(619, 51) 75 Me.txtSelectedItem.TabIndex = 4 76 ' 77 'lblStatus 78 ' 79 Me.lblStatus.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ 80 Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) 81 Me.lblStatus.BackColor = System.Drawing.SystemColors.Window 82 Me.lblStatus.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle 83 Me.lblStatus.Icon = PowerSong.UserInterface.NoticeLabel.IconType.Running 84 Me.lblStatus.Location = New System.Drawing.Point(12, 12) 85 Me.lblStatus.Message = "Please wait while the data is imported..." 86 Me.lblStatus.Name = "lblStatus" 87 Me.lblStatus.Size = New System.Drawing.Size(622, 23) 88 Me.lblStatus.TabIndex = 5 89 ' 90 'frmImportProgress 91 ' 92 Me.AcceptButton = Me.OK_Button 93 Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) 94 Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font 95 Me.ClientSize = New System.Drawing.Size(646, 380) 96 Me.Controls.Add(Me.lblStatus) 97 Me.Controls.Add(Me.txtSelectedItem) 98 Me.Controls.Add(Me.Label1) 99 Me.Controls.Add(Me.lstImport) 100 Me.Controls.Add(Me.OK_Button) 101 Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog 102 Me.MaximizeBox = False 103 Me.MinimizeBox = False 104 Me.Name = "frmImportProgress" 105 Me.ShowInTaskbar = False 106 Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent 107 Me.Text = "Import Progress" 108 Me.ResumeLayout(False) 109 Me.PerformLayout() 110 111 End Sub 112 Friend WithEvents OK_Button As System.Windows.Forms.Button 113 Friend WithEvents lstImport As System.Windows.Forms.ListBox 114 Friend WithEvents Label1 As System.Windows.Forms.Label 115 Friend WithEvents txtSelectedItem As System.Windows.Forms.TextBox 116 Friend WithEvents lblStatus As PowerSong.UserInterface.NoticeLabel 117 118End Class