Hi all,
On Dec. 22 I posted this and received an answer but Did not understand what to do with the info.:
I have a table of classes. Students must take classes in a specific order for a
course of study. If class one and two are checked (this would be a Yes/No
field on the form/table?) I want the next class in the rotation to be automatically
highlited or somehow marked as the next class that must be taken.
Will Access do this?
################################################
something like this what you have in mind???
private sub Check1 After_update()
if me.check1 = -1 and check2 = -1 then me.check3 = -1
end sub
#################################################
The answer above looks good but I'm not sure of where to put the code. I have a students table and a class table. In the class table I currently have a class field and a Yes/No field to define if the class has been taken. I'm thinking that for the form I would have to change the Yes/No to a check box? Where would I put the code from the answer I received? Do I need a Macro for what I am trying to do???
On Dec. 22 I posted this and received an answer but Did not understand what to do with the info.:
I have a table of classes. Students must take classes in a specific order for a
course of study. If class one and two are checked (this would be a Yes/No
field on the form/table?) I want the next class in the rotation to be automatically
highlited or somehow marked as the next class that must be taken.
Will Access do this?
################################################
something like this what you have in mind???
private sub Check1 After_update()
if me.check1 = -1 and check2 = -1 then me.check3 = -1
end sub
#################################################
The answer above looks good but I'm not sure of where to put the code. I have a students table and a class table. In the class table I currently have a class field and a Yes/No field to define if the class has been taken. I'm thinking that for the form I would have to change the Yes/No to a check box? Where would I put the code from the answer I received? Do I need a Macro for what I am trying to do???