?? mdiform1.frm
字號:
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 MDIForm1
BackColor = &H8000000C&
Caption = "鮮花訂購系統"
ClientHeight = 5715
ClientLeft = 165
ClientTop = 450
ClientWidth = 7185
Icon = "MDIForm1.frx":0000
LinkTopic = "MDIForm1"
Picture = "MDIForm1.frx":08CA
StartUpPosition = 1 '所有者中心
WindowState = 2 'Maximized
Begin MSComDlg.CommonDialog cmdg1
Left = 0
Top = 4920
_ExtentX = 847
_ExtentY = 847
_Version = 393216
End
Begin MSComctlLib.ImageList ImageList1
Left = 0
Top = 7320
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 16
ImageHeight = 16
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 3
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MDIForm1.frx":3383E
Key = ""
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MDIForm1.frx":34118
Key = ""
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MDIForm1.frx":349F2
Key = ""
EndProperty
EndProperty
End
Begin MSComctlLib.Toolbar Toolbar1
Align = 1 'Align Top
Height = 420
Left = 0
TabIndex = 0
Top = 0
Width = 11880
_ExtentX = 20955
_ExtentY = 741
ButtonWidth = 609
ButtonHeight = 582
Appearance = 1
ImageList = "ImageList1"
DisabledImageList= "ImageList1"
HotImageList = "ImageList1"
_Version = 393216
BeginProperty Buttons {66833FE8-8583-11D1-B16A-00C0F0283628}
NumButtons = 3
BeginProperty Button1 {66833FEA-8583-11D1-B16A-00C0F0283628}
Object.ToolTipText = "鮮花信息"
ImageIndex = 1
Style = 5
EndProperty
BeginProperty Button2 {66833FEA-8583-11D1-B16A-00C0F0283628}
Object.ToolTipText = "客戶管理"
ImageIndex = 2
Style = 5
EndProperty
BeginProperty Button3 {66833FEA-8583-11D1-B16A-00C0F0283628}
Object.ToolTipText = "定單查詢"
ImageIndex = 3
Style = 5
EndProperty
EndProperty
End
Begin MSComctlLib.StatusBar StatusBar1
Align = 2 'Align Bottom
Height = 375
Left = 0
TabIndex = 1
Top = 7935
Width = 11880
_ExtentX = 20955
_ExtentY = 661
_Version = 393216
BeginProperty Panels {8E3867A5-8586-11D1-B16A-00C0F0283628}
NumPanels = 5
BeginProperty Panel1 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Object.Width = 4939
MinWidth = 4939
Picture = "MDIForm1.frx":34E44
Text = "鮮花訂購系統"
TextSave = "鮮花訂購系統"
EndProperty
BeginProperty Panel2 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Style = 5
Object.Width = 1411
MinWidth = 1411
TextSave = "17:09"
Object.ToolTipText = "時間"
EndProperty
BeginProperty Panel3 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Style = 1
Enabled = 0 'False
Object.Width = 1058
MinWidth = 1058
TextSave = "CAPS"
EndProperty
BeginProperty Panel4 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Style = 2
Object.Width = 1235
MinWidth = 1235
TextSave = "NUM"
EndProperty
BeginProperty Panel5 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Object.Width = 5292
MinWidth = 5292
Picture = "MDIForm1.frx":35296
Text = "前方軟件設計室"
TextSave = "前方軟件設計室"
EndProperty
EndProperty
End
Begin VB.Menu file
Caption = "主文件(&F)"
Begin VB.Menu flowers
Caption = "鮮花(&X)"
Shortcut = ^F
End
Begin VB.Menu customers
Caption = "顧客(&C)"
Shortcut = ^C
End
End
Begin VB.Menu order
Caption = "定單(&D)"
Begin VB.Menu place
Caption = "定單處理(&P)"
Shortcut = ^P
End
End
Begin VB.Menu exit
Caption = "退出(&E)"
End
Begin VB.Menu xitong
Caption = "系統(&X)"
Begin VB.Menu hua
Caption = "更換窗體畫面"
Shortcut = {F3}
End
Begin VB.Menu ban
Caption = "版本"
Shortcut = {F4}
End
End
End
Attribute VB_Name = "MDIForm1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
''''''''''''''''''''''''''''''''主窗體中'''''''''''''''''''''''''''''''''
Private Sub ban_Click()
frmbanben.Show
End Sub
Private Sub customers_Click()
frmcustomers.Show
End Sub
Private Sub exit_Click()
Unload Me
End Sub
Private Sub flowers_Click()
frmflower.Show
End Sub
Private Sub flower_Click()
End Sub
'使用對話框,記錄用戶要更換的圖片的地址
Private Sub hua_Click()
cmdg1.ShowOpen
MDIForm1.Picture = LoadPicture(cmdg1.FileName)
End Sub
Private Sub place_Click()
frmorder.Show
End Sub
'工具欄中點相應的按鈕,擊發相應的事件
Private Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button)
Dim n As Integer
n = Button.Index
Select Case n
Case 1
frmflower.Show
Case 2
frmcustomers.Show
Case 3
frmorder.Show
End Select
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -