Page 1 of 1

Visual Designer Quickfix - User-specified Enumeration Number

Posted: Tue Aug 30, 2005 3:49 am
by dracflamloc
Need to do multiple windows but its kinda a pain to change the include source every time to a different "Enumeration xxx" for each window when I update them.

I think this would be a very quick and easy thing to add.

So if you could please add this ASAP it'd make managing larger apps in VD much better.

So for example:

Code: Select all

Enumeration 1000
  #MainWindow
EndEnumeration

;- Gadget Constants
;
Enumeration 1001
  #WebList
  #txtChatSend
  #btnSend
  #lstChat
  #Text_0
EndEnumeration
So 1000 could just be a project option. Thanks!

Posted: Tue Aug 30, 2005 8:58 am
by Flype

Code: Select all

Enumeration ;1000 
  #MainWindow = 1000
EndEnumeration 

;- Gadget Constants 
; 
Enumeration ;1001 
  #WebList = 1001
  #txtChatSend 
  #btnSend 
  #lstChat 
  #Text_0 
EndEnumeration 
and this way ?