我第一次触及访问和基本访问,但我正在为我的姐姐做一个忙。 我必须从表中检索数据,并且一些标题中包含%字符,并且更改标题不是和选项。 msaccess用%替换%?
让Entitlement = rc![Entitlement%pozitia 1]
rc是记录集:P
答案 0 :(得分:1)
我目前没有Access db方便测试,
但您可以尝试显示字段名称:(来自here的代码)
Public Sub GetTableObjects()
Dim db As Database
Dim tbl As TableDef
Dim Fld As Field
Set db = CurrentDb
For Each tbl In db.TableDefs
Debug.Print "Table: " & tbl.Name & " ***"
For Each Fld In tbl.Fields
Debug.Print Fld.Name
Next Fld
Next tbl
End Sub