我必须将代码从 vb6.0 转换为 vs2010。在 Vb6 中使用了尖锐的网格,但是当我将其转换为 vs2010 时,我在以下几行中遇到了问题
productGrid 是 vb6 的 Sharp Grid。productGrid 中有 13 列,第一列是复选框类型。
'Needed to get the dropdown list to refresh properly
lRow = ProductGrid.Row
lTopRow = ProductGrid.TopRow
ProductGrid.Row = IIf(lRow = 1, 2, lRow - 1)
ProductGrid.Row = lRow
ProductGrid.TopRow = lTopRow