📄 form13.frm
字号:
VERSION 5.00
Object = "{0D6234D1-DBA2-11D1-B5DF-0060976089D0}#6.0#0"; "TODG6.OCX"
Begin VB.Form frmSelectAccount
Caption = "选择帐套"
ClientHeight = 3990
ClientLeft = 60
ClientTop = 345
ClientWidth = 6285
LinkTopic = "Form2"
ScaleHeight = 3990
ScaleWidth = 6285
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton cmdLink
Caption = "联接"
Height = 435
Left = 2520
TabIndex = 6
Top = 3360
Width = 975
End
Begin VB.CommandButton cmdDel
Caption = "删除"
Height = 435
Left = 4680
TabIndex = 5
Top = 3360
Width = 975
End
Begin VB.CommandButton cmdNew
Caption = "新增"
Height = 435
Left = 3600
TabIndex = 4
Top = 3360
Width = 975
End
Begin VB.CommandButton cmdCancel
Caption = "取消"
Height = 435
Left = 1440
TabIndex = 3
Top = 3360
Width = 975
End
Begin VB.CommandButton cmdSelect
Caption = "确定"
Height = 435
Left = 360
TabIndex = 2
Top = 3360
Width = 975
End
Begin TrueOleDBGrid60.TDBGrid TDBGrid1
Height = 2595
Left = 120
OleObjectBlob = "Form13.frx":0000
TabIndex = 0
Top = 600
Width = 5955
End
Begin VB.Label Label1
Caption = "欢迎使用Turing系列软件"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 315
Left = 120
TabIndex = 1
Top = 120
Width = 3375
End
End
Attribute VB_Name = "frmSelectAccount"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Dim rstAccount As Recordset
Set rstAccount = New Recordset
rstAccount.Open "SELECT AccountID, Company FROM AccountName;", GetConnect, adOpenKeyset, adLockReadOnly
Set Me.TDBGrid1.DataSource = rstAccount
'Me.TDBGrid1.Refresh
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -