home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form MainForm
- BorderStyle = 1 'Fixed Single
- Caption = "Desaware Gallimaufry Common Dialog"
- ClientHeight = 1380
- ClientLeft = 1680
- ClientTop = 1830
- ClientWidth = 6135
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1380
- ScaleWidth = 6135
- Begin VB.CommandButton CloseBut
- Caption = "Close"
- Height = 525
- Left = 2440
- TabIndex = 1
- Top = 720
- Width = 1245
- End
- Begin VB.Label Label1
- Caption = $"Main.frx":0000
- Height = 465
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 5940
- End
- Begin VB.Line Line2
- BorderColor = &H80000005&
- X1 = 60
- X2 = 6060
- Y1 = 10
- Y2 = 10
- End
- Begin VB.Line Line1
- BorderColor = &H80000003&
- X1 = 60
- X2 = 6060
- Y1 = 0
- Y2 = 0
- End
- Begin VB.Menu optionmenu
- Caption = "&Options"
- Begin VB.Menu filemenu
- Caption = "&File"
- End
- Begin VB.Menu colormenu
- Caption = "&Color"
- End
- Begin VB.Menu fontmenu
- Caption = "Fon&t"
- End
- Begin VB.Menu printmenu
- Caption = "&Print"
- End
- Begin VB.Menu pagemenu
- Caption = "Page &Setup"
- End
- End
- Begin VB.Menu aboutmenu
- Caption = "&About"
- Begin VB.Menu otherproducts
- Caption = "Other Products"
- End
- Begin VB.Menu menusep
- Caption = "-"
- End
- Begin VB.Menu about
- Caption = "About Gallimaufry..."
- End
- End
- Attribute VB_Name = "MainForm"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- 'Dim WindowsVersion As Integer
- Private Sub about_Click()
- AboutGlmfry.Show vbModal
- End Sub
- Private Sub CloseBut_Click()
- Unload Me
- End Sub
- Private Sub colormenu_Click()
- ColorForm.Show vbModal
- End Sub
- Private Sub filemenu_Click()
- FileOpenSaveForm.Show vbModal
- End Sub
- Private Sub fontmenu_Click()
- FontForm.Show vbModal
- End Sub
- Private Sub Form_Load()
- WindowsVersion = GetWindowsVersion
- ' WindowsVersion = 35
- End Sub
- Private Sub otherproducts_Click()
- sdother.Show vbModal
- End Sub
- Private Sub pagemenu_Click()
- PageSetupForm.Show vbModal
- End Sub
- Private Sub printmenu_Click()
- PrintDlgForm.Show vbModal
- End Sub
-