03-20-2009 09:59 AM
03-20-2009 10:02 AM
cmhand wrote:
After I went in and added to both enums
You should make the enum a typedef, and only use a typedef instance (whether you're using it as a control/indicator or as a block diagram constant). This way, you only need to make the change in one place, and you make sure you don't miss anything. The LabVIEW Help discusses how to create typedefs.
03-20-2009 10:05 AM
Your enum control should be saved as strict type def. Then, any constants created from your enum will automatically update when the enum control changes.
See this thread: http://forums.ni.com/ni/board/message?board.id=170&message.id=18370&query.id=8972#M18370 and this one: http://forums.ni.com/ni/board/message?board.id=170&message.id=394628 (very good info!!)
03-20-2009 10:12 AM
vt92 wrote:Your enum control should be saved as strict type def.
You don't really need to go as far as a strict typedef. A strict typedef is only necessary if you have a control and you want to keep the same color/size/font for each instance.
03-20-2009 02:34 PM