?? frmdinw.frm
字號:
VERSION 5.00
Begin VB.Form frmDinW
BorderStyle = 3 'Fixed Dialog
Caption = "記錄定位"
ClientHeight = 1920
ClientLeft = 45
ClientTop = 330
ClientWidth = 3960
Icon = "frmDinW.frx":0000
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1920
ScaleWidth = 3960
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.TextBox txtXueH
BeginProperty Font
Name = "宋體"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 405
Left = 840
TabIndex = 0
Top = 570
Width = 2415
End
Begin VB.PictureBox cmdexit
BeginProperty Font
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 435
Left = 2190
ScaleHeight = 375
ScaleWidth = 1005
TabIndex = 3
Top = 1230
Width = 1065
End
Begin VB.PictureBox CMDYES
BeginProperty Font
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 435
Left = 840
ScaleHeight = 375
ScaleWidth = 1005
TabIndex = 2
Top = 1230
Width = 1065
End
Begin VB.Label Label1
Caption = "請輸入定位學(xué)號:"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 315
Left = 870
TabIndex = 1
Top = 210
Width = 1875
End
End
Attribute VB_Name = "frmDinW"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim REC As Recordset
Private Sub cmdExit_Click()
Unload Me
End Sub
Private Sub cmdYes_Click()
XH = ""
If Len(txtXueH) = 0 Then
MsgBox "學(xué)號為空", vbExclamation + vbOKOnly, "警告"
Else
XH = Trim(txtXueH)
End If
Unload Me
End Sub
Private Sub txtXueH_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
Call cmdYes_Click
End If
End Sub
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -