单击python中QtableWidget单元格中的按钮后得到错误的行索引

时间:2017-05-26 07:15:05

标签: python

我已经为Qtablewidget的每个单元格添加了按钮,当我点击按钮它给出了错误的行索引,例如,如果我点击第1行(满分10分)按钮,我得到行索引0不是1,< / strong>我无法理解为什么会发生这种情况

Private Sub Form_ApplyFilter(Cancel As Integer, ApplyType As Integer)
    Dim rs As DAO.Recordset

    Set rs = Me.RecordsetClone
    rs.Filter = Replace(Me.Filter, "[Tabelle1].", "")
    Set rs = rs.OpenRecordset()

    If rs.EOF Then
        Cancel = True
    End If
End Sub

请让我知道这个问题

0 个答案:

没有答案