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

  • Thread starter Karthikeyan Periasamy
  • Start date
K

Karthikeyan Periasamy

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
 
S

Stefan Hoffmann

K

Karthikeyan Periasamy

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
 
S

Scott McDaniel

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top