Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dear Excel experts,
I created a user form that requires input from a cell. After launching the form, I cannot modify the contents of the cell. In fact, I am blocked from selecting any parts of Excel until I close the form. Is there some way to work around this problem? Thank you for helping. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Set the form's ShowModal property to False.
|
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
NYL laid this down on his screen :
Dear Excel experts, I created a user form that requires input from a cell. After launching the form, I cannot modify the contents of the cell. In fact, I am blocked from selecting any parts of Excel until I close the form. Is there some way to work around this problem? Thank you for helping. UserForm1.Show vbModeless -- Garry Free usenet access at http://www.eternal-september.org ClassicVB Users Regroup! comp.lang.basic.visual.misc microsoft.public.vb.general.discussion |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hi,
UserForm1.Show 0 '(ShowModal) or : Set x = Application.InputBox(prompt:="Select range", Type:=8) Application.Goto Sheets(2).Range(x.Address) -- isabelle Le 2012-04-03 22:33, NYL a écrit : Dear Excel experts, I created a user form that requires input from a cell. After launching the form, I cannot modify the contents of the cell. In fact, I am blocked from selecting any parts of Excel until I close the form. Is there some way to work around this problem? Thank you for helping. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Launching from a cell | New Users to Excel | |||
How do I fill a cell in a user form from a selection on same form? | Excel Discussion (Misc queries) | |||
Initiate a form on the selection of a particular cell of a workshe | Excel Programming | |||
Data Entry Form : Cell selection | Excel Programming | |||
Launching form | Excel Programming |