In article <MPG.21fd7c71bd88da229896f9
@news.microsoft.com>, me@somewhere.com says...
> 1) Why does & when used in the onclick event give a
> red line in the VB module:
[quoted text clipped - 3 lines]
> .Start = Me!ApptDate & " " & Me!ApptTime
> Endwith
& is old VB code replace with Me!ApptDate &" "& Me!
ApptTime
> 2) Some appointments will be "all day events". When I
> select an "All Day event" check box I would like Start
> Time (not date), Duration and several other form objects
> not to be enabled. This could be accomplished by an
> Onchange or OnClick event for the "all day event" check
> box, but how do you force the form to reset the objects?
Set the desired objects enabled property to false when
the "All day event" object value is true
> 3) How are ApptDate and ApptTime handled for an "all day
> event". Should I supply an ApptTime an ApptLength?
ApptTime and ApptLength not needed when "All day event"
is true.
Wow. Just imagine where I will be in a week!