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  dBforums > PC based Database Applications > Microsoft Excel > Can This Be Done

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 03-24-04, 20:43
reuven74190 reuven74190 is offline
Registered User
 
Join Date: Mar 2004
Posts: 1
Question Can This Be Done

Hello Everyone

I am designing a scheduling system for my work using Excel 2000. In order to make the interface secure, I have already disabled all toolbars, right-click options, tabs, etc. However, the problem I have is that when you double-click on the top bar of excel (the one which displays the file name, the minimize, restore, and close buttons), it will restore down the size of the window. I need to have this window always stay maximized. I have already disabled the three buttons on that bar (minimize, restore, and close), but I can't find a way to disable the double-click on that bar restoring it down. I'm not sure if an Application-Level event can be used to disable this feature. Does anyone have any suggestions/solutions to this situation?

Thanks
Jason
Reply With Quote
  #2 (permalink)  
Old 03-24-04, 22:16
Smitty Smitty is offline
Registered User
 
Join Date: Dec 2003
Location: San Diego, CA
Posts: 153
Welcome the the Board!

Why not use the View-->Full Screen option?

Application.DisplayFullScreen = True

That'll get rid of the Title Bar all together.

Or you could try something like:
Code:
Private Sub WindowResize()
    Application.WindowState = xlMaximized
End Sub

Private Sub On_DoubleClick()
    Application.WindowState = xlMaximized
End Sub
Hope that helps,

Smitty

EDIT: TYPO & I didn't actually try those snippets; just thoughts.

Last edited by Smitty; 03-24-04 at 22:36.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On