SSRS 2005 以 HH:MM:SS 格式显示持续时间超过 24 小时的秒数
首先感谢大家的帮助!!!
我想做的就是获取一些在 SSRS 2005 中工作的 VB.net 代码,将 123465 显示为 34:17:45。
这是我到目前为止所尝试过的:
Public Shared Function secondsToString(seconds As int64) As String
Dim myTS As New TimeSpan(seconds * 10000000)
If seconds > 0 then
Return String.Format("{0:00}:{1:00}:{2:00}",myTS.Hours, myTS.Minutes, myTS.Seconds)
Else
Return ""
End if
End Function
您能提供的任何帮助都会很棒!
再次感谢!
First off, thank you to everyone for your help!!!
All I'm trying to do is get some VB.net code that works in SSRS 2005 to display 123465 as 34:17:45.
This is what I've tried so far:
Public Shared Function secondsToString(seconds As int64) As String
Dim myTS As New TimeSpan(seconds * 10000000)
If seconds > 0 then
Return String.Format("{0:00}:{1:00}:{2:00}",myTS.Hours, myTS.Minutes, myTS.Seconds)
Else
Return ""
End if
End Function
Any help you can provide would be great!
Thanks again!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)