程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> 在Delphi中處理數據庫日期型字段的顯示與輸入===主窗口單元

在Delphi中處理數據庫日期型字段的顯示與輸入===主窗口單元

編輯:Delphi

{主窗口單元}
unit Main;

interface

uses
……{略去其他內容}
procedure Table1BirthdayGetText(Sender: TField;
var Text: String;DisplayText: Boolean);
procedure Table1BirthdaySetText(Sender: TField;
const Text: String);
private
{ Private declarations }
public
{ Public declarations }
……{略}
implementation

{將自定義的單元包含進來}
uses DBDateEditMaskTrans;

{$R *.DFM}
……{其他過程略}
procedure TForm1.FormActivate(Sender: TObject);
{設置一個日期型字段的輸入掩碼,
可以放到TField字段定義中。}
begin
  Table1.FieldByName(Birthday).EditMask:=
9999年99月99日;1;_;
end;

procedure TForm1.Table1BirthdayGetText(Sender:
TField; var Text: String;DisplayText: Boolean);
begin
  DateFieldGetText(Sender,Text);
end;

procedure TForm1.Table1BirthdaySetText(Sender:
TField; const Text: String);
begin
  if DateFieldSetText(Sender,Text)=False then
    Abort; {轉換不成功,日期非法}
end;

end.

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved