Database
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
Hi, How can I update the view of my flexgrid control at run time? I want to display different query output passed to the remote data control connected to the flexgrid, at runtime. Please Help :)
-
You can use Update() or(refresh(),I'm not sure which one)for flexgrid controller,or you can use one of these functions for controller of it's Adoc. Mazy Don't Marry a Person You Can Live With... Marry Someone You Can Not Live Without
My code is this.... m_Rdc.SetSql ("Select * from emppers"); m_Rdc.Refresh (); m_Flex.Refresh (); m_Rdc is the member variable of type RemoteDataControl and m_Flex is of FlexGridControl. But this is not working. Is there any other way to do this. Pls Help..... :)