+ Reply to Thread
Results 1 to 7 of 7

I don't want to display any controls in excel.

  1. #1
    Registered User
    Join Date
    10-19-2005
    Posts
    38

    Question I don't want to display any controls in excel.

    Hello All,

    I want to do some customization in excel.when I open new or existing excel I don't want to display any menu bars, tool bars or no other controls.
    Just I want to display plain excel file with one button like showing in the attachment.
    If I click on button I want to open 'save as' window to save the file.

    Except that I don't want to display any controls in the excel sheet...

    Please see the attachment.

    Thanks & Regards,
    Amar...
    Attached Files Attached Files

  2. #2
    Bob Phillips
    Guest

    Re: I don't want to display any controls in excel.

    Amar,

    This will hd all commandbars on opening and restore on close

    Option Explicit

    Private mFormulaBar

    Private Sub Workbook_BeforeClose(Cancel As Boolean)
    Dim oCB As CommandBar
    For Each oCB In Application.CommandBars
    oCB.Enabled = True
    Next oCB

    Application.DisplayFormulaBar = mFormulaBar
    End Sub

    Private Sub Workbook_Open()
    Dim oCB As CommandBar
    For Each oCB In Application.CommandBars
    oCB.Enabled = False
    Next oCB

    mFormulaBar = Application.DisplayFormulaBar
    Application.DisplayFormulaBar = False
    End Sub

    'This is workbook event code.
    'To input this code, right click on the Excel icon on the worksheet
    '(or next to the File menu if you maximise your workbooks),
    'select View Code from the menu, and paste the code



    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "areddy" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hello All,
    >
    > I want to do some customization in excel.when I open new or existing
    > excel I don't want to display any menu bars, tool bars or no other
    > controls.
    > Just I want to display plain excel file with one button like showing in
    > the attachment.
    > If I click on button I want to open 'save as' window to save the file.
    >
    > Except that I don't want to display any controls in the excel sheet...
    >
    > Please see the attachment.
    >
    > Thanks & Regards,
    > Amar...
    >
    >
    > +-------------------------------------------------------------------+
    > |Filename: display only button in excel..doc |
    > |Download: http://www.excelforum.com/attachment.php?postid=3969 |
    > +-------------------------------------------------------------------+
    >
    > --
    > areddy
    > ------------------------------------------------------------------------
    > areddy's Profile:

    http://www.excelforum.com/member.php...o&userid=28204
    > View this thread: http://www.excelforum.com/showthread...hreadid=480523
    >




  3. #3
    Registered User
    Join Date
    10-19-2005
    Posts
    38

    Thanks Bob Phillips

    Hi,

    Thanks for the fast responce.It is working fine.but in the report i want to place one button and when i click on the button it should display save as window.

    i need that code.how to get 'Save as' window when clicking on the button...

    Please help me on this.

    thanks & Regards,
    Amar....
    Attached Files Attached Files

  4. #4
    Tushar Mehta
    Guest

    Re: I don't want to display any controls in excel.

    Bob Phillips has already shown a way to do this but do keep in mind
    this is not a very good idea. What happens if your code / XL / the OS
    / the computer / the power crashes while you have disabled the user
    interface?

    How does the user restore XL to a functional state?

    --
    Regards,

    Tushar Mehta
    www.tushar-mehta.com
    Excel, PowerPoint, and VBA add-ins, tutorials
    Custom MS Office productivity solutions

    In article <[email protected]>,
    [email protected] says...
    >
    > Hello All,
    >
    > I want to do some customization in excel.when I open new or existing
    > excel I don't want to display any menu bars, tool bars or no other
    > controls.
    > Just I want to display plain excel file with one button like showing in
    > the attachment.
    > If I click on button I want to open 'save as' window to save the file.
    >
    > Except that I don't want to display any controls in the excel sheet...
    >
    > Please see the attachment.
    >
    > Thanks & Regards,
    > Amar...
    >
    >
    > +-------------------------------------------------------------------+
    > |Filename: display only button in excel..doc |
    > |Download: http://www.excelforum.com/attachment.php?postid=3969 |
    > +-------------------------------------------------------------------+
    >
    > --
    > areddy
    > ------------------------------------------------------------------------
    > areddy's Profile: http://www.excelforum.com/member.php...o&userid=28204
    > View this thread: http://www.excelforum.com/showthread...hreadid=480523
    >
    >


  5. #5
    Tom Ogilvy
    Guest

    Re: I don't want to display any controls in excel.

    fname = Application.GetSaveAsFileName()

    that will return the fully qualified filename selected. then you need to
    use

    Activeworkbook.SaveAs fName

    See help for additional argument options for GetSaveAsFileName

    --
    Regards,
    Tom Ogilvy

    "areddy" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi,
    >
    > Thanks for the fast responce.It is working fine.but in the report i
    > want to place one button and when i click on the button it should
    > display save as window.
    >
    > i need that code.how to get 'Save as' window when clicking on the
    > button...
    >
    > Please help me on this.
    >
    > thanks & Regards,
    > Amar....
    >
    >
    > +-------------------------------------------------------------------+
    > |Filename: New Microsoft Word Document.doc |
    > |Download: http://www.excelforum.com/attachment.php?postid=3970 |
    > +-------------------------------------------------------------------+
    >
    > --
    > areddy
    > ------------------------------------------------------------------------
    > areddy's Profile:

    http://www.excelforum.com/member.php...o&userid=28204
    > View this thread: http://www.excelforum.com/showthread...hreadid=480523
    >




  6. #6
    Registered User
    Join Date
    10-19-2005
    Posts
    38

    Thanks Tom Ogilvy

    Thanks to all,

    it is working fine.i have to do some customization for that.

    Regards,
    Amar...

  7. #7
    Registered User
    Join Date
    10-19-2005
    Posts
    38

    Opening the excel in other machine it should not work this code.

    Hi All,

    Now iam able to hide all the tool bars and menu bars controls and while clicking on the button iam getting the "save as" window.

    Iam saving the file where ever I need. After that I copied the same file and i placed in the different system and I opened the excel file then also all controls are hiding.

    But that should not happened (Added code should not execute) in other machine when open the excel file.

    it should run in my machine only and the code should not run in the other machine when opening the excel file.

    As of now iam writing the disable code in Workbook Open function and enable code in Workbook_BeforeClose function.

    And in sheet1 button click event iam writing below code.

    Private Sub CommandButton1_Click()

    fName = Application.GetSaveAsFilename()
    ActiveWorkbook.SaveAs fName

    End Sub

    This CommandButton1 should not display in other machine when I open the copied excel file...

    Please help me in this regard.

    Thanks,
    Amar...

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1