Sinple one.

  • Thread starter Thread starter John K
  • Start date Start date
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
 
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).
 
Back
Top