Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,101
Default row numbers missing etc

Hi all,

I have inherited a workbook at work that was developed by an IT consultancy that are no longer contactable. When the workbook opens, it has VBA code that hides many toolbars etc. The worksheet tabs are also absent, and it creates a re-defined left-right scrolling area sparing the first 3 columns. In addition, the ROW number column on the left has vanished ie you cannot click on the row number to highlight the row etc.
When i open the workbook with macro security on "medium" - and deisable the use of macro's, the majority of these changes still occur - including the ROWS / absent worksheet tabs etc.
This comes as a bit of a puzzle to me - as it seems that there is code embedded within the worksheet which is still executed despite the security settings.
Interestingly, the workbbook has no file-open password, nor does the VBA code have a password. However, in teh VBA editor, "ThisWorkbook" DOES seem to have a password.
I really need to understand what exactly is happening here if posssible, and any means to actually get to edit this thing.
The VBA code itself is mainly just butotn code to switch sheets or filter columns uniquely.

Any help would be greatly appreciated
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,253
Default row numbers missing etc

mail it to address below.. and I'll see what I can do.
I'll be here for another hour max.

keepITcool

< email : keepitcool chello nl (with @ and .)
< homepage: http://members.chello.nl/keepitcool


"?B?TWlrZQ==?=" wrote:

Hi all,

I have inherited a workbook at work that was developed by an IT
consultancy that are no longer contactable. When the workbook opens,
it has VBA code that hides many toolbars etc. The worksheet tabs are
also absent, and it creates a re-defined left-right scrolling area
sparing the first 3 columns. In addition, the ROW number column on the
left has vanished ie you cannot click on the row number to highlight
the row etc. When i open the workbook with macro security on "medium"
- and deisable the use of macro's, the majority of these changes still
occur - including the ROWS / absent worksheet tabs etc. This comes as
a bit of a puzzle to me - as it seems that there is code embedded
within the worksheet which is still executed despite the security
settings. Interestingly, the workbbook has no file-open password, nor
does the VBA code have a password. However, in teh VBA editor,
"ThisWorkbook" DOES seem to have a password. I really need to
understand what exactly is happening here if posssible, and any means
to actually get to edit this thing. The VBA code itself is mainly just
butotn code to switch sheets or filter columns uniquely.

Any help would be greatly appreciated


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 218
Default row numbers missing etc

The missing row numbers and worksheet tabs are probably
just standard Option settings from the Tools menu. Once
selected, they remain as such until changed and don't
required code. If I'm correct on this, you need to select
Tools|Options|View tab. Then check the check boxes:
"Row & column headers" and "Sheet tabs". You may also want
to check "Vertical scroll bar" and "Horizontal scroll bar".

If the Worksheet Menu Bar is hidden then run the code:
Sub UnhideMenu
Application.CommandBars(1).Enabled = True
End Sub

Regards,
Greg

-----Original Message-----
Hi all,

I have inherited a workbook at work that was developed by

an IT consultancy that are no longer contactable. When the
workbook opens, it has VBA code that hides many toolbars
etc. The worksheet tabs are also absent, and it creates a
re-defined left-right scrolling area sparing the first 3
columns. In addition, the ROW number column on the left
has vanished ie you cannot click on the row number to
highlight the row etc.
When i open the workbook with macro security on "medium" -

and deisable the use of macro's, the majority of these
changes still occur - including the ROWS / absent
worksheet tabs etc.
This comes as a bit of a puzzle to me - as it seems that

there is code embedded within the worksheet which is still
executed despite the security settings.
Interestingly, the workbbook has no file-open password,

nor does the VBA code have a password. However, in teh VBA
editor, "ThisWorkbook" DOES seem to have a password.
I really need to understand what exactly is happening

here if posssible, and any means to actually get to edit
this thing.
The VBA code itself is mainly just butotn code to switch

sheets or filter columns uniquely.

Any help would be greatly appreciated
.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,101
Default row numbers missing etc

Thanks all.
@Greg Wilson - interestingly, it was option settings - but it is the workbook itself that seems to disable these. How is that possible when macro's are disabled ?? With all other workbooks etc all the tabs etc are shown - only this workbook that disables them.
Ironically, I am not allowed to share the workbook to help everyone to analyse it further, yet can't use it otherwise ! Corporate logic ;)
Many thanks

"Greg Wilson" wrote:

The missing row numbers and worksheet tabs are probably
just standard Option settings from the Tools menu. Once
selected, they remain as such until changed and don't
required code. If I'm correct on this, you need to select
Tools|Options|View tab. Then check the check boxes:
"Row & column headers" and "Sheet tabs". You may also want
to check "Vertical scroll bar" and "Horizontal scroll bar".

If the Worksheet Menu Bar is hidden then run the code:
Sub UnhideMenu
Application.CommandBars(1).Enabled = True
End Sub

Regards,
Greg

-----Original Message-----
Hi all,

I have inherited a workbook at work that was developed by

an IT consultancy that are no longer contactable. When the
workbook opens, it has VBA code that hides many toolbars
etc. The worksheet tabs are also absent, and it creates a
re-defined left-right scrolling area sparing the first 3
columns. In addition, the ROW number column on the left
has vanished ie you cannot click on the row number to
highlight the row etc.
When i open the workbook with macro security on "medium" -

and deisable the use of macro's, the majority of these
changes still occur - including the ROWS / absent
worksheet tabs etc.
This comes as a bit of a puzzle to me - as it seems that

there is code embedded within the worksheet which is still
executed despite the security settings.
Interestingly, the workbbook has no file-open password,

nor does the VBA code have a password. However, in teh VBA
editor, "ThisWorkbook" DOES seem to have a password.
I really need to understand what exactly is happening

here if posssible, and any means to actually get to edit
this thing.
The VBA code itself is mainly just butotn code to switch

sheets or filter columns uniquely.

Any help would be greatly appreciated
.


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default row numbers missing etc

So are you saying that if you do the below list of actions that the
settings are still changed?

1) Open the workbook with macros disabled
2) Correct the Option settings
3) Close the workbook
4) Reopen the workbook again with macros disabled

Regards,
Greg


*** Sent via Devdex http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!


Reply
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
Missing row numbers kingfisher Excel Discussion (Misc queries) 2 January 21st 10 10:57 PM
Get Missing Numbers rc Excel Discussion (Misc queries) 2 December 4th 07 09:50 PM
to find missing serial numbers in randomly generated numbers B.H. Hadi Excel Worksheet Functions 2 December 1st 05 10:56 PM
Missing row numbers, HELP !!!! Tony Excel Discussion (Misc queries) 2 August 17th 05 02:27 AM
Missing Numbers Soniya[_2_] Excel Programming 5 December 18th 03 02:25 PM


All times are GMT +1. The time now is 04:40 PM.

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"