home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmMain
- BorderStyle = 3 'Fixed Double
- Caption = "Main form"
- ClientHeight = 1905
- ClientLeft = 3945
- ClientTop = 5355
- ClientWidth = 3495
- Height = 2310
- Left = 3885
- LinkTopic = "Form2"
- ScaleHeight = 1905
- ScaleWidth = 3495
- Top = 5010
- Width = 3615
- Begin CommandButton butQuit
- Caption = "&Quit demo"
- Height = 630
- Left = 255
- TabIndex = 1
- Top = 975
- Width = 2985
- End
- Begin CommandButton butShow
- Caption = "&Show tabbed dialog"
- Height = 630
- Left = 255
- TabIndex = 0
- Top = 285
- Width = 2985
- End
- Option Explicit
- Sub butQuit_Click ()
- End
- End Sub
- Sub butShow_Click ()
- ' show dialog modally
- frmConfig.Show 1
- End Sub
- Sub Form_Load ()
- ' center form
- Me.Move screen.Width \ 2 - Me.Width \ 2, screen.Height \ 2 - Me.Height \ 2
- End Sub
-