W
wzw
Unregistered / Unconfirmed
GUEST, unregistred user!
我这样写:
if (str<>'') or (str<>NUll) then
出如下错误:
[Error] common.pas(466): Undeclared identifier: 'Null'
改为这样:
if (str<>'') or (not str.isNUll) then
出如下错误:
[Error] common.pas(689): Record, object or class type required
到底该怎样写??请高手回答!!!我给200分!!
if (str<>'') or (str<>NUll) then
出如下错误:
[Error] common.pas(466): Undeclared identifier: 'Null'
改为这样:
if (str<>'') or (not str.isNUll) then
出如下错误:
[Error] common.pas(689): Record, object or class type required
到底该怎样写??请高手回答!!!我给200分!!