12-27-2008 12:35 PM
12-27-2008 12:44 PM
This can be done with scripting, but it is hard and not offcially released.
The more important question is: Why?
Ton
12-27-2008 12:50 PM
TonP wrote:The more important question is: Why?
Im curious about thus too. 😄
It's not that any of these things can change at runtime anyway, so what's the purpose?
12-29-2008 12:31 PM
altenbach wrote:
TonP wrote:The more important question is: Why?
Im curious about thus too. 😄
It's not that any of these things can change at runtime anyway, so what's the purpose?
I have to build several test programs each month which are basically just variations on a core program. My goal is to make the core program more modular so that it can be more easily and quickly modified. My thinking behind this was to have the program know which case it was under so that if I added a case the rest of them could automatically adapt to the new numbering. This (in the crazy world inside my head) would prevent me from having to go back through each case and make sure that all of the decisions point to their correct case.
I am always trying to make life easier and I figure that if I throw some of my ideas out here that people may have tried them and can tell me if they work or not.
12-29-2008 12:35 PM
ssilk wrote:... so that if I added a case the rest of them could automatically adapt to the new numbering. This (in the crazy world inside my head) would prevent me from having to go back through each case and make sure that all of the decisions point to their correct case.
I am always trying to make life easier and I figure that if I throw some of my ideas out here that people may have tried them and can tell me if they work or not.
It sounds like you are looking for type-def'd enum. They will allow you to edit the type def and the changes are automatically propgated to all instances of the type def.
Ben