📄 fmain.frm
字号:
VERSION 5.00
Object = "{F6125AB1-8AB1-11CE-A77F-08002B2F4E98}#2.0#0"; "MSRDC20.OCX"
Begin VB.Form FMain
Caption = "Publishers"
ClientHeight = 2850
ClientLeft = 1650
ClientTop = 2610
ClientWidth = 6165
LinkTopic = "Form1"
ScaleHeight = 2850
ScaleWidth = 6165
Begin VB.TextBox txtCountry
DataField = "country"
DataSource = "rdc"
Height = 375
Left = 3600
TabIndex = 9
Top = 1980
Width = 1095
End
Begin VB.TextBox txtState
DataField = "state"
DataSource = "rdc"
Height = 375
Left = 2790
TabIndex = 7
Top = 1980
Width = 645
End
Begin VB.TextBox txtCity
DataField = "city"
DataSource = "rdc"
Height = 375
Left = 180
TabIndex = 5
Top = 1980
Width = 2445
End
Begin VB.TextBox txtName
DataField = "pub_name"
DataSource = "rdc"
Height = 375
Left = 180
TabIndex = 3
Top = 1260
Width = 2445
End
Begin VB.TextBox txtID
DataField = "pub_id"
DataSource = "rdc"
Height = 375
Left = 180
TabIndex = 1
Top = 450
Width = 1095
End
Begin MSRDC.MSRDC rdc
Align = 2 'Align Bottom
Height = 330
Left = 0
Top = 2520
Width = 6165
_ExtentX = 10874
_ExtentY = 582
_Version = 393216
Options = 0
CursorDriver = 0
BOFAction = 0
EOFAction = 0
RecordsetType = 1
LockType = 4
QueryType = 0
Prompt = 3
Appearance = 1
QueryTimeout = 30
RowsetSize = 100
LoginTimeout = 15
KeysetSize = 0
MaxRows = 0
ErrorThreshold = -1
BatchSize = 15
BackColor = -2147483643
ForeColor = -2147483640
Enabled = -1 'True
ReadOnly = 0 'False
Appearance = -1 'True
DataSourceName = "pubs"
RecordSource = "SELECT pub_id, pub_name, city, state, country FROM publishers"
UserName = ""
Password = ""
Connect = ""
LogMessages = ""
Caption = "Publishers"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
Begin VB.Label lbl
Caption = "Country"
Height = 195
Index = 4
Left = 3600
TabIndex = 8
Top = 1710
Width = 1095
End
Begin VB.Label lbl
Caption = "State"
Height = 195
Index = 3
Left = 2790
TabIndex = 6
Top = 1710
Width = 645
End
Begin VB.Label lbl
Caption = "City"
Height = 195
Index = 2
Left = 180
TabIndex = 4
Top = 1710
Width = 1095
End
Begin VB.Label lbl
Caption = "Name"
Height = 195
Index = 1
Left = 180
TabIndex = 2
Top = 990
Width = 1095
End
Begin VB.Label lbl
Caption = "ID"
Height = 195
Index = 0
Left = 180
TabIndex = 0
Top = 180
Width = 1095
End
Begin VB.Menu mnuFile
Caption = "&File"
Begin VB.Menu mnuFileExit
Caption = "E&xit"
End
End
End
Attribute VB_Name = "FMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub mnuFileExit_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -