View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Rob van Gelder[_4_] Rob van Gelder[_4_] is offline
external usenet poster
 
Posts: 1,236
Default move the cursor to a button

Insert this code on that sheet:

Private Sub Worksheet_Activate()
Shapes("Auswertung").Select
End Sub


"Joachim Geschinsky" wrote in message
...
Hi all,

I use Win XP and XL2000

I want to move the cursor to a defined button on my sheet called
"Auswertung" when I activate this sheet.

How to solve this with vba ?

Can somebody help me ?

Achim