Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Pardon my ignorance in such matters, but how do you move the mouse pointer to
a selected cell using a VBA Macro (code contained therein, following the ..Select)? Thanking you in advance... -- John |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Rarely necessary or desirable to select but
range("a4").select will take you there or application.goto sheets("sheet4").range("a4") to goto a cell on another sheet. -- Don Guillett Microsoft MVP Excel SalesAid Software "JEB1123" wrote in message ... Pardon my ignorance in such matters, but how do you move the mouse pointer to a selected cell using a VBA Macro (code contained therein, following the .Select)? Thanking you in advance... -- John |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
To the best of my knoweldge you can not move the mouse pointer to the active
or selected cell (easily). The mouse pointer is controled by the operating system and not by XL so anything you wanted to do would require an API call which gets a bit tricky... -- HTH... Jim Thomlinson "JEB1123" wrote: Pardon my ignorance in such matters, but how do you move the mouse pointer to a selected cell using a VBA Macro (code contained therein, following the .Select)? Thanking you in advance... -- John |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Jim. Thank you very much. That's what I thought. How about the MouseDown
event en XL? Would that work? "Jim Thomlinson" wrote: To the best of my knoweldge you can not move the mouse pointer to the active or selected cell (easily). The mouse pointer is controled by the operating system and not by XL so anything you wanted to do would require an API call which gets a bit tricky... -- HTH... Jim Thomlinson "JEB1123" wrote: Pardon my ignorance in such matters, but how do you move the mouse pointer to a selected cell using a VBA Macro (code contained therein, following the .Select)? Thanking you in advance... -- John |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Moving shapes with the mouse | Excel Programming | |||
Moving Shapes with the mouse | New Users to Excel | |||
moving mouse highlights cells without touching left mouse button | Excel Discussion (Misc queries) | |||
moving mouse pointer | Excel Programming | |||
moving mouse pointer | Excel Programming |