home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX"
- Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
- Begin VB.MDIForm frmFrame
- AutoShowChildren= 0 'False
- BackColor = &H8000000C&
- Caption = "Database"
- ClientHeight = 4530
- ClientLeft = 165
- ClientTop = 735
- ClientWidth = 6345
- LinkTopic = "MDIForm1"
- StartUpPosition = 3 'Windows Default
- Begin MSComctlLib.ImageList ImageList1
- Left = 1320
- Top = 1080
- _ExtentX = 1005
- _ExtentY = 1005
- BackColor = -2147483643
- ImageWidth = 16
- ImageHeight = 16
- MaskColor = 12632256
- _Version = 393216
- BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
- NumListImages = 6
- BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
- Picture = "Frame.frx":0000
- Key = "imgDatabase"
- EndProperty
- BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
- Picture = "Frame.frx":024C
- Key = "imgClosed"
- EndProperty
- BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
- Picture = "Frame.frx":0348
- Key = "imgOpen"
- EndProperty
- BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
- Picture = "Frame.frx":045C
- Key = "imgField"
- EndProperty
- BeginProperty ListImage5 {2C247F27-8591-11D1-B16A-00C0F0283628}
- Picture = "Frame.frx":056E
- Key = "imgProp"
- EndProperty
- BeginProperty ListImage6 {2C247F27-8591-11D1-B16A-00C0F0283628}
- Picture = "Frame.frx":0686
- Key = "imgPropBig"
- EndProperty
- EndProperty
- End
- Begin MSComDlg.CommonDialog CommonDialog1
- Left = 2370
- Top = 1140
- _ExtentX = 847
- _ExtentY = 847
- _Version = 393216
- End
- Begin VB.Menu mnuFile
- Caption = "File"
- Begin VB.Menu mnuFileOpen
- Caption = "Open"
- End
- Begin VB.Menu mnuFileExit
- Caption = "Exit"
- End
- End
- Begin VB.Menu mnuWindow
- Caption = "Window"
- WindowList = -1 'True
- End
- Attribute VB_Name = "frmFrame"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- ' Frame.frm
- ' By Herman Liu
- Option Explicit
- Private Sub MDIForm_Load()
- ' AutoShowChildren has been set to False
- frmFrame.WindowState = 2
- MsgBox "If this is your first visit, please read comment lines in DataBaseApp.BAS" & vbCrLf & _
- "(Delete this message afterward)"
- End Sub
- Private Sub mnuFileOpen_Click()
- DBFilesMDBproc
- End Sub
- Private Sub mnuFileExit_Click()
- End
- End Sub
-