?? 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 = "聯(lián)接"
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
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -