|
-
Apr 5th, 2024, 05:12 AM
#7
Thread Starter
PowerPoster
Re: My CallStack Class is a mess (Working Demo)
Also too, my coding style and standards have changed a lot over the years and a lot of the stuff included is way, way old so the style has a lot of inconsistency. My app has over 130K lines of code in it and I'm going through it to make it all meet my current standard but this demo is kind of all over the place in that regard. It works but you'll see a lot of "goto cleanup" that I'm getting rid of and a lot of procedures have prefixed variable names such as:
Public Function SumArray(ByVal vArray As Variant) As Double
The way I'm doing things now that would be:
Public Function SumArray(ByVal ArrayOfVariants As Variant) As Double
I'm not super-worried about that for a free demo program because if you choose to use this I'm sure you'll change it all to your own coding style anyway.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|