scouser
Registered User.
- Local time
- Today, 09:31
- Joined
- Nov 25, 2003
- Messages
- 767
Hi Access World Forums, it has been many years since my last post 
I have a Order Form (continuous) that allows user to select a product. After selection 2 text boxes are updated (Description and Price) see code below:
On the same form I have a quantity text field. If I manually enter value (i.e. 1) AfterUpdate event triggers and populates text field 'Line Total'.
What I would like to do is after a value is selected from cboPackageID the quantity is set to 1 and the line total updates.
Kind Regards,
Phil.
I have a Order Form (continuous) that allows user to select a product. After selection 2 text boxes are updated (Description and Price) see code below:
Code:
Private Sub cboPackageID_AfterUpdate()
Me.PackageDescription = Me![cboPackageID].Column(1)
Me.PackagePrice = Me![cboPackageID].Column(2)
End Sub
On the same form I have a quantity text field. If I manually enter value (i.e. 1) AfterUpdate event triggers and populates text field 'Line Total'.
What I would like to do is after a value is selected from cboPackageID the quantity is set to 1 and the line total updates.
Kind Regards,
Phil.