/***************************************************
Created Date: 13 Jul 2013
Created By: Jimmy Xie(Tectura)
Helpdesk Ticket#: TB001613 - Accounts Payable Positive Pay
Description of Behavior: Format time to temp str.
Expected Input:
Expected Output:
***************************************************/
public static TempStr time2StrHHMM_DNT(int _tIME)
{
    str hourStr;

    hourStr = num2str( _tIME div 3600       ,2,0,0,0);
    hourStr = strReplace(hourStr,' ','0');
    return hourStr+
           num2Str0(_tIME mod 3600 div 60,2,0,0,0);
}

 

相关文章:

  • 2021-09-05
  • 2021-10-27
  • 2021-12-22
  • 2021-09-26
  • 2022-01-27
  • 2021-08-12
  • 2021-08-10
  • 2021-09-24
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-30
  • 2022-12-23
  • 2021-07-18
  • 2021-08-02
  • 2021-07-17
相关资源
相似解决方案