获取系统年份的函数和年月的函数是什么?(50分)

  • 主题发起人 主题发起人 清风徐来
  • 开始时间 开始时间

清风徐来

Unregistered / Unconfirmed
GUEST, unregistred user!
获取系统年份的函数和年月的函数是什么?
 

DecodeDate(Date, Year, Month, Day);

Date = 取当前日期
Year 年
Month 月
Day 日
 
请问怎么用呀,有没有例子,最好有源代码
 
u can get information from help files!!!
 
var
Year, Month, Day: Word;
begin
DecodeDate(Now, Year, Month, Day);
Showmessage(inttostr(Year));
Showmessage(inttostr(Month));
Showmessage(inttostr(Day));
end;
 
formatdatetime也可以啊!
 
var
Year, Month, Day: Word;
begin
DecodeDate(Now, Year, Month, Day);
inttostr(Year);
inttostr(Month);
inttostr(Day);
end;
 
formatdatetime('yyyy-mm-dd',date),可获得当前的年月日.
 
var
Year, Month, Day: Word;
begin
DecodeDate(Now, Year, Month, Day);
Showmessage(inttostr(Year)+inttostr(Month)+inttostr(Day));

end;
 
更简单的办法是
在你的单元的uses中,引用DateUtils单元

然后直接用函数MonthOf(), YearOf(), DayOf()和WeekOf()等函数来获得日期参数的
月、年、日、星期 的值

var
wYear: word;
begin
wYear := YearOf(now);
end;
 
var
Persitent: TDateTime;
Year, Month, Day: Word;
begin
Persitent := Now;
DecodeDate(Persitent, Year, Month, Day);
end;
 
在调用sql server的 getdata()函数
 
我一般用date获取日期(即年月日,YYYY-MM-DD),用now获取现在时间,直接运用就行.
 
到数据库服务器调用时间

然后根据楼上说的可能用 formatdatetim函数取其中的年、月、日字符。

也可用DecodeDate函数
 
delphi帮助上不是有嘛!
procedure TForm1.Button1Click(Sender: TObject);

var
Present: TDateTime;
Year, Month, Day, Hour, Min, Sec, MSec: Word;
begin
Present:= Now;
DecodeDate(Present, Year, Month, Day);
Label1.Caption := 'Today is Day ' + IntToStr(Day) + ' of Month '
+ IntToStr(Month) + ' of Year ' + IntToStr(Year);
DecodeTime(Present, Hour, Min, Sec, MSec);
Label2.Caption := 'The time is Minute ' + IntToStr(Min) + ' of Hour '
+ IntToStr(Hour);
end;
 
多人接受答案了。
 
后退
顶部