Checkboxes...

Crilen007

Uhm, Title... *shrug*
Local time
Today, 09:57
Joined
Jun 13, 2003
Messages
531
Any idea how I can display this information a lot neater?

Its a bunch of check boxes (I wasn't sure how to go about doing this without them, as they can choose multiple things, if it was just 1, I would have used a dropdown).

I've been trying to fiddle with this for a while now with no good ideas coming to mind.

Anyone have any ideas or examples of how I could go about this?

Thanks
 

Attachments

  • Checkbox.JPG
    Checkbox.JPG
    84.2 KB · Views: 164
Check

Thought I would CHECK it out. I'm not very artsy but actually it looks pretty darn good to me. I find it easy to read.
 
Haha thanks =)

I am basically trying to eliminiate the check boxes that arent checked, and not have them scattered everywhere. I guess I am stuck with this method though.
 
Since this is a report?..........

In the On Print Event of the report you could do the following:

If me.thischeckbox=-1 then
me.thischeckbox.visible=true
else
me.thischeckbox.visible=false
end if


Enter code for each Checkbox and the Unchecked boxes will not appear in the report.
 
But then it would be full of holes.. I could do a HUGE amount of code and have it so that if one option isnt there it moves it to the top, or something.. would be a crazy amount of code i think.. unless I wrote subroutines for it...
 

Users who are viewing this thread

Back
Top Bottom