07-25-2006 07:54 AM
And thanks a lot for your interest in our control!
(1) My problem is I doesn't see the cells(row, col) matrix property ?! (see the attach picture).
As I can guess from your screen shot, LabView does not correctly manage (display) index properties. In core all properties are replaced with corresponding methods during compilation. These methods has names get_[PropertyName] and set_[PropertyName]. The first one is used to access a property value, the second one to assign property value. The metadata of an assembly just stores the name of the property and the methods which are used as the property’s accessors. In your case, you should use the get_Item method (it corresponds to the Item property of the iGCellCollection class) which will return you a cell by its row and column index or key:
fGrid.Cells.get_Item(rowIndex, colIndex)
Has someone got an idea
thank you
derek
07-26-2006 05:45 PM
Hi Derek,
Is it possible to get an evaluation copy of the control from the company/you so we may reproduce the problem? Also, what version of LabVIEW and .NET are you using?
Regards,
Ankita
07-26-2006 06:18 PM
07-27-2006 04:47 AM
Thank you Volker for your ideas. Now it works fine.
Hello Ankita. You can get a copy (evaluation copy) of the .net control at http://www.10tec.com. There are also an ActiveX control but the .net has much capability. The product name is iGrid.net. You will see this product is really amazing and it's not expensive for all his possibility it offers. I was searching on the web for a sort of control (all in one lost cost control) to configure my test system and to represent my test data when i have see this control. Like i have some problems to make it run in LabVIEW, i have ask the 10tec team and they are very interested to make it work for the LabVIEW community (LabVIEW example library or at www.lavag.org). They doesn't know LabVIEW but they will download an evaluation copy and try to make some example work in LabVIEW. So if never you got some free time on any body else, you can participate. I give you the name of developpers working on it an 10tec : Serge Gorbenko and Igor Katenev. They can be contact on the support email : support@10tec.com
Derek