2018年4月8日 星期日

BCB 筆記2 (TDateTime)

BCB TDateTime 時間操作及應用

在 BCB 裡有關時間的操作幾乎都是與 TDateTime 這個 Class 相關
若找不到相關資料可以用 BCB 的 HELP
( 游標移到要查詢的函式或Class 並按 F1 )

介紹幾個個人有在用的函式
TDateTimePicker->DateTime = Now();
TDateTimePicker->DateTime.DateTimeString();
TDateTimePicker 是常用的 BCB(VCL)元件
可以讓使用方便選擇日期+防呆

String date = "2018/4/8";
StrToDate(date);
將字串轉為 TDateTime 格式
double(TDateTimePicker1->DateTime)-double(TDateTimePicker2->DateTime)
直接代入double() 就可使 TDateTime 量化
這裡 double() 後的數值基本單位是天
1.5 = 一天半

參考資料
1. http://yanphph.blogspot.tw/2009/01/bcb-vcl.html
2. http://cshartuc.blogspot.tw/2016/10/bcb.html

Related Posts:

  • 讀書心得 - C++ Primer (5th Edition) - Chapter 2 (2) - Const 修飾詞 : Const     如果我們想要一個不可被改變的參數,這時就會需要這個修飾詞 ( Qualifier ) const。 const int bufSize = 512; // input buffer size bufSize = 1024; // error: attempt to write to const object Const + Reference  … Read More
  • Git - 刪除 submodule Git - delete submodule 因為上網 Google 這問題你會發現這個Stackoverflow和這個Github的答案。很久以前查的時候 stackoverflow 置頂的答案是以前最多 upvote 的答案,也就是 githb 的答案。但 git 在版本更新後那個 7 步刪除 submodule 的已經過時了。雖然還是可以用但現在三步就可完成。 # 用 git submodule deinit… Read More
  • JQuery - $( document ).ready() JQuery - $( document ).ready() 鑒於 $( document ).ready() 有縮寫,導致初學者如我看不懂,這裡紀錄一下。 基本版本 $( document ).ready() 基本上是等 Document Object Model ( DOM ) 好了後,可以執行 JavaScript code 時啟動。另外常見的 $( window ).on( "load", funct… Read More
  • 讀書心得 - C++ Primer (5th Edition) - Chapter 2 (1) - Primitive Types C++ 原生內建的資料型態 ( Primitive Types )     C++ 定義了一些算術用的資料型態 ( Arithmetic Types ) 和一個特殊的資料型態 void。Arithmetic Types : Integer, Character, Boolean, Floating Point, Double Floating Point, Wide Character。     下面為一… Read More
  • Google API 筆記總覽 Python Google API - Python 學習筆記 Google API - Python 學習筆記 - Upload post … Read More

0 意見:

張貼留言

Popular Posts