How to Add the Data grid and How to load the Grid?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to display the records in the Grid. In tools I m not able to
find out the Data Grid Property. In my Tools>> More Controls MS FlexGrid is
there.
even I want to Know How to load the MSFlex Grid.
Please help me ...,

Thanks and regards,
Karthikeyan P
 
Hello Stefan.,
Thank u for ur answer. But i have one more doubt. I m not able get that
property(Textmatrix) for the grid. "MSFlexGrid0.Textmatrix"
For that any reference i have to add?
Can u tell me with clear Explanation or some Simple Example?

Thanks and Regards,
Karthikeyan P
 
Hello Stefan.,
Thank u for ur answer. But i have one more doubt. I m not able get that
property(Textmatrix) for the grid. "MSFlexGrid0.Textmatrix"
For that any reference i have to add?
Can u tell me with clear Explanation or some Simple Example?

Access doesn't support Intellisense for most ActiveX objects, so you have to do this:

Dim obj As MSFlexGrid

Set obj = Me.YourFlexGrid.Object

Now the obj variable will provide you with Intellisense. Note also that the library you need may NOT be the MSFlexGrid
library ... I don't use it, so can't tell you what it is, but when you use the Dim statement, VBA will give you a
listing of all available libraries, so you can choose the correct one.

Thanks and Regards,
Karthikeyan P

Scott McDaniel
scott@takemeout_infotrakker.com
www.infotrakker.com
 
Back
Top