View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default Buttons they are moving on Me

xl2002???

http://support.microsoft.com/default...b;EN-US;838910
Controls move to the left of the worksheet in Microsoft Excel 2002

But Jim Rech recently posted this:
This article is now obsolete. Since the 10/12/2004 security patch
there is no need to get a hotfix (although this article does not directly
mention this fix, it's in there).

http://support.microsoft.com/default...b;en-us;832332

But Myrna Larson (and others) posted that it didn't work for her in all her
workbooks.

caldog wrote:

I have used this worksheet for several months, and in this sheet I have
included a couple buttons. Today when I print this sheet out , the buttons
moved to another location on the sheet.

Here is my code that I have used on button one:

Private Sub CommandButton2_Click()
Range("B3").Select
ActiveWindow.ScrollRow = 2
ActiveWindow.FreezePanes = True
End Sub

And button two is using this code:

Private Sub CommandButton3_Click()
ActiveWindow.FreezePanes = False
Range("A2").Select
ActiveWindow.ScrollRow = 1
End Sub

Can somebody tell me why these buttons just now are deciding to move after
printing.

Steve


--

Dave Peterson