J
JattilaB
I am trying to set the yes/no value on a record in a table ...
if is true the set it to false
how can I achieve this using VB in access
currently this is my code
ProRecords = DCount("[ProID]", "Procedure")
Set db = CurrentDb()
Set rst = db.OpenRecordset("Select * from [Procedure];")
ProVar = rst.GetRows(ProRecords)
Do Until r = ProRecords
If ProVar(7, r) = True Then
any help would be appreciated...
if is true the set it to false
how can I achieve this using VB in access
currently this is my code
ProRecords = DCount("[ProID]", "Procedure")
Set db = CurrentDb()
Set rst = db.OpenRecordset("Select * from [Procedure];")
ProVar = rst.GetRows(ProRecords)
Do Until r = ProRecords
If ProVar(7, r) = True Then
any help would be appreciated...