roam frxDBDataset.X
Hi everyone, sorry for my english.
Could help me somebody to roam a frxDataSet.X???
I explain me, if por example we do this query "select * from city", the masterdata will roam every row and it will show it.
I want do it manually, for show only some rows and not others.
Really I want do this for show only the value != 0
Thanks.
Could help me somebody to roam a frxDataSet.X???
I explain me, if por example we do this query "select * from city", the masterdata will roam every row and it will show it.
I want do it manually, for show only some rows and not others.
Really I want do this for show only the value != 0
Thanks.
Comments
MasterData1.Visible := <frxDataSet."X"> <> 0;
in MasterData1.OnBeforePrint event
"select * from city where X <> 0"
the solution always was here, it was very easy.
finally i have used another master data, with <> 0 option enabled (this was only a example, i have a more complicated case and it was not only a simple <> 0), but i needed know other value associated at main value.
Thanks anyway.