Forum Discussion
rramkis
10 years agoNew Contributor
Function retriveRnumber(GridObj,expected1,expected2)
resultfound = false
totalrows = GridObj.wRowCount
totalcolumns = GridObj.wColumnCount
for i = 0 to totalrows-1
for j = 0 to totalcolumns-1
val1 = GridObj.wValue(i, j)
'if val1 = obj.cells(i,j).value
if val1 = expected1 then
for k = j to totalcolumns
val2 = GridObj.wValue(i, k)
if val2 = expected2 then
exit for
else
log.Error "not as expected"
end if
next
end if
if val1 = expected1 and val2 = expected2 then
resultfound = true
else
log.Error "result not found"
end if
next
next
End Function
its devexpress table
Colin_McCrae
10 years agoCommunity Hero
What language is the application developed in? And what is the classname of the DevExpress grid. They do more than one kind. The link baxatob posted contains links to how you work with a couple of DevExpress grid specifically.