VBScript中的Nothing在Delphi里如何表示(100分)

  • 主题发起人 主题发起人 jacyoicq
  • 开始时间 开始时间
J

jacyoicq

Unregistered / Unconfirmed
GUEST, unregistred user!
如:
IF C IS Nothing THEN
....
END IF
 
if c = nil then
begin
......
end;
 
不对,Imcompatible types
 
c如果是variant用varisnull(c)
 
if not assigned(c) then
begin
......
end;
 
接受答案了.
 
后退
顶部