When you code in MS Access, in the VBA editor you do not see the list of the members of an ActiveX control when you type in its name and "." (dot). Instead, you see a list of members MS Access as a host environment provides you with.
To have the ability to use the list of the "real" members in the IntelliSense list, you need to access the Object sub-property and cast it to the proper object data type. For iGrid ActiveX the code will look like the following:
Dim grd As iGrid
Set grd = iGrid0.Object
Now, when you type in "grd.", you'll see the iGrid members, such as the RowCount or RowMode property, or the FillFromRS method.
Edited by user
2016-10-06T07:29:54Z
|
Reason: Igor/10Tec added code formatting