+ Reply to Thread
Results 1 to 15 of 15

How To Automatically Open New Workbook After 1st Workbook Open 4 Seconds

Hybrid View

Launchnet How To Automatically Open New... 11-06-2009, 08:37 PM
D_Rennie Re: How To Automatically Open... 11-07-2009, 03:58 AM
D_Rennie Re: How To Automatically Open... 11-07-2009, 04:03 AM
Launchnet Re: How To Automatically Open... 11-07-2009, 02:06 PM
D_Rennie Re: How To Automatically Open... 11-07-2009, 09:32 PM
Launchnet Re: How To Automatically Open... 11-08-2009, 05:34 PM
Launchnet Re: How To Automatically Open... 11-08-2009, 06:01 PM
D_Rennie Re: How To Automatically Open... 11-08-2009, 10:08 PM
Launchnet Re: How To Automatically Open... 11-08-2009, 10:22 PM
D_Rennie Re: How To Automatically Open... 11-09-2009, 12:11 AM
D_Rennie Re: How To Automatically Open... 11-09-2009, 12:14 AM
Launchnet Re: How To Automatically Open... 11-09-2009, 12:31 AM
Launchnet Re: How To Automatically Open... 11-09-2009, 12:34 AM
D_Rennie Re: How To Automatically Open... 11-09-2009, 12:42 AM
Launchnet Re: How To Automatically Open... 11-09-2009, 12:55 AM
  1. #1
    Valued Forum Contributor
    Join Date
    09-04-2007
    Location
    Ontario, Ca
    Posts
    624

    How To Automatically Open New Workbook After 1st Workbook Open 4 Seconds

    I have a presentation that I open from a short-cut. After the "Welcome Page" is opened, I want to open a second workbook in a new instance of Excel after 4 seconds.

    I think that I can open the new instance of excel, but I don't know how to activate the macro after 4 seconds.

    I'm sure there is a function someplace for this that can be used in a macro.

    Then, after the second Workbook is opened, I want the Welcome Page "Workbook" closed, leaving the second Worbook open.
    Last edited by Launchnet; 11-08-2009 at 05:58 PM. Reason: Problem with solution
    Thanks for helping . . .
    Matt @ Launchnet

  2. #2
    Valued Forum Contributor
    Join Date
    05-14-2009
    Location
    gold coast
    MS-Off Ver
    Excel 2007
    Posts
    843

    Re: How To Automatically Open New Workbook After 1st Workbook Open 4 Seconds

    hello.

    put this in Thisworkbook
    Private Sub Workbook_Open()
    'Run the procudure in 4 sec from now
    Application.OnTime Now + TimeValue("00:00:04"), "Wbopen"
    End Sub
    and this in a module
    Sub Wbopen()
    Dim wb As Workbook
        Application.ScreenUpdating = False ' turn off the screen updating
        Set wb = Workbooks.Open("F:\test.xlsm") 'CHANGE THIS TO YOUR FILE
        ThisWorkbook.Close False: 'Close this workbook discarding changes
        Application.ScreenUpdating = True ' Now let the user see what has happened.. This may happed automatically??
    End Sub
    I hope this is what you wanted.


  3. #3
    Valued Forum Contributor
    Join Date
    05-14-2009
    Location
    gold coast
    MS-Off Ver
    Excel 2007
    Posts
    843

    Re: How To Automatically Open New Workbook After 1st Workbook Open 4 Seconds

    If you only want to create a new workbook and not open one.

    Sub Wbopen()
    
        Application.ScreenUpdating = False ' turn off the screen updating
        Workbooks.Add 'create new workbook.
        ThisWorkbook.Close False: 'Close this workbook discarding changes
        Application.ScreenUpdating = True ' Now let the user see what has happened.. This may happed automatically??
    End Sub
    Cheers

  4. #4
    Valued Forum Contributor
    Join Date
    09-04-2007
    Location
    Ontario, Ca
    Posts
    624

    Re: How To Automatically Open New Workbook After 1st Workbook Open 4 Seconds

    Good Morning D_Rennie . . .

    I can make this work by putting both macros into the module of the workbook first opened from the short-cut. Problem being that it won't run automatically. If I go to the module and run it, it works fine.

    I don't understand what you mean by putting the macro named Private Sub Workbook_Open() into ThisWorkbook. Can you tell me where I should put it instead of the module?

  5. #5
    Valued Forum Contributor
    Join Date
    05-14-2009
    Location
    gold coast
    MS-Off Ver
    Excel 2007
    Posts
    843

    Re: How To Automatically Open New Workbook After 1st Workbook Open 4 Seconds

    Hello.

    Bring up the VB editor Alt F11
    bring up the project explorer ctrl R
    in the treeview folder microst excel objects click ThisWorkbook.
    place the workbook open sub in there.

    have a good day.

  6. #6
    Valued Forum Contributor
    Join Date
    09-04-2007
    Location
    Ontario, Ca
    Posts
    624

    Re: How To Automatically Open New Workbook After 1st Workbook Open 4 Seconds

    Hi D_Rennie . . .

    Works perfect. I've never used the This Workbook feature and I certainly will learn the various functions. I know of another one right now.

    Many Many Thanks

  7. #7
    Valued Forum Contributor
    Join Date
    09-04-2007
    Location
    Ontario, Ca
    Posts
    624

    Re: How To Automatically Open New Workbook After 1st Workbook Open 4 Seconds

    I thought everything was perfect, but when I checked the 4 seconds (which I estimated) I now see that it should be 6 seconds.

    How can I stop the macro before it opens the next workbook and closes the Welcome sheet which has the macros. I need to change the timing.

  8. #8
    Valued Forum Contributor
    Join Date
    05-14-2009
    Location
    gold coast
    MS-Off Ver
    Excel 2007
    Posts
    843

    Re: How To Automatically Open New Workbook After 1st Workbook Open 4 Seconds

    Ok The reason you are having trouble is the macro security is set to allow the macros for these or all files.

    The simplest way to ovecome this is to open excel in safemode.

    close ALL excell workbooks.
    click the startbutton
    click run.. Type excel.
    HOLD down the ctrl key and then hit ok in the run dialog box
    excel will now start in safemode
    open the workbook that you want to change
    save the workbook
    close all workbooks.
    Magic.

    This is quite a good way of previewing the code of a workbook when you have downloaded it off the net. it stops the code from running and then cheek to make sure it wont crash everythink.

    hope this helps

    ohh if this does not work you can manually set the security to prompt the user to enable the macros. set this change the workbook. put setting back to normal.

    cheers

  9. #9
    Valued Forum Contributor
    Join Date
    09-04-2007
    Location
    Ontario, Ca
    Posts
    624

    Re: How To Automatically Open New Workbook After 1st Workbook Open 4 Seconds

    Sorry -

    Followed your instructions exactly. When I open the file that has the timed macro in it, it still runs and closes itself and opens the next workbook just the way it should. So, I can't unprotect it to change the macro.

    Help please

  10. #10
    Valued Forum Contributor
    Join Date
    05-14-2009
    Location
    gold coast
    MS-Off Ver
    Excel 2007
    Posts
    843

    Re: How To Automatically Open New Workbook After 1st Workbook Open 4 Seconds

    If you do exaclly that it should work.

    another way
    for xl 2007
    open excel
    click the office buttion (the round one up the top left)
    click trust center
    click trust center settings
    click macro settings
    set to disable all macros
    ok to close the trust settings

    change the code

    do the top in again and set back to previous settings.

    ..
    the other way is much simpler. though it will only work with opening the application
    not a workbook.

    try that again opening excel from the windows start menue,

  11. #11
    Valued Forum Contributor
    Join Date
    05-14-2009
    Location
    gold coast
    MS-Off Ver
    Excel 2007
    Posts
    843

    Re: How To Automatically Open New Workbook After 1st Workbook Open 4 Seconds

    if you still have trouble, if you like upload the workbook and ill change it for you.

  12. #12
    Valued Forum Contributor
    Join Date
    09-04-2007
    Location
    Ontario, Ca
    Posts
    624

    Re: How To Automatically Open New Workbook After 1st Workbook Open 4 Seconds

    I'm using Excel 2002
    XP operating system

    I know I am following your instructions correctly.

    I can't use 2007 as I use 2002

    Any more ideas ???

  13. #13
    Valued Forum Contributor
    Join Date
    09-04-2007
    Location
    Ontario, Ca
    Posts
    624

    Re: How To Automatically Open New Workbook After 1st Workbook Open 4 Seconds

    I'd like to send you the file, but I can not send you the password. Sorry.

  14. #14
    Valued Forum Contributor
    Join Date
    05-14-2009
    Location
    gold coast
    MS-Off Ver
    Excel 2007
    Posts
    843

    Re: How To Automatically Open New Workbook After 1st Workbook Open 4 Seconds

    the only way is to open the workbook without running the macros.

    if you put this code into a new workbooks module and run it. it will allow you to open the file withough running the workbook open event.
    Sub openxlfile_MacroOff()
    Dim var_File As Variant
    'select workbook to open
    var_File = Application.GetOpenFilename _
    ("All Files(*.*),*.*", Title:="Please select the Files you wish to open as macro disabled.")
    'disable the macro open events for file
    Application.EnableEvents = False
    'open file
    Workbooks.Open (var_File)
    Application.EnableEvents = True
    End Sub
    hope this helps

  15. #15
    Valued Forum Contributor
    Join Date
    09-04-2007
    Location
    Ontario, Ca
    Posts
    624

    Re: How To Automatically Open New Workbook After 1st Workbook Open 4 Seconds

    Looks Excellant

    I just had a call and I have to go, but I will test it tomorrow morning.

+ 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