frmming.frm
来自「简单库存管理系统」· FRM 代码 · 共 79 行
FRM
79 行
VERSION 5.00
Begin VB.Form frmming
BackColor = &H80000018&
Caption = "系统名称设置!!!"
ClientHeight = 930
ClientLeft = 60
ClientTop = 450
ClientWidth = 6660
LinkTopic = "Form1"
MaxButton = 0 'False
ScaleHeight = 930
ScaleWidth = 6660
StartUpPosition = 2 '屏幕中心
Begin VB.TextBox Text1
BackColor = &H00FFFFFF&
ForeColor = &H80000017&
Height = 375
Left = 1440
TabIndex = 0
Top = 240
Width = 3855
End
Begin VB.Image Image1
Height = 330
Left = 5520
Picture = "frmming.frx":0000
Top = 240
Width = 750
End
Begin VB.Label Label1
BackColor = &H80000018&
Caption = "系统名称:"
Height = 255
Left = 240
TabIndex = 1
Top = 360
Width = 1095
End
Begin VB.Shape Shape1
Height = 615
Left = 120
Shape = 4 'Rounded Rectangle
Top = 120
Width = 6375
End
End
Attribute VB_Name = "frmming"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
End Sub
Private Sub Form_Load()
On Error Resume Next
Call zdf
rs.Open "select * from ming", conn, adOpenStatic, adLockOptimistic
Text1.Text = rs.Fields(0).Value
End Sub
Private Sub Image1_Click()
On Error Resume Next
Call zdf
conn.Execute "update ming set ming='" & Trim(Text1.Text) & "'"
frmmain.Caption = Text1.Text
MsgBox "东信手机提醒你,更改成功", vbOKOnly, "东信手机售后服务管理系统"
End Sub
Private Sub Text1_Click()
Text1.BackColor = &HC0C0FF
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?