本文介绍了让这一天从凌晨02:00开始,而不是凌晨12:00的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好。

有什么想法让一天的开始时间是凌晨02:00而不是凌晨12:00?

is there any idea to make the starts of day be on 02:00AM hour instead of 12:00AM?

实际上,我已经在vb.net中开发了一个打印餐馆账单的软件。

actually, i have developed a software in vb.net that print a bills of a restaurant.

此应用程序打印客户队列的序列号,并且必须重置此队列号每隔一天新增一次。

this app prints a serial number for customer queue, and this queue number must be reset to 1 every new day.

我的问题是:餐厅的一天 结束于凌晨2:00而不是凌晨12:00,并且号码在凌晨12:00而不是凌晨2:00重置为1.

my problem is: the day in restaurant  ends on 2:00AM not 12:00AM and the number reset to 1 on 12:00AM not 2:00AM.

我使用此代码:

    Private Sub getlastsnum()
        Dim sqlstr As String = "Select max(snum) From tblbill where idate >  '" & Today.Date.ToString("yyyy/MM/dd") & "' "
        Dim anyDataTable As DataTable = clsDBase.GetDataTable(sqlstr)
        If anyDataTable.Rows.Count >= 1 Then
            TextBox6.Text = If(IsDBNull(anyDataTable.Rows(0).Item(0)), 1, anyDataTable.Rows(0).Item(0) + 1)
        End If
    End Sub

任何想法都可以!

提前感谢。

推荐答案


这篇关于让这一天从凌晨02:00开始,而不是凌晨12:00的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-26 15:45