VB MSHFLEXGRID MSHFLEXGRID 绑定 CHECKBOX 另一法,推荐

Private Sub HFlexgrid_MouseDown(Button As Integer, Shift As Integer, X As Single, y As Single)
    '单击选择或不选择
    With HFlexgrid
        If .rows < 2 Then Exit Sub
        If .Row < 1 Or .Row > .rows - 1 Then Exit Sub
        If .TextMatrix(.Row, 0) = "√" Then
            .TextMatrix(.Row, 0) = "" '减少“选中金额”
            If Trim(.TextMatrix(.Row, 3)) = "31" Then
                txtfSumMoney_RMB.Text = Format(CDbl(txtfSumMoney_RMB.Text) - CDbl(.TextMatrix(.Row, 9)), "###0.00")
            End If
            If Trim(.TextMatrix(.Row, 3)) = "32" Then
                txtfSumMoney_USD.Text = Format(CDbl(txtfSumMoney_USD.Text) - CDbl(.TextMatrix(.Row, 11)), "###0.00")
            End If
            '改变行颜色
            For i_Col = 0 To .Cols - 1
                .Col = i_Col
                .CellBackColor = vbWhite
            Next i_Col
        Else
            .TextMatrix(.Row, 0) = "√" '增加“选中金额”
            If Trim(.TextMatrix(.Row, 3)) = "31" Then
                txtfSumMoney_RMB.Text = Format(CDbl(txtfSumMoney_RMB.Text) + CDbl(.TextMatrix(.Row, 9)), "###0.00")
            End If
            If Trim(.TextMatrix(.Row, 3)) = "32" Then
                txtfSumMoney_USD.Text = Format(CDbl(txtfSumMoney_USD.Text) + CDbl(.TextMatrix(.Row, 11)), "###0.00")
            End If
        '改变行颜色
            For i_Col = 0 To .Cols - 1
                .Col = i_Col
                .CellBackColor = &H80C0FF
            Next i_Col
        End If
    End With
End Sub

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值