⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cxc1.frm

📁 《数据结构》排序演示系统。实现6种内部排序。包括直接插入排序
💻 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 + -