+ Reply to Thread
Results 1 to 8 of 8

Correcting a Run-time error ‘445’ problem

Hybrid View

  1. #1
    Registered User
    Join Date
    01-15-2011
    Location
    Clearfield, UT
    MS-Off Ver
    Excel 2016
    Posts
    58

    Correcting a Run-time error ‘445’ problem

    I'm trying to modify an Excel 2003 macro that will open a workbook in a folder, print it, close that workbook, open another one and keep printing and closing workbooks in the folder until they're all printed. I know I can no longer use "Set fs = Application.FileSearch" in Excel 2010, but I don't know or understand the alternatives. The macro I used before the change to 2010 is listed below. I would appreciate it if someone could show me how to replace the "Set fs = Application.FileSearch" with the new and accepted alternative. Thanks in advance! JPDutch

    Sub Print3()
    '
    ' MacroGRP2 Macro
    ' Macro recorded 01/06/2012 by jpdutch
    '
    ' This starts the print job
        Dim fs As FileSearch
        Dim i As Integer
        Dim wbk As Workbook
    
        Set fs = Application.FileSearch
    
        With fs
            .LookIn = ThisWorkbook.Path
            .Filename = "*.xls"
        For i = 200 To .Execute()
            Set wbk = Workbooks.Open(.FoundFiles(i))
    '   This will print the document
             ActiveWorkbook.PrintOut Copies:=1, Collate:=True
    '   Wait
            newHour = Hour(Now())
            newMinute = Minute(Now())
            newSecond = Second(Now()) + 7
            waitTime = TimeSerial(newHour, newMinute, newSecond)
            Application.Wait waitTime
        wbk.Close SaveChanges:=True
        Next i
    End With
    End Sub
    Last edited by JPDutch; 01-22-2013 at 03:17 PM. Reason: Solved

  2. #2
    Valued Forum Contributor
    Join Date
    08-13-2012
    Location
    Gardony, Hungary
    MS-Off Ver
    Excel 2003
    Posts
    558

    Re: Correcting a Run-time error ‘445’ problem

    I've written some code, but then I accidentally deleted it into oblivion. Anyways, here's what I've worked with.
    http://www.ozgrid.com/VBA/2007-files...lternative.htm

    Time to sleep now, I guess.

  3. #3
    Registered User
    Join Date
    01-15-2011
    Location
    Clearfield, UT
    MS-Off Ver
    Excel 2016
    Posts
    58

    Re: Correcting a Run-time error ‘445’ problem

    Sorry RHCPgergo, but I don't know enough to make sense of it all. I tried writing the code based on what was at the above link, but couldn't get it to work. I just don't know enough about VBA to get it to work. When you have a moment if you could show me how to apply the above info to my macro, I'd be most appreciative. JPDutch...PS I'll keep trying though.

  4. #4
    Valued Forum Contributor
    Join Date
    08-13-2012
    Location
    Gardony, Hungary
    MS-Off Ver
    Excel 2003
    Posts
    558

    Re: Correcting a Run-time error ‘445’ problem

    This should work, although it displays as "running" after it finished everything... not sure why. Any feedback appreciated.

    edit: please note that the macro doesn't print out the workbook in which you store the code.
    Sub Print3()
    '
    ' MacroGRP2 Macro
    ' Macro recorded 01/06/2012 by jpdutch
    ' Macro altered 01/22/2013 for Excel 2007 compatibility
    '
    ' This starts the print job
    Dim waitTime, newHour, newMinute, newSecond
    Dim Wbk As Workbook
    Dim MyPath As String
    Dim MyFile As String
    
    MyPath = ThisWorkbook.Path
    MyFile = Dir(MyPath & "\" & "*.xls")
    
    Do While MyFile <> ""
        If MyFile <> ThisWorkbook.Name Then
            Set Wbk = Workbooks.Open(MyPath & "\" & MyFile)
    '       This will print the document
            Wbk.PrintOut copies:=1, collate:=True
    '           Wait
                newHour = Hour(Now())
                newMinute = Minute(Now())
                newSecond = Second(Now()) + 7
                waitTime = TimeSerial(newHour, newMinute, newSecond)
                Application.Wait waitTime
            Wbk.Close False
        End If
        MyFile = Dir
    Loop
    End Sub
    Last edited by RHCPgergo; 01-22-2013 at 06:30 AM. Reason: additional info

  5. #5
    Registered User
    Join Date
    01-15-2011
    Location
    Clearfield, UT
    MS-Off Ver
    Excel 2016
    Posts
    58

    Re: Correcting a Run-time error ‘445’ problem

    This is doing the job! At the end of the code I left the line "Wbk.Close SaveChanges:=True" (instead of Wbk.Close False). There is one minor glitch though: When I print, I print as a PDF, which it did just fine, but I have to click on save, and then it doesn't close the PDF file after it's saved. I was hoping that the "Close SaveChanges:=True" line would do that so I could hit print and work on another project while this one was running. Is there a different code I need to insert to get the PDF file to save and close? Thanks for all your help with this! JPDutch.

  6. #6
    Valued Forum Contributor
    Join Date
    08-13-2012
    Location
    Gardony, Hungary
    MS-Off Ver
    Excel 2003
    Posts
    558

    Re: Correcting a Run-time error ‘445’ problem

    I did some searching, but I don't know how to do that, sorry.

  7. #7
    Registered User
    Join Date
    01-15-2011
    Location
    Clearfield, UT
    MS-Off Ver
    Excel 2016
    Posts
    58

    Re: Correcting a Run-time error ‘445’ problem

    Thanks for your help! I'll keep searching for that small piece of the puzzle. Have a great day...in Hungary (wow!) JPDutch

  8. #8
    Valued Forum Contributor
    Join Date
    08-13-2012
    Location
    Gardony, Hungary
    MS-Off Ver
    Excel 2003
    Posts
    558

    Re: Correcting a Run-time error ‘445’ problem

    Thanks. I'll save that "great day" for tomorrow, since it's already 8 PM here. :P

+ 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