I'm finally finished building my delivery system. I have a query which works fine the issue is every time i click on a item on my form the screen flickers. The form is a continuous form and on my form i have a list of menu items when i click on them it updates my summary textbox. but in order to show up on my textbox i need to run a docmd.openquery then refresh the form which is causing my flickering. below is the query that i run and was wondering if i could not use a query but use a vba string instead. i tried writing out the vba code me.summary = me.summary & me.sandwich & etc. but it reproduces all the previous entries.
Expr1: IIf([Bread] Like "*",[Bread] & " " & [Sandwich] & " " & [Expr2] & Chr(13)+Chr(10),[Sandwich] & " " & [Expr2] & Chr(13)+Chr(10)) & IIf([Extras]<"S*",[Extras]) & IIf([Veg]<"S*",[Veg]) & IIf([Packets] Like "*",[Packets]) & IIf([Chips] Like "*",[Chips]) & IIf([Cookies] Like "*",[Cookies]) & IIf([Othersides] Like "*",[Othersides]) & IIf([Drinks] Like "*",[Drinks]) & Chr(13)+Chr(10)
Expr1: IIf([Bread] Like "*",[Bread] & " " & [Sandwich] & " " & [Expr2] & Chr(13)+Chr(10),[Sandwich] & " " & [Expr2] & Chr(13)+Chr(10)) & IIf([Extras]<"S*",[Extras]) & IIf([Veg]<"S*",[Veg]) & IIf([Packets] Like "*",[Packets]) & IIf([Chips] Like "*",[Chips]) & IIf([Cookies] Like "*",[Cookies]) & IIf([Othersides] Like "*",[Othersides]) & IIf([Drinks] Like "*",[Drinks]) & Chr(13)+Chr(10)