An intuitive utility to help find the CSS path to UI elements on a webpage. These paths are used frequently in a variety of front-end development and QA automation tasks.
One of a set of tools we're offering as a way of saying thank you for being a part of the community.
Private Sub Tab2_populate_Grid(sDetail
dim fsHeader as string
Me.msEstSummary(1).Font.Bo
fsHeader = vbNullString
Call Tab2_Grid_Header(fsHeader)
Me.msEstSummary(1).Redraw = False
If iNumRows <> 0 Then
Me.msEstSummary(1).Rows = iNumRows + 1
Else
Me.msEstSummary(1).Rows = iNumRows + 2
End If
Me.msEstSummary(1).Cols = EstNoOfCols 'constant 'NoOfRows
Me.msEstSummary(1).FixedRo
Me.msEstSummary(1).FixedCo
Me.msEstSummary(1).Row = 0
Me.msEstSummary(1).Col = 0
Me.msEstSummary(1).RowSel = iNumRows
Me.msEstSummary(1).ColSel = EstNoOfCols - 1
Me.msEstSummary(1).Clip = fsHeader & sDetailBuffer
Me.msEstSummary(1).Redraw = True
End Sub
Private Sub Tab2_Grid_Header(fsHeader As String)
fsHeader = "Item ID" & vbTab & _
"Item Description" & vbTab & _
"PC" & vbTab & _
"UOM" & vbcr
End Sub