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

📄 frmnew.frm

📁 1.如果在向导设置班级数为8时,此数值为班级总数
💻 FRM
字号:
VERSION 5.00
Object = "{90F3D7B3-92E7-44BA-B444-6A8E2A3BC375}#1.0#0"; "ACTSKIN4.OCX"
Begin VB.Form FrmNEW 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "新建数据"
   ClientHeight    =   1980
   ClientLeft      =   45
   ClientTop       =   435
   ClientWidth     =   4095
   Icon            =   "FrmNEW.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1980
   ScaleWidth      =   4095
   StartUpPosition =   2  '屏幕中心
   Begin VB.CommandButton Command1 
      Caption         =   "退出新建"
      Height          =   465
      Left            =   1830
      TabIndex        =   3
      Top             =   1440
      Width           =   1005
   End
   Begin VB.CommandButton Command2 
      Caption         =   "进入向导"
      Height          =   465
      Left            =   2970
      TabIndex        =   1
      Top             =   1440
      Width           =   1005
   End
   Begin VB.Frame Frame1 
      Caption         =   "提示"
      Height          =   1245
      Left            =   90
      TabIndex        =   0
      Top             =   90
      Width           =   3885
      Begin ACTIVESKINLibCtl.SkinLabel SkinLabel1 
         Height          =   705
         Left            =   180
         OleObjectBlob   =   "FrmNEW.frx":2CFA
         TabIndex        =   2
         Top             =   330
         Width           =   3585
      End
   End
   Begin ACTIVESKINLibCtl.Skin Skin1 
      Left            =   240
      OleObjectBlob   =   "FrmNEW.frx":2DA9
      Top             =   1470
   End
End
Attribute VB_Name = "FrmNEW"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
    On Error Resume Next

    Unload Me
    MAIN.Enabled = True
    MAIN.Show
End Sub
Private Sub Command2_Click()
    On Error Resume Next

    Unload Me
    FrmDATA.Show
End Sub
Private Sub Form_Load()
    On Error Resume Next
    '    Skin1.LoadSkin App.Path & "\SKIN\8.sk"
    Skin1.ApplySkin Me.hwnd
End Sub
Private Sub Form_Unload(Cancel As Integer)
    On Error Resume Next

    Call Command1_Click
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -