aceav8or Posted June 22, 2012 Share Posted June 22, 2012 What is the best way to create a "check list" for an end user? The idea being that the page will display a list of things to do that the user must "check" each one before a button on the bottom of the list will be activated to perform some function. For instance: 1. Usb plugged in [x] 2. Power on [x] 3. I have a brain [x] [RUN DIAGNOSTIC] Thanks! Link to comment Share on other sites More sharing options...
AzeoTech Posted June 25, 2012 Share Posted June 25, 2012 That depends. Will the list fit on the page without scrolling? Link to comment Share on other sites More sharing options...
aceav8or Posted June 25, 2012 Author Share Posted June 25, 2012 Barely, I can get it all on screen at 1680x1050 but I can easily fit more columns. Link to comment Share on other sites More sharing options...
AzeoTech Posted June 25, 2012 Share Posted June 25, 2012 Well then there are lots of choices, and the best solution depends on the look you want and how clean you want the programming. The cleanest way is probably to use a checkbox in array mode, and then put labels on it. In array mode, the checkboxes displayed will update an array, so you can then simply look for the min() of that array and if its not 0, then all the checkboxes are checked. Otherwise, you can use a variety of controls to make what you want, but its slightly more cumbersome to setup. Link to comment Share on other sites More sharing options...
aceav8or Posted June 26, 2012 Author Share Posted June 26, 2012 That one sounds good to me. Thanks! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.