
Disabled Close button / What's this button
Quote:
>I like the What's This button to provide help for all the controls on my
>forms (Access 97). It works great until I disable the Close button on
>the form. The Close button is greyed and the question mark kind of
>disappeared.
No...I looked and didn't find anything either. If what you are after
is to disable the closing of the form, then I would just leave the
close button on the form and deal with handling the closing of the
form...i.e. use a flag and set it to False when the form opens. In
the Unload event of the form, if the flag is still false, cancel the
unload of the form, and where you want to close the form, set the flag
to true.
--Sue