我的dbf檔的stru也是Char(8),Char(6),Char(4),Char(1)
,可是為什麼我在畫面上看到的資料都是截在正常的點,
是不是我哪兒弄錯了呢?
而且我覺得好像會連那個field name都會出現,佔一行資料列哩!
以下是我的program...希望能有助於各位指導小妮子lo~~
^o^....
模組module1...
Type MemberRecord
tno As String * 8
tdat As String * 6
ttim As String * 4
tsft As String * 1
End Type
按了funckey....
Private Sub command1_click()
Open "c:\aa.dbf" For Random As #1
i = 1
Seek #1, i
Do Until EOF(1)
Get #1, i, Menb1
tno.Text = Menb1.tno
tdate.Text = Menb1.tdat
ttim.Text = Menb1.ttim
ttype.Text = Menb1.tsft
i = i + 1
Debug.Print Menb1.tno & Menb1.tdat & Menb1.ttim & Menb1.tsft
Loop
End Sub