Re: How many ActiveX controls can I have? Stack overflow problems...
Interesting! Our experiences are exactly opposite: all the stack
problems I've seen were coding-related.
That kind of variety is one of the things that's what makes this group
so cool!
Here's an example of code that blows the stack up:
Private Sub TestStackSpace( )
TestStackSpace
End Sub
-Matt
On Wed, 25 Feb 2004 07:53:22 -0500, "Mike Storr"
<nobody@somewhe re.con> wrote:
[color=blue]
>I believe the article pertains more to the "Overflow" error the original
>poster mentioned than what a stack is. I personally have never seen an
>overflow error that was not hardware related, just Out of Stack (or Heap)
>Space,
>
>"Matthew Sullivan" <Matt@NoSpam.co m> wrote in message
>news:n48o301uk qga0o4d7rd54a99 7nh80ccdbh@4ax. com...[color=green]
>> That's a strange definition of "stack". Methinks it is valid only
>> within the context of a certain type of problem (not the problem we've
>> got here).
>>
>> A stack is simply an area of physical memory that is used for dynamic
>> memory allocation. My hunch is that in VBA that applies to pretty
>> much everything we have programming control over, except global and
>> static variables (and constants, which probably occupy no memory at
>> all).
>>
>>
>>[/color]
>
>[/color]
Interesting! Our experiences are exactly opposite: all the stack
problems I've seen were coding-related.
That kind of variety is one of the things that's what makes this group
so cool!
Here's an example of code that blows the stack up:
Private Sub TestStackSpace( )
TestStackSpace
End Sub
-Matt
On Wed, 25 Feb 2004 07:53:22 -0500, "Mike Storr"
<nobody@somewhe re.con> wrote:
[color=blue]
>I believe the article pertains more to the "Overflow" error the original
>poster mentioned than what a stack is. I personally have never seen an
>overflow error that was not hardware related, just Out of Stack (or Heap)
>Space,
>
>"Matthew Sullivan" <Matt@NoSpam.co m> wrote in message
>news:n48o301uk qga0o4d7rd54a99 7nh80ccdbh@4ax. com...[color=green]
>> That's a strange definition of "stack". Methinks it is valid only
>> within the context of a certain type of problem (not the problem we've
>> got here).
>>
>> A stack is simply an area of physical memory that is used for dynamic
>> memory allocation. My hunch is that in VBA that applies to pretty
>> much everything we have programming control over, except global and
>> static variables (and constants, which probably occupy no memory at
>> all).
>>
>>
>>[/color]
>
>[/color]
Comment