Article ID: 117611
Article Last Modified on 7/8/2002
Function Test ()
Dim d As Database, rs As Recordset
Set d = CurrentDb()
Set rs = d.OpenRecordset("Employees", DB_OPEN_TABLE)
Open rs![Last Name] & ".txt" For Binary As #1
Put #1, , rs![Notes].GetChunk(0, 1000)
Close #1
rs.Close
d.Close
End Function
Function test ()
Dim d As Database, rs As Recordset
Dim x As String
Set d = CurrentDb()
Set rs = d.OpenRecordset("Employees", DB_OPEN_TABLE)
Open rs![Last Name] & ".txt" For Binary As #1
x = rs![Notes].GetChunk(0, 1000)
Put #1, , x
Close #1
rs.Close
d.Close
End Function
Additional query words: gpf
Keywords: kberrmsg kbbug KB117611