-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrmSysInf.frm
More file actions
41 lines (38 loc) · 1.05 KB
/
frmSysInf.frm
File metadata and controls
41 lines (38 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
VERSION 5.00
Begin VB.Form frmSysInf
BorderStyle = 3 'Fixed Dialog
Caption = "ϵͳÐÅÏ¢"
ClientHeight = 4590
ClientLeft = 45
ClientTop = 330
ClientWidth = 4515
Icon = "frmSysInf.frx":0000
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4590
ScaleWidth = 4515
ShowInTaskbar = 0 'False
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton cmdOk
Caption = "È·¶¨(&O)"
Height = 400
Left = 900
TabIndex = 0
Top = 3480
Width = 1200
End
End
Attribute VB_Name = "frmSysInf"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdOK_Click()
Unload Me
End Sub
Private Sub Form_Load()
CenterForm Me
End Sub