djwasim Registered User. Local time Today, 08:00 Joined May 29, 2009 Messages 93 Jun 19, 2009 #1 how can i set the default value of a field as another field in a form? wasim shahzad Pakistan
hiền muội small girl in a big world Local time Today, 09:30 Joined Jun 11, 2009 Messages 23 Jun 19, 2009 #2 You mean, when you type a value in field1, field2 have value as field1?
djwasim Registered User. Local time Today, 08:00 Joined May 29, 2009 Messages 93 Jun 19, 2009 #3 actually there is a form named purchasefrm having fields item description units quantity price value averageprice now when i enter a itemcode and quantity then price should be same as averageprice automatically. how is possible?
actually there is a form named purchasefrm having fields item description units quantity price value averageprice now when i enter a itemcode and quantity then price should be same as averageprice automatically. how is possible?
hiền muội small girl in a big world Local time Today, 09:30 Joined Jun 11, 2009 Messages 23 Jun 19, 2009 #4 Use Event BeforeUpdate for txtPrice to calculator averageprice. Example: Private Sub txtPrice_BeforeUpdate(Cancel As Integer) Me.txtAveragePrice=... End Sub
Use Event BeforeUpdate for txtPrice to calculator averageprice. Example: Private Sub txtPrice_BeforeUpdate(Cancel As Integer) Me.txtAveragePrice=... End Sub
djwasim Registered User. Local time Today, 08:00 Joined May 29, 2009 Messages 93 Jun 19, 2009 #5 i don't get any result from this event. plz any one tell me in detail.
djwasim Registered User. Local time Today, 08:00 Joined May 29, 2009 Messages 93 Jun 19, 2009 #6 plz any one help me