LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 94
Default SpinButton Change Selection

Thanks for the reply. Cheers.

Troy

"Marlon" wrote in message
...
Hi Troy,

many thanks. Your explanation helps a lot to understand
the whole story. It works properly for me now.

Best regards,
Marlon

-----Original Message-----
Marlon,

The difficulty you are observing is due to the

SpinButton control taking
focus from the worksheet (you'll notice black rectangles

appear around the
SpinButton arrows). The key step is forcing focus back

onto the worksheet to
make the cursor reappear.

FYI, the CommandButton control has a property

named "TakeFocusOnClick" which
can be set to False to deal with this type of problem.

Unfortunately, the
SpinButton control doesn't have this property, so you

have to kludge it with
the ActiveCell.Activate command in the GotFocus event of

the SpinButton.

Troy


Private Sub SpinButton1_GotFocus()
'Remove the focus from the SpinButton.
ActiveCell.Activate
End Sub

Private Sub SpinButton1_SpinDown()
If ActiveCell.Row < ActiveSheet.Rows.Count Then
ActiveCell.Offset(1, 0).Activate
End If
End Sub

Private Sub SpinButton1_SpinUp()
If ActiveCell.Row 1 Then
ActiveCell.Offset(-1, 0).Activate
End If
End Sub


"Marlon" wrote in

message
...
Hi Toppers,

the event "GotFocus" makes nearly what I want:

Private Sub SpinButton1_GotFocus()
With SpinButton1
.Min = 1
.Max = 10
Cells(.Value, 1).Select
End With
End Sub

But if I press the Down-Button the Cursors goes upwards
and if I press the Up-Button the Cursor goes down.
Strange. - Any idea why?

Best regards,
Marlon



.



 
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
Spinbutton pcor New Users to Excel 2 November 6th 07 03:16 PM
Spinbutton Ben B Excel Discussion (Misc queries) 3 March 9th 06 11:38 AM
Change row selection Farrel Excel Worksheet Functions 7 July 13th 05 06:58 PM
spinbutton? CG Rosén Excel Programming 1 November 29th 04 11:16 PM
Using Spinbutton to change a date Gheezer Excel Programming 3 January 31st 04 10:03 AM


All times are GMT +1. The time now is 05:08 AM.

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

About Us

"It's about Microsoft Excel"