Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Check box question

Status
Not open for further replies.

Learnerprog

Programmer
Apr 21, 2004
52
0
0
US
Is there a way to dynamically load check box on fly because the number of check box needed based on the number of record read from the database each time. Let say 20 records, need to load 20 check box or 5 records, load 5 check box etc. Thank much in advance.
 
You could make them visible or not.
For x = 1 To Dcount("PK","Table")
Me("chk" & x).Visible = True
Next


You could create a bound continuous form, only showing the checkboxes?

Maybe use CreateControl()
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top