automatically make buttons appear

  • Thread starter Thread starter smpil
  • Start date Start date
S

smpil

hey,
anyone know how to make buttons appear on a form automatically as the
are entered into a field in a table.

the field represents projects.. and i need buttons to automatically b
placed on a form (spaced out correctly) as soon as the data is inputte
into the form.

many thanks!
stephe
 
You will need to determin some limits ahead of time (as in the maximum
possible number of buttons) and place the buttons on the form at design time
with their Visible attribute set to No (i.e. hide them) then make them
visible in the Form's AfterUpdate event.
 
Back
Top