B
bird
Unregistered / Unconfirmed
GUEST, unregistred user!
DLL中的 程序如下
function GetDay(dat:Tdate):string;
var
Year,Month,Day:word;
TempDay,TempMonth:string;
begin
DecodeDate(Dat,Year,Month,Day);
if length(IntToStr(Month))=1 then
TempMonth:='0'+IntToStr(Month)
else
TempMonth:=IntToStr(Month);
if length(IntToStr(Day))=1 then
TempDay:='0'+IntToStr(Day)
else
TempDay:=IntToStr(Day);
GetDay:=TempMonth+TempDay;
end;
在程序中调用能返回正确的值,但产生一个异常
“Invalid pinter operation”
请问这是什么原因引起的,我怎么样能解决
------------------------------------
我已经一个月访问不到这了,DNS 连大富翁的IP都解析不到
//我的ISP是北京的东方网景
今天无心一试,竟奇迹般的上来了,真让我高兴!!!!!!!!!
function GetDay(dat:Tdate):string;
var
Year,Month,Day:word;
TempDay,TempMonth:string;
begin
DecodeDate(Dat,Year,Month,Day);
if length(IntToStr(Month))=1 then
TempMonth:='0'+IntToStr(Month)
else
TempMonth:=IntToStr(Month);
if length(IntToStr(Day))=1 then
TempDay:='0'+IntToStr(Day)
else
TempDay:=IntToStr(Day);
GetDay:=TempMonth+TempDay;
end;
在程序中调用能返回正确的值,但产生一个异常
“Invalid pinter operation”
请问这是什么原因引起的,我怎么样能解决
------------------------------------
我已经一个月访问不到这了,DNS 连大富翁的IP都解析不到
//我的ISP是北京的东方网景
今天无心一试,竟奇迹般的上来了,真让我高兴!!!!!!!!!