Hello,
I have a form with 5 fields (date, time, person, area, location) and a button to assign a case number.
Before the person can get a case number, they must have all 5 fields filled out, if they don't, they get a message box asking them to fill out all the fields.
I'm trying to figure out code to make an arrow visible for each field that IsNull.
I tried:
If IsNull([date]) then
me.arrow1.visible = true
Else: me.arrow1.visible = false
end if
if IsNull([time]) then
me.arrow2.visible = true
Else: me.arrow2.visible = false
end if
etc..
I also tried:
If IsNull([date]) then
me.arrow1.visible = true
If IsNull([time]) then
me.arrow2.visible = true
(etc)
end if
end if
each time only the first arrow showed, any help on this would be greatly appreciated!
Thanks