How to update a filed within a Form

TrickyDicky

New member
Local time
, 19:21
Joined
Aug 23, 2007
Messages
6
You can either create a query and create a Join into Parts_Detail and after Update on Parts set the [Part Cost] on your edited record [Part Cost] = Parts_Detail.Part Cost

Or

On your Combi put the Part Cost into the Select statement. Set the column width = 0 if you want to hide it then After Update set your edited record to:

In [Part Cost] = [CombiParts].Column(6).

Depending on your method you will need assign the Form; me. in a Sub or With CodeContextObject just a dot using VB.

Simon
 

Users who are viewing this thread

Back
Top Bottom