MISSING: Property in ActiveX control

CrucialCode

New member
Joined
Aug 19, 2002
Messages
2
Hello,

I am in the process of migrating an application to .NET from VB6 which has been thus far and for the most part good and very enjoyable. This particular application uses the 10Tec iGrid 2.x and we need to continue using this because of the great functionality that it provides us. However, one key property/object of this control (the .ColDefaultCell) is missing and I cant figure out how to get it back.

Some points that may help you help me:

1.) From what I can tell it is a Collection of the CellObject class. So it is accessed like so: iGrid1.ColDefaultCell("COL_KEY").Property = Value
2.) A fully functioning demo can be downloaded from www.10tec.com.
3.) I am quite new to .NET but have been programming quite a long time, so please feel free to explain in advanced concepts if it is required. If you go beyond me Ill ask what you mean. :-)

Thank you,

Lloyd
 
Hello,

Ive found the answer to my own question. It seems that the property/object is now prefixed with "get_" so iGrid1.get_ColDefaultCell("etc").Property = Value

Hope that can help someone.

Lloyd
 
Back
Top