📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form frmabout
BackColor = &H00FF80FF&
Caption = " 关于"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
Icon = "frmabout.frx":0000
LinkTopic = "Form19"
ScaleHeight = 11115
ScaleWidth = 15240
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command5
Caption = "Command5"
Height = 615
Left = 7800
TabIndex = 6
Top = 9000
Width = 1335
End
Begin VB.CommandButton Command4
Caption = "Command4"
Height = 615
Left = 4440
TabIndex = 5
Top = 9000
Width = 1215
End
Begin VB.TextBox Text1
DataField = "userid"
DataMember = "Command1"
DataSource = "DataEnvironment3"
BeginProperty Font
Name = "华文新魏"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 1455
Left = 4680
MaxLength = 80
MouseIcon = "frmabout.frx":030A
MousePointer = 4 'Icon
MultiLine = -1 'True
TabIndex = 3
Text = "frmabout.frx":0BD4
Top = 1680
Width = 3495
End
Begin VB.PictureBox Picture1
AutoRedraw = -1 'True
BackColor = &H0080FF80&
Height = 735
Left = 3840
ScaleHeight = 675
ScaleWidth = 5115
TabIndex = 0
Top = 120
Width = 5175
Begin VB.CommandButton Command3
Caption = "版权"
Height = 495
Left = 3360
TabIndex = 4
Top = 120
Width = 855
End
Begin VB.CommandButton Command2
Caption = "成员"
Height = 495
Left = 1920
TabIndex = 2
Top = 120
Width = 855
End
Begin VB.CommandButton Command1
Caption = "管理员"
Height = 495
Left = 120
TabIndex = 1
Top = 120
Width = 975
End
End
Begin VB.Image Image1
Height = 3585
Left = 3240
Picture = "frmabout.frx":0BDA
Stretch = -1 'True
Top = 4440
Width = 6720
End
End
Attribute VB_Name = "frmabout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Me.BackColor = QBColor(3)
Me.Text1.Text = "apple"
Me.Text1.Refresh
End Sub
Private Sub Command2_Click()
Dim sql As String
Dim rs As ADODB.Recordset
sql = "select userid from user "
Set rs = TransactSQL(sql)
Me.BackColor = RGB(255, 255, 0)
Me.Text1.Text = rs.Fields(1)
Me.Text1.Refresh
End Sub
Private Sub Command3_Click()
Me.Text1.Text = "该系统版权所有" + Chr(13) + Chr(10) + "萍水相逢工作组"
End Sub
Private Sub Form_Load()
Me.Text1.Text = ""
Me.Text1.FontSize = 12
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -