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,3)) = "32" Then txtfSumMoney_USD.Text = Format(CDbl(txtfSumMoney_USD.Text) + CDbl(.TextMatrix(.Row,"###0.00") End If '改变行颜色 For i_Col = 0 To .Cols - 1 .Col = i_Col .CellBackColor = &H80C0FF Next i_Col End If End WithEnd Sub

相关文章

Format[$] ( expr [ , fmt ] ) format 返回变体型 format$ 强...
VB6或者ASP 格式化时间为 MM/dd/yyyy 格式,竟然没有好的办...
在项目中添加如下代码:新建窗口来显示异常信息。 Namespace...
转了这一篇文章,原来一直想用C#做k3的插件开发,vb没有C#用...
Sub 分列() ‘以空格为分隔符,连续空格只算1个。对所选...
  窗体代码 1 Private Sub Text1_OLEDragDrop(Data As Dat...