📄 f_qrpz.frm
字号:
VERSION 5.00
Object = "{3A6644DE-3402-11D9-9DE7-C33FAA87690A}#1.0#0"; "WinXPCEngine.ocx"
Object = "{67397AA1-7FB1-11D0-B148-00A0C922E820}#6.0#0"; "msadodc.ocx"
Begin VB.Form F_QRPZ
Caption = "确认牌照号码"
ClientHeight = 3135
ClientLeft = 60
ClientTop = 450
ClientWidth = 4935
ControlBox = 0 'False
LinkTopic = "Form1"
ScaleHeight = 3135
ScaleWidth = 4935
StartUpPosition = 1 '所有者中心
Begin MSAdodcLib.Adodc Adodc1
Height = 330
Left = 120
Top = 2640
Visible = 0 'False
Width = 1200
_ExtentX = 2117
_ExtentY = 582
ConnectMode = 0
CursorLocation = 3
IsolationLevel = -1
ConnectionTimeout= 15
CommandTimeout = 30
CursorType = 3
LockType = 3
CommandType = 8
CursorOptions = 0
CacheSize = 50
MaxRecords = 0
BOFAction = 0
EOFAction = 0
ConnectStringType= 1
Appearance = 1
BackColor = -2147483643
ForeColor = -2147483640
Orientation = 0
Enabled = -1
Connect = ""
OLEDBString = ""
OLEDBFile = ""
DataSourceName = ""
OtherAttributes = ""
UserName = ""
Password = ""
RecordSource = ""
Caption = "Adodc1"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
_Version = 393216
End
Begin WinXPC_Engine.WindowsXPC WindowsXPC1
Left = 120
Top = 3000
_ExtentX = 6588
_ExtentY = 1085
ColorScheme = 2
Common_Dialog = 0 'False
End
Begin VB.CommandButton Command1
Caption = "确定"
Height = 375
Left = 1920
TabIndex = 0
Top = 2640
Width = 1335
End
Begin VB.CommandButton Command2
Caption = "返回"
Height = 375
Left = 3360
TabIndex = 1
Top = 2640
Width = 1335
End
Begin VB.PictureBox Picture1
Appearance = 0 'Flat
BackColor = &H80000005&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 855
Left = 0
ScaleHeight = 855
ScaleWidth = 4935
TabIndex = 3
Top = 0
Width = 4935
Begin VB.Image Image1
Height = 750
Left = 240
Picture = "F_QRPZ.frx":0000
Top = 60
Width = 750
End
Begin VB.Label Label4
BackStyle = 0 'Transparent
Caption = $"F_QRPZ.frx":1DF2
Height = 735
Left = 1320
TabIndex = 4
Top = 120
Width = 3375
End
End
Begin VB.Line Line4
BorderColor = &H80000005&
X1 = 120
X2 = 4800
Y1 = 2535
Y2 = 2535
End
Begin VB.Line Line3
BorderColor = &H80000001&
X1 = 120
X2 = 4800
Y1 = 2520
Y2 = 2520
End
Begin VB.Label Label1
Alignment = 2 'Center
BackStyle = 0 'Transparent
BeginProperty Font
Name = "黑体"
Size = 26.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H8000000E&
Height = 495
Left = 1200
TabIndex = 2
Top = 1410
Width = 2535
End
Begin VB.Shape Shape1
BackColor = &H00FF0000&
BackStyle = 1 'Opaque
BorderColor = &H00FFFFFF&
BorderStyle = 6 'Inside Solid
BorderWidth = 3
Height = 735
Index = 0
Left = 1200
Shape = 4 'Rounded Rectangle
Top = 1320
Width = 2535
End
Begin VB.Shape Shape1
BackColor = &H00808080&
BackStyle = 1 'Opaque
BorderColor = &H00808080&
BorderStyle = 6 'Inside Solid
BorderWidth = 3
Height = 735
Index = 1
Left = 1200
Shape = 4 'Rounded Rectangle
Top = 1350
Width = 2565
End
End
Attribute VB_Name = "F_QRPZ"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
With Adodc1
.ConnectionString = Conn
.RecordSource = "SELECT * FROM [维修车辆档案表] WHERE 牌照号码='" & Label1.Caption & "'"
.Refresh
End With
If Adodc1.Recordset.AbsolutePosition = adPosUnknown Then
Unload Me
F_CLXX.Show 1
Else
With F_WXDJ
.L_DABH.Caption = Adodc1.Recordset.Fields!档案编号
.Text4.Text = UDate & UTime
.Text5.Text = Adodc1.Recordset.Fields!牌照号码
.Text6.Text = Adodc1.Recordset.Fields!车型
.Text7.Text = UDate
End With
Unload Me
F_WXDJ.Show 1
End If
End Sub
Private Sub Command2_Click()
Unload Me
F_PZH.Show 1
End Sub
Private Sub Form_Load()
WindowsXPC1.InitSubClassing '加载XP控件
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -