View Full Version : Passing Info From FormA to FormB to FormC


jblackman
04-11-2001, 06:17 PM
I have some txtfieldname fields in formA that are calculated numbers from formB that I would also like to view in FormC. Can you help me figure out how to get the data that appears in formA to display in FormC... no calc needed, just a non-edit view...?

Babi_C
04-18-2001, 01:57 PM
I basically just posted the same question, let me know if you hear anything. THanks!

DES
04-18-2001, 02:05 PM
There are a few ways to handle this but they all stem from one concept. Before you close form 1 pass the value to form two. Then close form 1

For example:

Forms![Form2]![TextboxA] = [TextBoxAOnForm1]

Now whether you want to do this in a macro or with code depends on your skill level. If you need a working sample email me and let me know.

DES