MS Access - add a control at run-time

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
I have a form that serves as invoice for my buisness.
There is a basic line of controls - a combo and 3 text boxes.
I want to be able to add at run-time ,by clicking on a command button, an
additional line of the same controls with same event codes and same properties
under the original line of controls.
In VB I used control arrays and it worked great.
How do I do it here ?

thank you,
Anomis
 
hi,
I have a form that serves as invoice for my buisness.
There is a basic line of controls - a combo and 3 text boxes.
I want to be able to add at run-time ,by clicking on a command button, an
additional line of the same controls with same event codes and same properties
under the original line of controls.
In VB I used control arrays and it worked great.
How do I do it here ?
Access is data driven, so you normally will use a subform containing
your controls bound to your table (contacts?) and set the DefaultView
property to endless form.


mfG
--> stefan <--
 
Back
Top