?? cxc1.frm
字號:
VERSION 5.00
Begin VB.Form cxc01
BackColor = &H00FFC0C0&
Caption = "★ 數據結構排序演示系統 ★"
ClientHeight = 7620
ClientLeft = 60
ClientTop = 450
ClientWidth = 10875
ForeColor = &H00FFFFFF&
Icon = "cxc1.frx":0000
LinkTopic = "Form1"
Picture = "cxc1.frx":0CCA
ScaleHeight = 7620
ScaleWidth = 10875
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command2
BackColor = &H00C0E0FF&
Caption = "退 出"
Height = 495
Left = 8760
Style = 1 'Graphical
TabIndex = 5
Top = 4200
Width = 1095
End
Begin VB.CommandButton Command1
BackColor = &H00C0E0FF&
Caption = "進 入"
Height = 495
Left = 1320
MaskColor = &H00808000&
Style = 1 'Graphical
TabIndex = 0
Top = 4200
Width = 1095
End
Begin VB.Label Label6
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "Resigned by Chengxiangchuang ︱ CopyRight 2005 All Rights Reserved ︱ E_mail:cxc-0378@163.com"
ForeColor = &H00FFFFFF&
Height = 375
Left = 0
TabIndex = 7
Top = 7080
Width = 10935
End
Begin VB.Label Label3
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "Data Structure Sorting Showing System"
BeginProperty Font
Name = "Monotype Corsiva"
Size = 14.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H0080FF80&
Height = 375
Left = 2160
TabIndex = 6
Top = 960
Width = 6495
End
Begin VB.Label Label5
Alignment = 2 'Center
BackColor = &H00C0E0FF&
BackStyle = 0 'Transparent
Caption = "◆指導老師:張順香"
BeginProperty Font
Name = "黑體"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 375
Left = 7200
TabIndex = 4
Top = 1560
Width = 3015
End
Begin VB.Label Label4
Alignment = 2 'Center
BackColor = &H00C0E0FF&
BackStyle = 0 'Transparent
Caption = "◆班級:計算機02-1班"
BeginProperty Font
Name = "黑體"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 375
Left = 1320
TabIndex = 3
Top = 1560
Width = 2655
End
Begin VB.Label Label1
Alignment = 2 'Center
BackColor = &H00C0E0FF&
BackStyle = 0 'Transparent
Caption = "★ 數據結構排序演示系統 ★"
BeginProperty Font
Name = "楷體_GB2312"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C000C0&
Height = 600
Left = 2400
TabIndex = 2
Top = 360
Width = 6255
End
Begin VB.Label Label2
Alignment = 2 'Center
BackColor = &H00C0E0FF&
BackStyle = 0 'Transparent
Caption = "◆設計開發:程相闖"
BeginProperty Font
Name = "黑體"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 375
Left = 4200
TabIndex = 1
Top = 1560
Width = 2895
End
End
Attribute VB_Name = "cxc01"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'**********************************************
'* desinded dy 丞相 E_mail:cxc-0378@163.com *
'**********************************************
Option Explicit
Private Sub Command2_Click()
Dim selevalue As Integer
Dim buttons1 As Integer
buttons1 = vbOKCancel + vbQuestion
selevalue = MsgBox("您真的要退出本系統嗎?", buttons1)
Select Case selevalue
Case vbOK
End
Case vbCancel
cxc01.Show
End Select
End Sub
Private Sub Command1_Click()
cxc02.Show
End Sub
Private Sub Form_Load()
cxc01.Left = (Screen.Width - Width) / 2
cxc01.Top = (Screen.Height - Height) / 2
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -