Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 18
Default Load userform & deselect it

Dear All,
I was wondering is it possible via macros to load a userform & deselect
it so that users can scroll in worksheet immedietely. Currently after
loading the userform I have click the worksheet before I can scroll
with arrow keys.

TIA,
julian

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 923
Default Load userform & deselect it

After loading and showing the user from select a location on the sheet in
question.......

UserForm1.Show vbModeless
Sheets(1).Range("A1").Select

--
Cheers
Nigel



wrote in message
oups.com...
Dear All,
I was wondering is it possible via macros to load a userform & deselect
it so that users can scroll in worksheet immedietely. Currently after
loading the userform I have click the worksheet before I can scroll
with arrow keys.

TIA,
julian



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 18
Default Load userform & deselect it

Err... it doesnt seem to work. The userform is still the active window.
am I missing something?

regards,
julian

Nigel wrote:
After loading and showing the user from select a location on the sheet in
question.......

UserForm1.Show vbModeless
Sheets(1).Range("A1").Select

--
Cheers
Nigel



wrote in message
oups.com...
Dear All,
I was wondering is it possible via macros to load a userform & deselect
it so that users can scroll in worksheet immedietely. Currently after
loading the userform I have click the worksheet before I can scroll
with arrow keys.

TIA,
julian


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 923
Default Load userform & deselect it

Are you opening the userform Modeless? If not you cannot interact through
the UI with the worksheet. If you are then you should be able to use the
arrow keys to scroll around the worksheet as per your OP. The userform will
be still visible BUT not have focus in active window.

If you wish to hide it from view try using userform1.hide, the userform
remains loaded in memory but you can programmatically interact with it, such
as use the worksheet deactivate event to unhide it (show).


--
Cheers
Nigel



wrote in message
ps.com...
Err... it doesnt seem to work. The userform is still the active window.
am I missing something?

regards,
julian

Nigel wrote:
After loading and showing the user from select a location on the sheet in
question.......

UserForm1.Show vbModeless
Sheets(1).Range("A1").Select

--
Cheers
Nigel



wrote in message
oups.com...
Dear All,
I was wondering is it possible via macros to load a userform & deselect
it so that users can scroll in worksheet immedietely. Currently after
loading the userform I have click the worksheet before I can scroll
with arrow keys.

TIA,
julian




  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 18
Default Load userform & deselect it

Actually the userform property is
Show Model = False

What I'm trying to do display text from the activecell in the form.
User will navigate up or down to update the display in the form. Now
upon load the form, the user will have to click sheet to get focus then
use arrow keys to navigate. I was trying to load userform and enable
user to user arrow key right away without click anywhere in the sheet.
Can this be done?


Nigel wrote:
Are you opening the userform Modeless? If not you cannot interact through
the UI with the worksheet. If you are then you should be able to use the
arrow keys to scroll around the worksheet as per your OP. The userform will
be still visible BUT not have focus in active window.

If you wish to hide it from view try using userform1.hide, the userform
remains loaded in memory but you can programmatically interact with it, such
as use the worksheet deactivate event to unhide it (show).


--
Cheers
Nigel



wrote in message
ps.com...
Err... it doesnt seem to work. The userform is still the active window.
am I missing something?

regards,
julian

Nigel wrote:
After loading and showing the user from select a location on the sheet in
question.......

UserForm1.Show vbModeless
Sheets(1).Range("A1").Select

--
Cheers
Nigel



wrote in message
oups.com...
Dear All,
I was wondering is it possible via macros to load a userform & deselect
it so that users can scroll in worksheet immedietely. Currently after
loading the userform I have click the worksheet before I can scroll
with arrow keys.

TIA,
julian





  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 923
Default Load userform & deselect it

If the form is opened Modal then you cannot.

--
Cheers
Nigel



wrote in message
oups.com...
Actually the userform property is
Show Model = False

What I'm trying to do display text from the activecell in the form.
User will navigate up or down to update the display in the form. Now
upon load the form, the user will have to click sheet to get focus then
use arrow keys to navigate. I was trying to load userform and enable
user to user arrow key right away without click anywhere in the sheet.
Can this be done?


Nigel wrote:
Are you opening the userform Modeless? If not you cannot interact
through
the UI with the worksheet. If you are then you should be able to use the
arrow keys to scroll around the worksheet as per your OP. The userform
will
be still visible BUT not have focus in active window.

If you wish to hide it from view try using userform1.hide, the userform
remains loaded in memory but you can programmatically interact with it,
such
as use the worksheet deactivate event to unhide it (show).


--
Cheers
Nigel



wrote in message
ps.com...
Err... it doesnt seem to work. The userform is still the active window.
am I missing something?

regards,
julian

Nigel wrote:
After loading and showing the user from select a location on the sheet
in
question.......

UserForm1.Show vbModeless
Sheets(1).Range("A1").Select

--
Cheers
Nigel



wrote in message
oups.com...
Dear All,
I was wondering is it possible via macros to load a userform &
deselect
it so that users can scroll in worksheet immedietely. Currently
after
loading the userform I have click the worksheet before I can scroll
with arrow keys.

TIA,
julian





  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 18
Default Load userform & deselect it

Thanks for the info.

:(

Cheers to u2
Julian


Nigel wrote:
If the form is opened Modal then you cannot.

--
Cheers
Nigel



wrote in message
oups.com...
Actually the userform property is
Show Model = False

What I'm trying to do display text from the activecell in the form.
User will navigate up or down to update the display in the form. Now
upon load the form, the user will have to click sheet to get focus then
use arrow keys to navigate. I was trying to load userform and enable
user to user arrow key right away without click anywhere in the sheet.
Can this be done?


Nigel wrote:
Are you opening the userform Modeless? If not you cannot interact
through
the UI with the worksheet. If you are then you should be able to use the
arrow keys to scroll around the worksheet as per your OP. The userform
will
be still visible BUT not have focus in active window.

If you wish to hide it from view try using userform1.hide, the userform
remains loaded in memory but you can programmatically interact with it,
such
as use the worksheet deactivate event to unhide it (show).


--
Cheers
Nigel



wrote in message
ps.com...
Err... it doesnt seem to work. The userform is still the active window.
am I missing something?

regards,
julian

Nigel wrote:
After loading and showing the user from select a location on the sheet
in
question.......

UserForm1.Show vbModeless
Sheets(1).Range("A1").Select

--
Cheers
Nigel



wrote in message
oups.com...
Dear All,
I was wondering is it possible via macros to load a userform &
deselect
it so that users can scroll in worksheet immedietely. Currently
after
loading the userform I have click the worksheet before I can scroll
with arrow keys.

TIA,
julian




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Userform load problem...please help! Ozgur Pars[_2_] Excel Programming 3 July 8th 06 12:41 PM
LOAD userform JohnTheTemp Excel Programming 2 September 9th 05 12:45 AM
new error when try to load userform izchk shtifman Excel Programming 1 December 30th 03 06:09 PM
Load a Userform Nick Excel Programming 1 September 10th 03 03:24 PM
How to create in a userform, select all/deselect all checkboxes Intruder Excel Programming 1 July 31st 03 04:53 AM


All times are GMT +1. The time now is 01:03 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"