cancel
Showing results for 
Search instead for 
Did you mean: 

Problem about GuiTableControl VB.net

Former Member
0 Kudos


Dim guiTab As SAPFEWSELib.GuiTableControl
guiTab = CType(session.findByID("/app/con[0]/ses[0]/wnd[0]/usr/tabsTAXI_TABSTRIP_OVERVIEW/tabpT\01/ssubSUBSCREEN_BODY:SAPMV45A:4400/subSUBSCREEN_TC:SAPMV45A:4900/tblSAPMV45ATCTRL_U_ERF_AUFTRAG"), SAPFEWSELib.GuiTableControl)


 If guiTab.RowCount > 0 Then  
            Dim rwindex=0
              For Each r1 As SAPFEWSELib.GuiTableRow In guiTab.Rows                      
                    rwindex=rwindex+1
             Next
             System.console.WriteLine("Total row is "+ rwindex.toString())
 End If

Print result : Total rows is 15

But ,Actually the total rows is more than 15 in the GuiTableControl. We can drop-down scroll bar

found have some row displayed which one was hiden before.

Please kindly teach me how to solve this problem.

Thanks.Best.Regard

justin

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Dears

Have some rows's status is not visible in the GuiTableControl, So we need page down through change the value of VerticalScrollbar.Position .

My question is how to scan all row in GuiTableControl when more than one page

Thanks.Regard.