Responsible for making some changes to a database and having difficulty finding reference for the below. Cant find the field which corresponds to the Boolean
Any ideas:
Dim bFS_IMA As Boolean ' IMA File Status
Dim bFS_HPV As Boolean ' HPV File Status
Code:
bFS_HPV = True ' set File Status flag
End If ' CHPVflag = True
' both File Status flages are true
If bFS_IMA And bFS_IMA = bFS_HPV Then
sFileStat = "HIT" ' set File Status value
Else
sFileStat = "MISS" ' set File Status value
End If ' bFS_IMA And bFS_IMA = bFS_HPV
Any ideas:
Dim bFS_IMA As Boolean ' IMA File Status
Dim bFS_HPV As Boolean ' HPV File Status
Code:
bFS_HPV = True ' set File Status flag
End If ' CHPVflag = True
' both File Status flages are true
If bFS_IMA And bFS_IMA = bFS_HPV Then
sFileStat = "HIT" ' set File Status value
Else
sFileStat = "MISS" ' set File Status value
End If ' bFS_IMA And bFS_IMA = bFS_HPV