paste/ update whole row

56th Rowallan

Registered User.
Local time
Today, 20:40
Joined
Jan 17, 2006
Messages
11
Hi all

Can anyone help me to paste/copy a whole row from a combo box eg

combo box lists [module],[date],[course director]

sub form has the same fields

i want to insert [module[, [date] and [director] from the combo box selection into subform. at the moment I select the module and that appears in the subform but not the rest of the data.

many thanks

Dave
 
Put the data in by using:

txtModule = Me.cboYourComboBoxNameHere
txtDate = Me.cboYourComboBoxNameHere.Column(1)
txtCourseDirector = Me.cboYourComboBoxNameHere.Column(2)
 
Since the actual data in a normalized Relational Database should only exist in one place, you may want to review your table structures. Except for special conditions, all that should be duplicated is ForeignKeys.
 

Users who are viewing this thread

Back
Top Bottom