+ Reply to Thread
Results 1 to 7 of 7

Macro works in VBA editor but not when run with hotkey

  1. #1
    Registered User
    Join Date
    12-30-2007
    Posts
    1

    Macro works in VBA editor but not when run with hotkey

    Hey guys,
    I'm writing a macro which allows the user to select a set of text files, create a workbook, and then the macro copies each text file into a separate sheet in the created workbook. While running this from the VBA editor everything works perfectly, but when run with the Hotkey from within the workbook, it snags after opening the first file and stops completely. The macro is posted below, and I sincerely appreciate any help, as this has me totally stumped.

    Please Login or Register  to view this content.

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259
    Hello cambotb,

    Welcome to the Forum! You mention the program "snags" and stops working. Do you mean the program freezes (doesn't respond to keyboard or mouse inputs)? Or does the program generate an error? If so, what is the error number?

    All new members should acquaint themselves with the Forum's rules for posting. This will help you getter faster answers to your questions. Please click on the link provided to read these rules.

    Forum Rules

    Sincerely,
    Leith Ross

  3. #3
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    I think you have renamed the macro after assigning the shortcut. If so the shortcut is looking for the original name. I have created a macro using the same shortcut, but the new name. Added your code & it works.

    Please Login or Register  to view this content.
    I have also amended your code slighly, see the notes. There are other amendments that would speed it up.
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  4. #4
    Forum Expert
    Join Date
    01-03-2006
    Location
    Waikato, New Zealand
    MS-Off Ver
    2010 @ work & 2007 @ home
    Posts
    2,243
    hi all,

    I'm hoping to optimise some of my latest coding in the near future & saw this thread when searching for "speed..." to get some tips for my own coding project, so I've had a go at making the "other amendments that would speed it up" which Roy mentioned. I've been able to make a very slight difference in speed with the below code (tested on 5 text files on my C drive) by removing any selection or activation & turning off screen updating. For interest sake I've included the timer code as well.

    Roy or others,
    Are these the sort of changes you would make?
    Would you do anything differently (eg the variable types used in the declarations or a "for each" instead of the loop approach)?


    Please Login or Register  to view this content.
    hth
    Rob
    Rob Brockett
    Kiwi in the UK
    Always learning & the best way to learn is to experience...

  5. #5
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    Hi Rob, your code is much more efficient. You might find this (http://www.excel-it.com/clear_code.htm) interesting, also you can often speed things up by switching off Calculation.

    Here's a method to change application settings
    Please Login or Register  to view this content.

  6. #6
    Forum Expert
    Join Date
    01-03-2006
    Location
    Waikato, New Zealand
    MS-Off Ver
    2010 @ work & 2007 @ home
    Posts
    2,243
    thanks Roy,

    I've bookmarked your link & will go back to it as I complete new projects - it's too easy for me to forget this level of detail unless I'm actively applying it as I learn.

    I wasn't sure if the calculation mode would make much difference in this case & it isn't a nice easy boolean variable so I left it out although I do use it in some of my other work* (in hindsight though it wouldn't hurt)... I guess CambotB can easily switch the subs.

    *Occasionally I have the "bad/indifferent" (?) habit of relying on calculated cell values within in my coding (more so in earlier projects).


    Thanks for the AppSetting sub, I'll be including it in my personal.xls as soon as I'm back at work :-)
    (edit: I hadn't really looked into it but I didn't realise it was so easy to identify the existing settings.)
    Just curious (& w/o testing), is there a special reason for the "with application" clauses being listed within each section of the IF statement?
    Or could it be moved to the beginning & end of the sub and used for all the properties in one go?

    Thanks
    Rob
    Last edited by broro183; 01-02-2008 at 06:51 AM.

  7. #7
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    You need to use the With statement like that because it is part of an If statement, the first With will not be used if the argument isn't true.

+ 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