机房收费管理系统之金额返还信息查询

 本窗体思路,   站在巨人的肩膀上。

 

 

 Dim txtsql As String
    Dim Msgtext As String
    Dim mrc As ADODB.Recordset
    
    
    
    '设置起始日期不得大于终止日期   起始 begindate   终止 enddate
         If begindate.Value >= enddate.Value Then
           MsgBox "起始日期不得大于终止日期,请您重新输入!", vbOKOnly + vbExclamation, "提示"
          
           Exit Sub
        End If
    
    
    
    '查询选定范围里的数据
    txtsql = "select * from CancelCard_info where date > '" & begindate.Value & "' and date < '" & enddate.Value & "'"
    Set mrc = ExecuteSQL(txtsql, Msgtext)
    
    If mrc.EOF Then '无数据时提示
        MsgBox "该时间段无数据", vbOKOnly, "温馨提示:"
        Exit Sub
    End If
 
 
    With MSHFlexGrid1
        .Rows = 1
        .CellAlignment = 4
        .TextMatrix(0, 0) = "卡号"
        .TextMatrix(0, 1) = "退还日期"
        .TextMatrix(0, 2) = "退还时间"
        .TextMatrix(0, 3) = "退还金额"
        .TextMatrix(0, 4) = "充值教师"
        .TextMatrix(0, 5) = "结账状态"
           
        Do While Not mrc.EOF
            .Rows = .Rows + 1
            .CellAlignment = 4
            .TextMatrix(.Rows - 1, 0) = mrc.Fields(1)
            .TextMatrix(.Rows - 1, 1) = mrc.Fields(3)
            .TextMatrix(.Rows - 1, 2) = mrc.Fields(4)
            .TextMatrix(.Rows - 1, 3) = mrc.Fields(2)
            .TextMatrix(.Rows - 1, 4) = mrc.Fields(5)
            .TextMatrix(.Rows - 1, 5) = mrc.Fields(7)
            mrc.MoveNext
        Loop
     End With
     mrc.Close

 

评论 22
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Tzk_

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值