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

📄 frmcusclass.frm

📁 短信平台管理系统是一个短信收发的平台,用户可以找一些代理的短信平台(IP),在系统里修改一些设置就可以进行短信的收发,有短信服务器的IP,服务器端口.系统还有一些常用用户的设置,包括客户资料,客户分类
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmCusclass 
   Caption         =   "客户分类"
   ClientHeight    =   1950
   ClientLeft      =   4365
   ClientTop       =   5310
   ClientWidth     =   4365
   LinkTopic       =   "Form1"
   ScaleHeight     =   1950
   ScaleWidth      =   4365
   Begin VB.CommandButton cmdok 
      Caption         =   "保存"
      Default         =   -1  'True
      Height          =   375
      Left            =   1440
      TabIndex        =   3
      Top             =   1215
      Width           =   1215
   End
   Begin VB.CommandButton cmdcancel 
      Cancel          =   -1  'True
      Caption         =   "取消"
      Height          =   375
      Left            =   2880
      TabIndex        =   2
      Top             =   1215
      Width           =   1215
   End
   Begin VB.TextBox txtText 
      DataField       =   "username"
      Height          =   285
      Left            =   1200
      TabIndex        =   1
      Top             =   585
      Width           =   2895
   End
   Begin VB.TextBox txtMID 
      DataField       =   "userid"
      Height          =   285
      Left            =   3120
      TabIndex        =   0
      Top             =   2535
      Width           =   3375
   End
   Begin VB.Label lblLabels 
      Caption         =   "客户分类:"
      Height          =   255
      Index           =   2
      Left            =   120
      TabIndex        =   5
      Top             =   600
      Width           =   1095
   End
   Begin VB.Label lblLabels 
      Caption         =   "User ID:"
      Height          =   255
      Index           =   1
      Left            =   1320
      TabIndex        =   4
      Top             =   2535
      Width           =   1815
   End
End
Attribute VB_Name = "frmCusclass"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public ok As String

Public value As m_cusclass





Private Sub Cmdcancel_Click()
    ok = False
    Me.Hide
    'Unload Me
End Sub

Private Sub CmdOk_Click()
    
    value.cname = Me.txtText
    value.ccid = Me.txtMID
    
    ok = True
    Me.Hide
    'Unload Me
End Sub


Private Sub Form_Load()
    Me.txtMID = value.ccid
    Me.txtText = value.cname
End Sub

Private Sub Form_Unload(Cancel As Integer)
    ok = False
End Sub


⌨️ 快捷键说明

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