Hi All,
I've been working on a document at work and now want to finish it off at home, yet I'm encountering errors that are making the document useless.
At work we use a thin client (citrix) network, with EX 11 (2003?) and at home I'm using 2007 (shouldnt have bothered for the hasle it gives with things like this).
When I open the document and do something that runs a macro, even a very basic one like:
It comes up with a compile error: Can't find project or library. My references says "MISSING: AppSenseCCDTP 1.0 Type Library"
Anyone have any ideas how I go about getting this in my home XL so I can actually use it?
When it has errored, it debugs to my use of shorthand ranges i.e. [a1] rather than range("a1"). I have amended one to the long hand version and it ran without error. I'm not able to change the all range references to long hand, as there are thousands within the document.
Any suggestions please as I'm stuck!
Also,
With my code above, my scrolls are to move the screen to the very top and very left, i.e. a1 as they have freeze panes and when activating a1, the part past the freeze panes was staying at random places (where last used), is there a way to specifiy this without using the scrolls?
Many thanks for any suggestions and I hope you all have an excellent weekend.
Upex.
I've been working on a document at work and now want to finish it off at home, yet I'm encountering errors that are making the document useless.
At work we use a thin client (citrix) network, with EX 11 (2003?) and at home I'm using 2007 (shouldnt have bothered for the hasle it gives with things like this).
When I open the document and do something that runs a macro, even a very basic one like:
Code:
Private Sub Worksheet_Activate()
With ActiveWindow
.SmallScroll Down:=-200
.SmallScroll ToRight:=-200
End With
[a1].Activate
End Sub
Anyone have any ideas how I go about getting this in my home XL so I can actually use it?
When it has errored, it debugs to my use of shorthand ranges i.e. [a1] rather than range("a1"). I have amended one to the long hand version and it ran without error. I'm not able to change the all range references to long hand, as there are thousands within the document.
Any suggestions please as I'm stuck!
Also,
With my code above, my scrolls are to move the screen to the very top and very left, i.e. a1 as they have freeze panes and when activating a1, the part past the freeze panes was staying at random places (where last used), is there a way to specifiy this without using the scrolls?
Many thanks for any suggestions and I hope you all have an excellent weekend.
Upex.