-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.frm
95 lines (95 loc) · 2.68 KB
/
Form1.frm
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
VERSION 5.00
Begin VB.Form Form1
BorderStyle = 1 'Fixed Single
Caption = "数字汉字双向工程之转变"
ClientHeight = 4740
ClientLeft = 45
ClientTop = 435
ClientWidth = 5535
Icon = "Form1.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form1"
MaxButton = 0 'False
ScaleHeight = 4740
ScaleWidth = 5535
ShowInTaskbar = 0 'False
StartUpPosition = 1 '所有者中心
Begin VB.Frame Frame1
Height = 1455
Left = 420
TabIndex = 3
ToolTipText = "关于"
Top = 360
Width = 4695
Begin VB.Label Label1
Caption = "数字汉字双向工程 Copyright 2014,4,All Rights Reserved 张执 "
Enabled = 0 'False
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 735
Left = 240
TabIndex = 4
Top = 360
Width = 4215
End
End
Begin VB.CommandButton Command3
Caption = "汉字转报码"
Default = -1 'True
Height = 495
Left = 600
TabIndex = 2
Top = 3360
Width = 1215
End
Begin VB.CommandButton Command2
Caption = "报码转汉字"
Height = 495
Left = 2160
TabIndex = 1
Top = 3360
Width = 1215
End
Begin VB.CommandButton Command1
Cancel = -1 'True
Caption = "退出"
Height = 495
Left = 3720
TabIndex = 0
ToolTipText = "按此退出,按上面的会……"
Top = 3360
Width = 1215
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
End
End Sub
Private Sub Command2_Click()
Me.Hide
Form3.Show
End Sub
Private Sub Command3_Click()
Me.Hide
Form2.Show
End Sub
Private Sub Form_Initialize()
App.Title = ""
End Sub
Private Sub Form_Load()
SetWindowPos Me.hWnd, -1, 0, 0, 0, 0, 1 Or 2
End Sub
Private Sub Form_Unload(Cancel As Integer)
Cancel = -1
End Sub