📄 bt.frm
字号:
VERSION 5.00
Object = "{F0D2F211-CCB0-11D0-A316-00AA00688B10}#1.0#0"; "MSDATLST.OCX"
Object = "{67397AA1-7FB1-11D0-B148-00A0C922E820}#6.0#0"; "MSADODC.OCX"
Object = "{69958DD9-23E5-11D6-ACD7-0050BAC05F28}#12.0#0"; "CurtButton.ocx"
Begin VB.Form BT
BackColor = &H00C0C000&
BorderStyle = 1 'Fixed Single
Caption = "标题"
ClientHeight = 1335
ClientLeft = 45
ClientTop = 330
ClientWidth = 3840
Icon = "BT.frx":0000
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1335
ScaleWidth = 3840
StartUpPosition = 3 '窗口缺省
Begin CurtButton多风格按钮控件.CurtButton CurtButton2
Height = 255
Left = 3000
TabIndex = 4
Top = 840
Width = 735
_ExtentX = 1296
_ExtentY = 450
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Picture = "BT.frx":08CA
Caption = "保存(&S)"
End
Begin CurtButton多风格按钮控件.CurtButton CurtButton1
Height = 255
Left = 3000
TabIndex = 3
Top = 360
Width = 735
_ExtentX = 1296
_ExtentY = 450
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Picture = "BT.frx":08E6
Caption = "确定(&O)"
End
Begin MSDataListLib.DataList DataList1
Height = 690
Left = 120
TabIndex = 1
Top = 600
Visible = 0 'False
Width = 2655
_ExtentX = 4683
_ExtentY = 1217
_Version = 393216
End
Begin VB.TextBox Text1
Height = 375
Left = 120
TabIndex = 0
Top = 240
Width = 2655
End
Begin MSAdodcLib.Adodc Adodc1
Height = 330
Left = 0
Top = 960
Visible = 0 'False
Width = 2055
_ExtentX = 3625
_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 VB.Shape Shape1
BackColor = &H0000FF00&
BackStyle = 1 'Opaque
Height = 1335
Left = 2880
Top = 0
Width = 975
End
Begin VB.Label Label1
Appearance = 0 'Flat
BackColor = &H80000005&
BackStyle = 0 'Transparent
Caption = "请输入打印表格的标题"
ForeColor = &H0000FFFF&
Height = 255
Left = 240
TabIndex = 2
Top = 0
Width = 2175
End
End
Attribute VB_Name = "BT"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub CurtButton1_Click()
selectview.tit = Text1.Text
Unload Me
End Sub
Private Sub CurtButton2_Click()
If DataList1.Visible = False Then
Adodc1.RecordSource = "select * from dybt"
Adodc1.Recordset.AddNew
Adodc1.Recordset.Fields(0).Value = Text1.Text
Adodc1.Recordset.Update
End If
End Sub
Private Sub DataList1_Click()
Text1.Text = DataList1.Text
End Sub
Private Sub Form_Load()
Adodc1.ConnectionString = cnnado.ConnectionString
End Sub
Private Sub text1_KeyUp(KeyCode As Integer, Shift As Integer)
If Text1.Text <> "" Then
Adodc1.RecordSource = "SELECT * from dybt where bt like " & "'" & Text1.Text & "%" & "'"
Adodc1.Refresh
Set DataList1.RowSource = Adodc1
DataList1.ListField = "bt"
If Adodc1.Recordset.RecordCount <> 0 Then
DataList1.Visible = True
Else
DataList1.Visible = False
End If
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -