A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

How do I set the default for task bar in Excel



 
 
Thread Tools Display Modes
  #1  
Old May 29th, 2010, 12:39 AM posted to microsoft.public.excel.misc
DoctorG
external usenet poster
 
Posts: 15
Default How do I set the default for task bar in Excel

Click on View and check task bar and it appears but disappears when I open
Excel again.
  #2  
Old May 29th, 2010, 12:49 AM posted to microsoft.public.excel.misc
Tamer Paksoy
external usenet poster
 
Posts: 1
Default How do I set the default for task bar in Excel

Hi DoctorG,
I assume you use Office 2007 and sounds like ribbon is minimised. Right
click on menu bar and tick-off "Minimise the Ribbon".

"DoctorG" wrote:

Click on View and check task bar and it appears but disappears when I open
Excel again.

  #3  
Old May 29th, 2010, 07:53 PM posted to microsoft.public.excel.misc
bala_vb[_31_]
external usenet poster
 
Posts: 1
Default How do I set the default for task bar in Excel


DoctorG;956968 Wrote:
Click on View and check task bar and it appears but disappears when I
open
Excel again.


if you are familar with VBA try this

I have two functions, one to hide, and one to show.

(and, if the ribbion is already hidden (or showen), then the function
does
nothing).

Public Function ShowReportRibbon()

Dim intRibbonState As Variant

intRibbonState = fReturnRegKeyValue(HKEY_CURRENT_USER, _
"Software\Microsoft\Office\12.0\Common\Toolbar s\Ac cess", _
"QuickAccessToolbarStyle")

If intRibbonState = 4 Then
' ribbon in auto hide state, show it...
SendKeys "^{F1}", False
DoEvents
End If

End Function

Public Function HideReportRibbon()

Dim intRibbonState As Variant

intRibbonState = fReturnRegKeyValue(HKEY_CURRENT_USER, _
"Software\Microsoft\Office\12.0\Common\Toolbar s\Ac cess", _
"QuickAccessToolbarStyle")

If intRibbonState = 0 Then
' ribbon is in full view....hide it...
SendKeys "^{F1}", False
DoEvents
End If

End Function

all the best




--
bala_vb
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


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


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.