?? aboutform.frm
字號:
VERSION 5.00
Begin VB.Form Form8
BorderStyle = 1 'Fixed Single
Caption = "成績管理系統 V2.1"
ClientHeight = 3240
ClientLeft = 45
ClientTop = 330
ClientWidth = 5235
ClipControls = 0 'False
LinkTopic = "Form8"
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 3240
ScaleWidth = 5235
Begin VB.CommandButton Command2
Caption = "注冊"
Height = 375
Left = 4080
TabIndex = 9
Top = 1320
Width = 855
End
Begin VB.Timer Timer1
Interval = 200
Left = 120
Top = 1200
End
Begin VB.CommandButton Command1
Caption = "確定"
BeginProperty Font
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 4080
TabIndex = 6
Top = 2280
Width = 855
End
Begin VB.PictureBox Picture1
BorderStyle = 0 'None
Height = 615
Left = 240
Picture = "aboutform.frx":0000
ScaleHeight = 615
ScaleWidth = 495
TabIndex = 0
Top = 120
Width = 495
End
Begin VB.Label Label7
Caption = "考試成績管理系統V2.1 設計:吳琦"
BeginProperty Font
Name = "楷體_GB2312"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 375
Left = 120
TabIndex = 8
Top = 2760
Width = 4935
End
Begin VB.Label Label6
Caption = "考試成績管理系統V2.1 設計:吳琦"
BeginProperty Font
Name = "楷體_GB2312"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 375
Left = 240
TabIndex = 7
Top = 2760
Width = 4935
End
Begin VB.Label Label5
Caption = "1998,11"
BeginProperty Font
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 2160
TabIndex = 5
Top = 2280
Width = 975
End
Begin VB.Label Label4
Caption = "聯系電話:(0715)-5227440轉2248"
BeginProperty Font
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 600
TabIndex = 4
Top = 1800
Width = 3495
End
Begin VB.Label Label3
Caption = "版權所有"
BeginProperty Font
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2160
TabIndex = 3
Top = 1320
Width = 855
End
Begin VB.Label Label2
Caption = "設計:長江職工大學電工電子教研室 吳琦"
BeginProperty Font
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 600
TabIndex = 2
Top = 840
Width = 3975
End
Begin VB.Label Label1
Caption = "成績管理系統V2.1"
BeginProperty Font
Name = "楷體_GB2312"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 255
Left = 1440
TabIndex = 1
Top = 240
Width = 2655
End
End
Attribute VB_Name = "Form8"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Unload Me
End Sub
Private Sub Command2_Click()
On Error GoTo errwq
Dim www As String
'Open App.Path + "\wqqk.dat" For Input As #7
'Do While Not EOF(7)
'Input #7, wqqk$
'www = wqqk$
'Loop
'Close #7
''''''''''''''''''''''''''''''
www = GetSetting("cjgl21", "startup", "lastentry")
If www = "58001546" Then
MsgBox "您已經成功注冊", , "成績管理系統V2.1"
Else
Form14.Show
End If
Exit Sub
errwq:
MsgBox "注冊文件被刪除或被破壞", , "成績管理系統V2.1"
End Sub
Private Sub Form_Load()
CenterForm Me
Label7.Left = -5325
Label6.Left = 0
End Sub
Private Sub Timer1_Timer()
Label6.Left = Label6.Left + 50
Label7.Left = Label7.Left + 50
If Label6.Left >= 5325 Then
Label6.Left = -5325
End If
If Label7.Left >= 5325 Then
Label7.Left = -5325
End If
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -