Nullllll Posted March 27, 2007 Report Share Posted March 27, 2007 I have one silly question , assume I have input to be connected to the selector of case structure , this input must be from 0 to 500. starting from 0 to 50 I have to dispaly message , and from 52 to 500 I have to draw some thing .So I will use case structure , but its not logical to do 501 cases !!!!! do you have way to do the case if it its less than 51 then do this otherwise draw. we have many ways to do that but I want to learn how to do this in case structure.. I mean can we do this (......51) means 51 & less and( 52..... )means 52 and up is it doable !!! Quote Link to comment
Mikkel Posted March 27, 2007 Report Share Posted March 27, 2007 QUOTE(Nullllll @ Mar 26 2007, 03:16 PM) I mean can we do this (......51) means 51 & less and( 52..... )means 52 and up is it doable !!! Yes. Use a case with '0..51' and '52..500' in the selector. -Mikkel Quote Link to comment
lraynal Posted March 27, 2007 Report Share Posted March 27, 2007 QUOTE(Mikkel @ Mar 26 2007, 02:38 PM) Yes. '0..51', '52..500'. -Mikkel You even can try: "..51" and "52.." You should read LabVIEW help, and especially the topic: "Creating Case Structures". There's plenty of information for "silly" questions!!!! Quote Link to comment
Mikkel Posted March 27, 2007 Report Share Posted March 27, 2007 QUOTE(lraynal @ Mar 26 2007, 03:42 PM) You should read LabVIEW help, and especially the topic: "Creating Case Structures". There's plenty of information for "silly" questions!!!! Yep! Quote Link to comment
Nullllll Posted March 27, 2007 Author Report Share Posted March 27, 2007 I got it , thnx Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.