I have created a form for my Subparts..
Now here is where I am lost....
I am trying to have it after you select one of the Subparts it automatically goes to a new line to continue to select the parts needed for assembly until completed.
Here is my code now that I have...tell me what I have to do to change it...
Option Compare Database
Private Sub cboSubpartsID_Change()
Me.PrimaryID = Me.cboSubpartsID.Column(2)
Me.Discription = Me.cboSubpartsID.Column(3)
Me.Qty = Me.cboSubpartsID.Column(4)
Me.UnitCost = Me.cboSubpartsID.Column(5)
Me.NetWght = Me.cboSubpartsID.Column(7)
End Sub
Should that be AfterUpdate to start another line?
TIA for all your help and support
Stephanie