Appending from subform

strikeuk

Registered User.
Local time
Today, 03:51
Joined
Dec 30, 2005
Messages
12
Please help me guys, basically i'm having a problem appending a a date value from a subform into a table. My master form "F_ReceivingProcessParts" is running this query "Q_ReceivingDetailSub" from a button command using "DoCmd.OpenQuery "Q_ReceivingDetailSub"". Here is my SQL code for your reference.

INSERT INTO T_ReceivingProcess ( [date] )
SELECT [Forms]![F_ReceivingProcessPartsSub]![txtDate1] AS Expr1;

I'm always getting the "Enter Parameter Value" box and if i click on cancel it says that it can't find the name "Forms!F_ReceivingProcessPartsSub!txtDate1" in the expression.

Thanks
 

Users who are viewing this thread

Back
Top Bottom