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

📄 setting.frm

📁 哈哈
💻 FRM
字号:
VERSION 5.00
Begin VB.Form setting1 
   BorderStyle     =   0  'None
   Caption         =   "属性设置"
   ClientHeight    =   1440
   ClientLeft      =   3765
   ClientTop       =   3225
   ClientWidth     =   4050
   Icon            =   "setting.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   Picture         =   "setting.frx":038A
   ScaleHeight     =   1440
   ScaleWidth      =   4050
   ShowInTaskbar   =   0   'False
   WhatsThisButton =   -1  'True
   WhatsThisHelp   =   -1  'True
   Begin VB.ComboBox fangshi 
      Height          =   300
      Left            =   1200
      Style           =   2  'Dropdown List
      TabIndex        =   3
      Top             =   480
      Width           =   2175
   End
   Begin VB.CommandButton Command1 
      Caption         =   "确定"
      Height          =   375
      Left            =   1200
      TabIndex        =   0
      Top             =   840
      Width           =   2175
   End
   Begin VB.Label Label2 
      BackStyle       =   0  'Transparent
      Caption         =   "请选择导出方式"
      BeginProperty Font 
         Name            =   "华文中宋"
         Size            =   12
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H8000000D&
      Height          =   255
      Left            =   480
      TabIndex        =   5
      Top             =   100
      Width           =   1695
   End
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      Caption         =   "导出方式:"
      Height          =   255
      Left            =   120
      TabIndex        =   4
      Top             =   600
      Width           =   1095
   End
   Begin VB.Label xiao 
      BackStyle       =   0  'Transparent
      Height          =   255
      Left            =   3000
      TabIndex        =   2
      Top             =   120
      Width           =   375
   End
   Begin VB.Label zuixiao 
      BackStyle       =   0  'Transparent
      Height          =   255
      Left            =   3720
      TabIndex        =   1
      Top             =   120
      Width           =   255
   End
End
Attribute VB_Name = "setting1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
daochufangshi = fangshi.Text
Unload Me
End Sub

Private Sub Form_Load()
    Me.Picture = LoadPicture(App.Path & "\pic\set.bmp")
    fangshi.AddItem "按考场导出"
    fangshi.AddItem "按班级导出"
End Sub

Private Sub Form_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single)
   If Button = 1 Then    '调用API函数,让窗体可以移动
       ReleaseCapture
       SendMessage Me.hwnd, WM_NCLBUTTONDOWN, HTCAPTION, 0&
    End If
End Sub

Private Sub zuixiao_Click()
Unload Me
End Sub

⌨️ 快捷键说明

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