I'm working on an app that displays cardiac rhythms, and am running into some interesting interface problems. These may all be due to the fact that I'm debugging by demoing the app "in Desktop Browser" (in this case, Chrome) as I'm developing. I'm wondering if others have insight into what I'm doing wrong.
Issues so far:
* button1.visible=false, or button1.hidden=true, or button1.hide() - no luck with any of those.
* I can create and populate a Listgroup, but I can't figure out how to constrain its size. The bottom part of my app is a series of options and an image, with the Listgroup on top. If the Listgroup is longer than the space I've allotted, the Listgroup simply expands to cover the entire screen area, covering up the options. I've set height and bottom, but those are ignored if the list is longer than the height I've specified. I was expecting scrollbars to appear, but those are also missing, making any list items below the bottom unable to be selected.
* I can't find a reference on what Select Case allows for arguments. For example, if I have Select Case Rate, I can't seem to use "Case 50-100" as an option - I can use "50" or "90", but ranges don't seem to be supported.
* I know there's an easy solution to this, but I can't find it (I used to know this). I've got a box that shows a number (rate) and I'd like to use a tool with up and down arrows to increase or decrease the rate. I've added buttons that do this, but they're clunky, and I think there's an obvious solution in some tool that I've forgotten.
* I wanted to put a progressbar behind a button, and make the button transparent. I can't even figure out how to change the Z order of a given tool - the way I created the tools, the progress bar is always in front of the button, which means I can't make this work. I'm not sure it would work, anyway, but I think there must be an easy solution that I'm simply not smart enough to see.
Thanks for any insight!!
-Steven