Modeless UserForm

  • Thread starter Thread starter Sri
  • Start date Start date
S

Sri

Hi,

I want to create a Modeless userform which allows users to
use the excel sheets and the userform simultaneously.

It is something like the bar which comes with the Excel
functions wizard. When you click the small icon on the
right side, it allows you to select a cell(s) on the sheet.

I want to do something like that by enabling users to use
the sheet simultaneously.
Any help would be appreciated.

Rgds
Sri
 
This is possible only in Excel 2000 and later. To show the form
modelessly, use the vbModeless argument to the Show method. E.g.,

Userform1.Show vbModeless

To enable selecting cells on the worksheet and put the results on
the form, use the RefEdit control.

--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 

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

Back
Top