菜菜吃菜 2022-05-21 11:27 采纳率: 57.5%
浏览 40
已结题

devxpress gridView控件读取sql读取时间为整数,转换为 小时 分 秒

 ds = SqlHelper.ExecuteDataset(connstr, CommandType.Text, sql);
            gridControl12.DataSource = ds.Tables[0].DefaultView;
            this.gridView12.BestFitColumns();

[img](https://img-mid.csdnimg.cn/release/static/image/mid/ask/085793301356117.png "#left")

230秒 转换为 00小时03分08秒 然后显示到 gridView12 中,怎样实现呢?
我是初学者请提供详细的代码和方法

  • 写回答

3条回答 默认 最新

  • 歇歇 2022-05-27 23:37
    关注

    用下面这个函数

    
    private string sec_to_hms(long duration)
    {
        TimeSpan ts = new TimeSpan(0, 0, Convert.ToInt32(duration));
        string str = "";
        if (ts.Hours > 0)
        {
            str = String.Format("{0:00}", ts.Hours) + ":" + String.Format("{0:00}", ts.Minutes) + ":" + String.Format("{0:00}", ts.Seconds);
        }
        if (ts.Hours == 0 && ts.Minutes > 0)
        {
            str = "00:" + String.Format("{0:00}", ts.Minutes) + ":" + String.Format("{0:00}", ts.Seconds);
        }
        if (ts.Hours == 0 && ts.Minutes == 0)
        {
            str = "00:00:" + String.Format("{0:00}", ts.Seconds);
        }
        return str;
    }
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

问题事件

  • 系统已结题 6月5日
  • 已采纳回答 5月28日
  • 修改了问题 5月21日
  • 创建了问题 5月21日

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?