VERSION 4.00 Begin VB.Form Form1 BackColor = &H00FFFFFF& Caption = " Problem of the Eight Queens" ClientHeight = 7650 ClientLeft = 1875 ClientTop = 1395 ClientWidth = 11280 ForeColor = &H00FF0000& Height = 8130 Left = 1815 LinkTopic = "Form1" ScaleHeight = 7650 ScaleWidth = 11280 Top = 975 Width = 11400 Begin VB.CommandButton Command2 Caption = "Start" Height = 375 Left = 240 TabIndex = 6 Top = 120 Width = 975 End Begin VB.CommandButton Command1 Caption = "Display" Height = 375 Left = 5160 TabIndex = 5 Top = 120 Width = 855 End Begin VB.TextBox Text3 Height = 375 Left = 6120 TabIndex = 4 Text = "1" Top = 120 Width = 495 End Begin VB.TextBox Text2 Height = 375 Left = 4200 TabIndex = 3 Top = 120 Width = 495 End Begin VB.TextBox Text1 Height = 375 Left = 2400 TabIndex = 1 Text = "8" Top = 120 Width = 495 End Begin VB.Label Label2 Caption = "Solutions" BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} Name = "MS Sans Serif" Size = 9.75 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 375 Left = 3240 TabIndex = 2 Top = 120 Width = 855 End Begin VB.Label Label1 Caption = "Order" BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} Name = "MS Sans Serif" Size = 9.75 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 375 Left = 1560 TabIndex = 0 Top = 120 Width = 615 End End Attribute VB_Name = "Form1" Attribute VB_Creatable = False Attribute VB_Exposed = False Private Sub Command1_Click() Call Draw End Sub Private Sub Command2_Click() Call Exec_Queens End Sub