Floating Form

  • Thread starter Thread starter Jos Vens
  • Start date Start date
J

Jos Vens

Hi,

I like to show a picture of a person when someone is still able to input
data in cells.

Is it possible to make a userform "floating" so you can type in cells when
the form is open?

Thanks,
Jos Vens
 
The show method of a form takes one argument, "Modal". By default it is true
and it will not allow you to access anything off of that form. Specify it as
false and you can modify the cells while the form is still active.
for example:
Form1.Show False

HTH
 
Thanks Jim!

Jos


Jim Thomlinson said:
The show method of a form takes one argument, "Modal". By default it is
true
and it will not allow you to access anything off of that form. Specify it
as
false and you can modify the cells while the form is still active.
for example:
Form1.Show False

HTH
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top