using FlexArray or any such control

prodigy

Registered User.
Local time
Today, 03:07
Joined
Apr 22, 2005
Messages
66
Am using MS Access 2000. I would like to include a spreadsheet (datagrid or flexgrid) type thing on one of the form that would display the return of a query. Now, I have found that there is ActiveX control (Video Soft FlexArray Control) available on my system (in the ActiveX Control DialogBox). However, am not aware, how to use it. Can anyone help me with the issue. Any help is appreciated.
prodigy.
 
Hi prodigy,

Sorry for my late reply, coz I just joined to the forum recentley.

Using of MS FlexArray control or VideoSoft FlexArray Control in Access VBA is the same when you use it in the normal MS VB6. So, if you know how to use it in VB6, you can use it in Access VBA.

Don't wary about the methods drop-down menu if it's not containing the method you want to use. Just put it as VB6 and it will work.

For Example:

MSFlexArray.Cols = 10
MSFlexArray.Rows = 10

MSFlexArray.Col = 5
MSFlexArray.Row = 5
MSFlexArray.Text = "Testing ... 123"


Thanks.

Best regards,

The Black Code
 
Late reply? Five years after the post? Heavens no, that's not late. <roflmao>
 
Thanks you Black Code, I am looking for a comprehensive documentation on FlexArray but could not find in the net. Do you have any?

mrashid


Hi prodigy,

Sorry for my late reply, coz I just joined to the forum recentley.

Using of MS FlexArray control or VideoSoft FlexArray Control in Access VBA is the same when you use it in the normal MS VB6. So, if you know how to use it in VB6, you can use it in Access VBA.

Don't wary about the methods drop-down menu if it's not containing the method you want to use. Just put it as VB6 and it will work.

For Example:

MSFlexArray.Cols = 10
MSFlexArray.Rows = 10

MSFlexArray.Col = 5
MSFlexArray.Row = 5
MSFlexArray.Text = "Testing ... 123"


Thanks.

Best regards,

The Black Code
 
Hi mrashid,

Please find the attached file is the CHM developer guide for FlexArray control.

Please note that FlexArray is no longer belong to Microsoft, as it's for VideoSoft.


Thanks.
 

Attachments

Users who are viewing this thread

Back
Top Bottom