10-27-2005 01:36 PM
10-28-2005 09:54 AM - edited 10-28-2005 09:54 AM
Message Edited by Chaos on 10-28-2005 09:55 AM
10-28-2005 10:30 AM
Type def'd enums combined with the "format Into String" function should do the trick.
10-28-2005 10:45 AM
10-28-2005 12:41 PM
Thanks for all the help. I have converted all to enums and am typecasting. Why though can I update enums as typedef automatically (I do this all the time) but nut so with combo boxes. I would have thought this possible an enum is just a 1:1 mapping of an int to a string while a combo box maps a string constant to its self. The enum is much more useful but a simple combo box would have done the trick if it auto updated. I have considered writing a program which would search and replace all instances of the control constant but it doesn't seem worth the time. The typecast and enum does seem to be the most efficient method for my situation. Thanks,
Paul