form16.frm

来自「会员管理系统 功能自己扩展把! 如果有改进给我发一份quweijie8@12」· FRM 代码 · 共 83 行

FRM
83
字号
VERSION 5.00
Object = "{9A226D6F-2658-4445-8D35-5C19D42676FE}#1.0#0"; "xp.ocx"
Begin VB.Form Form16 
   BackColor       =   &H00E7F7FF&
   BorderStyle     =   0  'None
   Caption         =   "备注编辑"
   ClientHeight    =   1620
   ClientLeft      =   0
   ClientTop       =   0
   ClientWidth     =   4635
   LinkTopic       =   "Form16"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1620
   ScaleWidth      =   4635
   ShowInTaskbar   =   0   'False
   StartUpPosition =   1  '所有者中心
   Begin VB.Frame Frame1 
      BackColor       =   &H00E7F7FF&
      Height          =   1695
      Left            =   0
      TabIndex        =   0
      Top             =   -90
      Width           =   4635
      Begin BSE_Engine.BSE BSE1 
         Left            =   4020
         Top             =   1140
         _ExtentX        =   6588
         _ExtentY        =   1085
      End
      Begin VB.CommandButton Command2 
         Caption         =   "退出"
         Height          =   375
         Left            =   3540
         TabIndex        =   3
         Top             =   960
         Width           =   915
      End
      Begin VB.CommandButton Command1 
         Caption         =   "保存"
         Height          =   375
         Left            =   3540
         TabIndex        =   2
         Top             =   360
         Width           =   915
      End
      Begin VB.TextBox Text1 
         Height          =   1425
         Left            =   90
         MultiLine       =   -1  'True
         ScrollBars      =   2  'Vertical
         TabIndex        =   1
         ToolTipText     =   "填写备注"
         Top             =   180
         Width           =   3285
      End
   End
End
Attribute VB_Name = "Form16"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Dim strSQL As String
        strSQL = "INSERT INTO qtxx (消费备注)  VALUES ('" & Trim(Text1.Text) & "')"
        If RunSQL(strSQL) = True Then
        Form15.Combo2.Text = Text1.Text
        Form15.balance
        Unload Me
        End If
End Sub

Private Sub Command2_Click()
Unload Me
End Sub

Private Sub Form_Load()
BSE1.SchemeStyle = 0
BSE1.EndSubClassing
BSE1.InitSubClassing
End Sub

⌨️ 快捷键说明

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