hello,
i am facing a problem when getting data within acxtable. "error not specified". the table has 30 rows but when I run the script appears only 7 of them (so i had to add make cell visible) but when row pass the 7th, make cell visible passed ok, select cell passes ok , but error appear with get cell data (error not specified)...can you help me with this. here is the code
i am facing a problem when getting data within acxtable. "error not specified". the table has 30 rows but when I run the script appears only 7 of them (so i had to add make cell visible) but when row pass the 7th, make cell visible passed ok, select cell passes ok , but error appear with get cell data (error not specified)...can you help me with this. here is the code
Code:
i=1
While i<=rowcount
VbWindow("frmTracking").VbWindow("frmOpCons").ActiveX("SSSplitter").AcxTable("Visor de Operaciones").MakeCellVisible i,1
VbWindow("frmTracking").VbWindow("frmOpCons").ActiveX("SSSplitter").AcxTable("Visor de Operaciones").SelectCell i,1
aux=VbWindow("frmTracking").VbWindow("frmOpCons").ActiveX("SSSplitter").AcxTable("Visor de Operaciones").GetCellData( i,1)
i=i+1
wend