+ Reply to Thread
Results 1 to 5 of 5

Excel file as an executable?

  1. #1
    James
    Guest

    Excel file as an executable?

    Dumb question but does anyone know if there is a way to make an Excel file
    into an executable as you can with Access? I'm guessing not since there is
    not an Excel runtime module.

    Thanks,

    James


  2. #2
    Cody
    Guest

    RE: Excel file as an executable?

    You can write code to initialize when the workbook is opened. That will work
    like an executable.


    "James" wrote:

    > Dumb question but does anyone know if there is a way to make an Excel file
    > into an executable as you can with Access? I'm guessing not since there is
    > not an Excel runtime module.
    >
    > Thanks,
    >
    > James
    >


  3. #3
    Cody
    Guest

    RE: Excel file as an executable?

    This is an example of some code I have a sheet run upon opening. You could
    just as easily run a Userform and use the form as the front for your
    "executable".

    Private Sub Workbook_Open()

    Call ListFill(Sheets("Input").ComboBox6, "Model")
    Run "SetDefaults"
    Run "Sheet1.CommandButton1_Click"
    Sheets("Input").Activate

    End Sub


    "James" wrote:

    > Dumb question but does anyone know if there is a way to make an Excel file
    > into an executable as you can with Access? I'm guessing not since there is
    > not an Excel runtime module.
    >
    > Thanks,
    >
    > James
    >


  4. #4
    James
    Guest

    RE: Excel file as an executable?

    Interesting idea I had not considered. Thanks Cody for your help. I'll give
    it a try.

    JB

    "Cody" wrote:

    > This is an example of some code I have a sheet run upon opening. You could
    > just as easily run a Userform and use the form as the front for your
    > "executable".
    >
    > Private Sub Workbook_Open()
    >
    > Call ListFill(Sheets("Input").ComboBox6, "Model")
    > Run "SetDefaults"
    > Run "Sheet1.CommandButton1_Click"
    > Sheets("Input").Activate
    >
    > End Sub
    >
    >
    > "James" wrote:
    >
    > > Dumb question but does anyone know if there is a way to make an Excel file
    > > into an executable as you can with Access? I'm guessing not since there is
    > > not an Excel runtime module.
    > >
    > > Thanks,
    > >
    > > James
    > >


  5. #5
    Cody
    Guest

    RE: Excel file as an executable?

    Good Luck.

    "James" wrote:

    > Interesting idea I had not considered. Thanks Cody for your help. I'll give
    > it a try.
    >
    > JB
    >
    > "Cody" wrote:
    >
    > > This is an example of some code I have a sheet run upon opening. You could
    > > just as easily run a Userform and use the form as the front for your
    > > "executable".
    > >
    > > Private Sub Workbook_Open()
    > >
    > > Call ListFill(Sheets("Input").ComboBox6, "Model")
    > > Run "SetDefaults"
    > > Run "Sheet1.CommandButton1_Click"
    > > Sheets("Input").Activate
    > >
    > > End Sub
    > >
    > >
    > > "James" wrote:
    > >
    > > > Dumb question but does anyone know if there is a way to make an Excel file
    > > > into an executable as you can with Access? I'm guessing not since there is
    > > > not an Excel runtime module.
    > > >
    > > > Thanks,
    > > >
    > > > James
    > > >


+ 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