/Source Code/PowerSong/Categories/frmProblemSongs.Designer.vb
Visual Basic | 139 lines | 105 code | 5 blank | 29 comment | 0 complexity | cebf1abb4013dda1cef696c0705b5e82 MD5 | raw file
1<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _ 2Partial Class frmProblemSongs 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.lblWarningMessage = New System.Windows.Forms.Label 26 Me.btnViewSongs = New System.Windows.Forms.Button 27 Me.cboCategories = New System.Windows.Forms.ComboBox 28 Me.optReassign = New System.Windows.Forms.RadioButton 29 Me.optDelete = New System.Windows.Forms.RadioButton 30 Me.optNothing = New System.Windows.Forms.RadioButton 31 Me.btnOK = New System.Windows.Forms.Button 32 Me.SuspendLayout() 33 ' 34 'lblWarningMessage 35 ' 36 Me.lblWarningMessage.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ 37 Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) 38 Me.lblWarningMessage.Location = New System.Drawing.Point(12, 9) 39 Me.lblWarningMessage.Name = "lblWarningMessage" 40 Me.lblWarningMessage.Size = New System.Drawing.Size(432, 41) 41 Me.lblWarningMessage.TabIndex = 0 42 Me.lblWarningMessage.Text = "Warning: Category '{0}' contains one or more songs that depend exclusively on its" & _ 43 " existence. Please decide what you would like to do from the options below:" 44 ' 45 'btnViewSongs 46 ' 47 Me.btnViewSongs.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles) 48 Me.btnViewSongs.Location = New System.Drawing.Point(12, 144) 49 Me.btnViewSongs.Name = "btnViewSongs" 50 Me.btnViewSongs.Size = New System.Drawing.Size(90, 23) 51 Me.btnViewSongs.TabIndex = 4 52 Me.btnViewSongs.Text = "&View Songs..." 53 ' 54 'cboCategories 55 ' 56 Me.cboCategories.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ 57 Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) 58 Me.cboCategories.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList 59 Me.cboCategories.Enabled = False 60 Me.cboCategories.FormattingEnabled = True 61 Me.cboCategories.Location = New System.Drawing.Point(245, 98) 62 Me.cboCategories.Name = "cboCategories" 63 Me.cboCategories.Size = New System.Drawing.Size(199, 21) 64 Me.cboCategories.TabIndex = 5 65 ' 66 'optReassign 67 ' 68 Me.optReassign.AutoSize = True 69 Me.optReassign.Location = New System.Drawing.Point(12, 99) 70 Me.optReassign.Name = "optReassign" 71 Me.optReassign.Size = New System.Drawing.Size(227, 17) 72 Me.optReassign.TabIndex = 6 73 Me.optReassign.Text = "Reassign the songs to a different category:" 74 Me.optReassign.UseVisualStyleBackColor = True 75 ' 76 'optDelete 77 ' 78 Me.optDelete.AutoSize = True 79 Me.optDelete.Location = New System.Drawing.Point(12, 76) 80 Me.optDelete.Name = "optDelete" 81 Me.optDelete.Size = New System.Drawing.Size(105, 17) 82 Me.optDelete.TabIndex = 7 83 Me.optDelete.Text = "Delete the songs" 84 Me.optDelete.UseVisualStyleBackColor = True 85 ' 86 'optNothing 87 ' 88 Me.optNothing.AutoSize = True 89 Me.optNothing.Checked = True 90 Me.optNothing.Location = New System.Drawing.Point(12, 53) 91 Me.optNothing.Name = "optNothing" 92 Me.optNothing.Size = New System.Drawing.Size(180, 17) 93 Me.optNothing.TabIndex = 8 94 Me.optNothing.TabStop = True 95 Me.optNothing.Text = "Do nothing, cancel the operation" 96 Me.optNothing.UseVisualStyleBackColor = True 97 ' 98 'btnOK 99 ' 100 Me.btnOK.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) 101 Me.btnOK.Location = New System.Drawing.Point(384, 144) 102 Me.btnOK.Name = "btnOK" 103 Me.btnOK.Size = New System.Drawing.Size(60, 23) 104 Me.btnOK.TabIndex = 9 105 Me.btnOK.Text = "&OK" 106 ' 107 'frmProblemSongs 108 ' 109 Me.AcceptButton = Me.btnOK 110 Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) 111 Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font 112 Me.ClientSize = New System.Drawing.Size(456, 179) 113 Me.Controls.Add(Me.btnOK) 114 Me.Controls.Add(Me.optNothing) 115 Me.Controls.Add(Me.optDelete) 116 Me.Controls.Add(Me.optReassign) 117 Me.Controls.Add(Me.cboCategories) 118 Me.Controls.Add(Me.btnViewSongs) 119 Me.Controls.Add(Me.lblWarningMessage) 120 Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog 121 Me.MaximizeBox = False 122 Me.MinimizeBox = False 123 Me.Name = "frmProblemSongs" 124 Me.ShowInTaskbar = False 125 Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent 126 Me.Text = "Remove Category" 127 Me.ResumeLayout(False) 128 Me.PerformLayout() 129 130 End Sub 131 Friend WithEvents lblWarningMessage As System.Windows.Forms.Label 132 Friend WithEvents btnViewSongs As System.Windows.Forms.Button 133 Friend WithEvents cboCategories As System.Windows.Forms.ComboBox 134 Friend WithEvents optReassign As System.Windows.Forms.RadioButton 135 Friend WithEvents optDelete As System.Windows.Forms.RadioButton 136 Friend WithEvents optNothing As System.Windows.Forms.RadioButton 137 Friend WithEvents btnOK As System.Windows.Forms.Button 138 139End Class