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

📄 frmasktype.frm

📁 适合乡镇供电所使用电费处理系统v3 软件
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmAskType 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "选择窗口"
   ClientHeight    =   2700
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   5310
   Icon            =   "frmAskType.frx":0000
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2700
   ScaleWidth      =   5310
   ShowInTaskbar   =   0   'False
   StartUpPosition =   1  '所有者中心
   Begin VB.CommandButton Command2 
      Caption         =   "关闭(&Q)"
      Height          =   315
      Left            =   2625
      TabIndex        =   3
      Top             =   2100
      Width           =   1005
   End
   Begin VB.CommandButton Command1 
      Caption         =   "确定(&O)"
      Height          =   330
      Left            =   1020
      TabIndex        =   2
      Top             =   2085
      Width           =   1155
   End
   Begin VB.OptionButton Option2 
      Caption         =   "三相表"
      Height          =   270
      Left            =   1755
      TabIndex        =   1
      Top             =   1575
      Width           =   1020
   End
   Begin VB.OptionButton Option1 
      Caption         =   "一户多表"
      Height          =   210
      Left            =   1710
      TabIndex        =   0
      Top             =   1155
      Width           =   1035
   End
   Begin VB.Label Label1 
      Caption         =   "Label1"
      Height          =   675
      Left            =   885
      TabIndex        =   4
      Top             =   135
      Width           =   4095
   End
   Begin VB.Image Image1 
      Height          =   480
      Left            =   195
      Picture         =   "frmAskType.frx":2982
      Top             =   285
      Width           =   480
   End
End
Attribute VB_Name = "frmAskType"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub Command1_Click()
    If Option1.Value = True Then  '一户多表
       UserType = 1
    End If
    If Option2.Value = True Then  '三相表
       UserType = 2
    End If
    Unload Me
End Sub

Private Sub Command2_Click()
    UserType = 0
    Unload Me
End Sub

⌨️ 快捷键说明

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