I have a problem. I have built a database but now changing I to make it more efficient. In my old database I had Borrowed(tick box) and availible (tick box). I had the following code so that when the Borrowed was ticked then the availible tick box was unavailible.
If Me.Borrowed.Value = True Then
Me!Availible.Enabled = False
Else
Me!Availible.Enabled = True
End If
But now I have changed the database and need help. I have now moved the availible(tick box) to a different table and form than the borrowed tick box. How do I adapt the code to work even though they are not on the same table or form?
If Me.Borrowed.Value = True Then
Me!Availible.Enabled = False
Else
Me!Availible.Enabled = True
End If
But now I have changed the database and need help. I have now moved the availible(tick box) to a different table and form than the borrowed tick box. How do I adapt the code to work even though they are not on the same table or form?