PaulCooper
Programmer
I'm using (trying to!) an unbounded text box to drive a filter on a report.
Reports![rptPOI].Filter = strSQL where strSQL is the value in the text box plus a *
Entering data in the text box triggers the on_change event (which drives the filter change code) but there is no value to play with.
e.g. MsgBox Filter.Value & ":" & Filter.OldValue & ":" & Filter.BeforeUpdate
gives "::"
The result I am trying to achieve
User enters Filter is
B B*
Ba Ba*
Ban Ban*
Band Band* etc
Why can't I see the value of the unbound text box?
Regards Paul
Reports![rptPOI].Filter = strSQL where strSQL is the value in the text box plus a *
Entering data in the text box triggers the on_change event (which drives the filter change code) but there is no value to play with.
e.g. MsgBox Filter.Value & ":" & Filter.OldValue & ":" & Filter.BeforeUpdate
gives "::"
The result I am trying to achieve
User enters Filter is
B B*
Ba Ba*
Ban Ban*
Band Band* etc
Why can't I see the value of the unbound text box?
Regards Paul