I developed an application in Visual FoxPro 3.0 under Windows NT 4.0 beta2.
The app works fine under NT, but when I test on a machine with Windows 95
it does not work. It is possible I have some setting wrong on the 2nd
machine.
Anyway here is the setup:
I have a form with a combo box that is used to filter the data displayed
in a grid on the same form. In the combo box InteractiveChange event I
have the following code (which I got off the Microsoft KB):
ThisForm.FilterBatchNbr = This.Value
SET FILTER TO cBatchNbr = ThisForm.FilterBatchNbr
GO TOP
ThisForm.Refresh
Both machines are accessing the same data files on the network.
Currently there are three batchs ('000001', '000002', '000003').
The NT machine works perfectly. For each batch I select the associated
data is displayed in the grid.
On the 95 machine, if I select batch '000001', then I see the correct data in
the grid. If I select any other batch then NO data is displayed in the
grid.
I have used the debug window and confirmed that the correct value is being
placed into the FilterBatchNbr.
Does anyone have any ideas on this or seen anything simular??
Thanks in advance
Randy Palmer
Denver CO USA