I knew Dave was going to ask for a hint.
--------------
Good Luck
To get the most from your Tek-Tips experience, please read
FAQ181-2886
Wise men speak because they have something to say, fools because they have to say something. - Plato
Since you can remove/insert items from top, bottom, or middle, it would be a heap.
So the question would be when does the memo heap become a memento heap?
--------------
Good Luck
To get the most from your Tek-Tips experience, please read
FAQ181-2886
Wise men speak because they have something...
At what point does the memo stack become the memento stack?
--------------
Good Luck
To get the most from your Tek-Tips experience, please read
FAQ181-2886
Wise men speak because they have something to say, fools because they have to say something. - Plato
There is nothing wrong with the ReDim, nor with where you had it. I don't think you understand what I was saying about the behavior of ReDim with respect to an array of objects or to objects within the array elements.
If you have an array of integers and you redim the array, then you can...
That looks to be a scoping problem. That it an issue where and how things are defined and referenced. Given the snippets posted, there is not enough information to delve into that much further.
==> I put it because I was afraid of null reference at runtime.
And that may continue because as I...
==> Public Sub StoreUsrBe4PcPlayedSituation(ByVal InitialUsrState(0) As CurrentSituation)
Again, that shows a ByVal parameter and the parameter is defined as an element, not an array. Remove the subscript for an array.
Public Sub StoreUsrBe4PcPlayedSituation(ByRef InitialUsrState() As...
You're still showing it as a ByVal.
Also, you have an array of objects, where the object type is Checker. However, when you do the ReDim of the array, you are creating a new array of type checker, but the ReDim does not create a new instance of the checker object in each element. In other...
You cannot pass an array ByVal; you must pass ByRef. You can pass an individual element of an array ByVal, but if you want to pass the entire array, it must be ByRef.
The line of code, "FillArrayWithLonelies(Lonelies, LonelyChckrs(ArrayLngth))" is not passing the entire array; it's only...
Yes, it can be difficult process because we one, take so many things for granted, and two, try to view the system as a whole. Thus, it's easy to become over-whelmed That's why you have to take it one step at a time and as detailed as possible, break the system down into its smallest...
I would suggest that you build a knowledge base, create a set of rules for processing that knowledge, prioritize those rules, and then implement those prioritized rules.
To create the knowledge base, carefully map out the strategy that you use when you make a move. When it's your turn, after...
@mmerlinn - So who got the job?
--------------
Good Luck
To get the most from your Tek-Tips experience, please read
FAQ181-2886
Wise men speak because they have something to say, fools because they have to say something. - Plato
==> I too use bleeding edge as a derogotory term. Along with early adoptitis and beta pain. I never considered that anyone would think bleeding could be a positive thing. Some people just want to be first I guess.
As is true for so many things, it all depends on context. As a mentor of mine...
Why Workplace Jargon Is A Big Problem
How many of the terms have you heard/used recently?
--------------
Good Luck
To get the most from your Tek-Tips experience, please read
FAQ181-2886
Wise men speak because they have something to say, fools because they have to say something. - Plato
==> there are reportedly at least a couple of BYU fans from each state in the union (and several other countries).
I have it on reliable authority that there are BYU fans all over the Cosmo(s).
--------------
Good Luck
To get the most from your Tek-Tips experience, please read
FAQ181-2886
Wise...
Peanut Butter Easter Eggs from the Bunny
--------------
Good Luck
To get the most from your Tek-Tips experience, please read
FAQ181-2886
Wise men speak because they have something to say, fools because they have to say something. - Plato
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.