Results 1 to 2 of 2

28 Out of stack space

Threaded View

Programmers 28 Out of stack space 10-20-2022, 06:30 PM
6StringJazzer Re: 28 Out of stack space 10-20-2022, 09:41 PM
  1. #1
    Registered User
    Join Date
    10-20-2022
    Location
    Houston
    MS-Off Ver
    Office 365
    Posts
    4

    28 Out of stack space

    Hello, this macro was written by a previous programmer in my company. We recently got an upgrade to Office 365 and it broke the macro. I have updated on the Declare functions with Declare SafePtr and have moved past many other errors. this is the one that I m not able to figure out . can someone please help me.
    Public Sub Wait(Optional ByVal iMilliSecWait As Integer = MGEN_Globals.gimsDEFAULT_SLEEP_TIME, _
                         Optional ByVal iMultiplier As Integer = 1)
    'Declarations
    Dim vReturn As Variant
    Dim lErr As Long, sErr As String
    Const sSource As String = "Wait()"
    
    On Error GoTo ErrorHandler
        'Call Trap(msModule & " " & sSource, "This proc/func has been trapped")
    'Code Start
    StackTrace msModule, sSource
    
    Call Wait(iMilliSecWait * iMultiplier)
    
    Finished:
    'Run clean up here
    Exit Sub
    
    ErrorHandler:
        lErr = Err.Number
        sErr = Err.Description
        If gbDebug_Mode Then
            DebugPrint msModule & " " & sSource, lErr & " " & sErr
            Stop
            Resume
        Else
            'Run clean up here as  well in case of error.
            DebugPrint msModule & " " & sSource, lErr & " " & sErr
            Err.Raise lErr, msModule & " " & sSource, sErr
        End If
    End Sub
    Moderator's note: Please take the time to review our rules. There aren't many, and they are all important. Rule #2 requires code tags. I have added them for you this time because you are a new member. --6StringJazzer
    Last edited by 6StringJazzer; 10-20-2022 at 09:37 PM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Out of Stack Space
    By IonutC in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-04-2019, 09:40 AM
  2. Out of stack space
    By audowl in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-13-2017, 01:09 AM
  3. [SOLVED] VBA out of stack space
    By malcmail in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 03-18-2014, 07:58 AM
  4. Out of stack space
    By Excel_vba in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-22-2013, 01:06 AM
  5. [SOLVED] Out of Stack Space
    By Phoenix5794 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 08-29-2012, 08:44 PM
  6. Out of Stack Space
    By process in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 01-02-2012, 11:31 AM
  7. Out of stack space
    By papa jonah in forum Excel General
    Replies: 5
    Last Post: 04-13-2005, 06:06 PM

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