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

📄 form_cjxt.frm

📁 手工出卷和自动出卷以及审核试卷和修改试卷
💻 FRM
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomctl.ocx"
Begin VB.Form Form_CJXT 
   BackColor       =   &H8000000C&
   Caption         =   "出卷系统"
   ClientHeight    =   7845
   ClientLeft      =   165
   ClientTop       =   855
   ClientWidth     =   11505
   LinkTopic       =   "Form1"
   Picture         =   "Form_CJXT.frx":0000
   ScaleHeight     =   7845
   ScaleWidth      =   11505
   StartUpPosition =   3  '窗口缺省
   Begin VB.Timer Timer1 
      Interval        =   1000
      Left            =   150
      Top             =   150
   End
   Begin MSComctlLib.StatusBar StatusBar1 
      Align           =   2  'Align Bottom
      Height          =   405
      Left            =   0
      TabIndex        =   0
      Top             =   7440
      Width           =   11505
      _ExtentX        =   20294
      _ExtentY        =   714
      _Version        =   393216
      BeginProperty Panels {8E3867A5-8586-11D1-B16A-00C0F0283628} 
         NumPanels       =   2
         BeginProperty Panel1 {8E3867AB-8586-11D1-B16A-00C0F0283628} 
            Object.Width           =   7056
            MinWidth        =   7056
            Picture         =   "Form_CJXT.frx":29EA2
            Text            =   "日期:"
            TextSave        =   "日期:"
         EndProperty
         BeginProperty Panel2 {8E3867AB-8586-11D1-B16A-00C0F0283628} 
            Object.Width           =   5292
            MinWidth        =   5292
            Picture         =   "Form_CJXT.frx":2A034
            Text            =   "时间:"
            TextSave        =   "时间:"
         EndProperty
      EndProperty
   End
   Begin VB.Menu M1 
      Caption         =   "手工出卷"
      Begin VB.Menu M11 
         Caption         =   "单选题"
      End
      Begin VB.Menu M12 
         Caption         =   "多选题"
      End
      Begin VB.Menu M13 
         Caption         =   "填空题"
      End
      Begin VB.Menu M14 
         Caption         =   "判断题"
      End
      Begin VB.Menu M15 
         Caption         =   "综合题"
      End
   End
   Begin VB.Menu M2 
      Caption         =   "自动出卷"
   End
   Begin VB.Menu M3 
      Caption         =   "退出"
   End
End
Attribute VB_Name = "Form_CJXT"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
  Height = 11100
  Width = 15000
  Left = 1600
  Top = 400
  StatusBar1.Panels(1).Text = "日期:" & Date
  StatusBar1.Panels(2).Text = "时间:" & Time
End Sub

Private Sub M11_Click()
   Form_CJXT11.Show
End Sub

Private Sub M12_Click()
    Form_CJXT12.Show
End Sub

Private Sub M13_Click()
  Form_CJXT13.Show
End Sub

Private Sub M14_Click()
  Form_CJXT14.Show
End Sub

Private Sub M15_Click()
 Form_CJXT15.Show
End Sub

Private Sub M2_Click()
   Form_CJXT21.Show
End Sub

Private Sub M3_Click()
    Unload Me
    Form_Login.Show
End Sub

Private Sub Timer1_Timer()
  StatusBar1.Panels(1).Text = "日期:" & Date
  StatusBar1.Panels(2).Text = "时间:" & Time
End Sub

⌨️ 快捷键说明

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