Sinple one.

J

John K

Hi...

How can I make a dialog box float over a worksheet and
allow continued input into the sheet without having to
close the dialog box?

Thanks in advance...

JK
 
L

losmac

You can always hide dialog box:
Me.Hide (-> for example on click on commandbuttton on the
form)
and make it visible if it's necessary:
FormName.Show (-> for example form custom commandbar).
 
Top