I've been trying to resolve this problem for about 5 hours now and I'm getting nowhere fast. I have a form with a private data session. In the data environment I'm opening 3 tables from two separate DBC's - one from LEDGER and two from CONTACTS. In the INIT method of the form I am receiving a parameter (which_type) from another form. Here's the code form my INIT method:
parameters which_type
set database to ledger
select tax_file
set filter to tax_type=which_type
go top
.... more code (unrelated to filter or table)....
When I run the form I get a wait window message ("Filter Cleared"
. I do not have anything in my form that would change the filter status (or show a wait window). I've used debugger but it hasn't revealed the source of the filter being cleared. I can tell that the filter is set when I leave the INIT method and the "Filter Cleared" message pops up as I enter the REFRESH method.
Does anyone have any idea where or how the filter is being cleared?
Steve
parameters which_type
set database to ledger
select tax_file
set filter to tax_type=which_type
go top
.... more code (unrelated to filter or table)....
When I run the form I get a wait window message ("Filter Cleared"
Does anyone have any idea where or how the filter is being cleared?
Steve