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

📄 dlguserset.frm

📁 银行、电信
💻 FRM
字号:
VERSION 5.00
Begin VB.Form dlgUserSet 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "信息修改类型"
   ClientHeight    =   1635
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   3930
   Icon            =   "dlgUserSet.frx":0000
   LinkTopic       =   "Form1"
   LockControls    =   -1  'True
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1635
   ScaleWidth      =   3930
   ShowInTaskbar   =   0   'False
   StartUpPosition =   1  '所有者中心
   Begin VB.CommandButton cmdOK 
      Caption         =   "确定(&O)"
      Height          =   375
      Left            =   2760
      TabIndex        =   2
      Top             =   1120
      Width           =   975
   End
   Begin VB.Frame fra1 
      Caption         =   "新增信息类型"
      Height          =   735
      Left            =   240
      TabIndex        =   3
      Top             =   240
      Width           =   3495
      Begin VB.OptionButton opt2 
         Caption         =   "新增营业厅部门"
         Height          =   255
         Left            =   1800
         TabIndex        =   1
         Top             =   300
         Width           =   1575
      End
      Begin VB.OptionButton opt1 
         Caption         =   "新增服务端用户"
         Height          =   255
         Left            =   120
         TabIndex        =   0
         Top             =   300
         Value           =   -1  'True
         Width           =   1575
      End
   End
End
Attribute VB_Name = "dlgUserSet"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Dim m_bUser                     As Boolean

Private Sub cmdOK_Click()
    On Error Resume Next
    If opt1.Value = True Then
        m_bUser = True
    Else
        m_bUser = False
    End If
    Unload Me
End Sub

Private Sub Form_Terminate()
    On Error Resume Next
    Set dlgUserSet = Nothing
End Sub

'//////////////////////////////////////////////////////////////////////////////////////////
'/设定坐席编号
Public Property Get UserDepart() As Boolean
    On Error Resume Next
    UserDepart = m_bUser
End Property

⌨️ 快捷键说明

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