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

📄 frmnew.frm

📁 能分班系统采用Z线分班方法:即由系统自动抽签(也可由班主任抽签)
💻 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    =   2010
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   4095
   Icon            =   "frmnew.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2010
   ScaleWidth      =   4095
   StartUpPosition =   2  'CenterScreen
   Begin VB.Frame Frame1 
      Caption         =   "提示"
      Height          =   1245
      Left            =   90
      TabIndex        =   2
      Top             =   120
      Width           =   3885
      Begin ACTIVESKINLibCtl.SkinLabel SkinLabel1 
         Height          =   705
         Left            =   180
         OleObjectBlob   =   "frmnew.frx":1CFA
         TabIndex        =   3
         Top             =   330
         Width           =   3585
      End
   End
   Begin VB.CommandButton Command2 
      Caption         =   "进入向导"
      Height          =   465
      Left            =   2970
      TabIndex        =   1
      Top             =   1470
      Width           =   1005
   End
   Begin VB.CommandButton Command1 
      Caption         =   "退出新建"
      Height          =   465
      Left            =   1830
      TabIndex        =   0
      Top             =   1470
      Width           =   1005
   End
   Begin ACTIVESKINLibCtl.Skin Skin1 
      Left            =   0
      OleObjectBlob   =   "frmnew.frx":1DA9
      Top             =   1650
   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 + -