unit问题!!!(10分)

  • 主题发起人 主题发起人 gyfstar
  • 开始时间 开始时间
G

gyfstar

Unregistered / Unconfirmed
GUEST, unregistred user!
各位富翁:
  我想新创一个unit,在unit里边写 procedur , function ,然后在其它form里调用
可是出现了以下错误:
[Error] uwh.pas(37): This form of method call only allowed for class methods。
unit 的书写有什么格式吗?
 
调用的时候前面加上单元文件名,九成是与类中的方法有冲突。
 
type 和 end 之间的代码怎么写呢?我很着急呀
type
......
end;
implementation
procedure tx();
begin
end;
 
type
myClass=Class
procedure tx();
...........
end;

implementation

procedure tx();
begin
end;
 
多人接受答案了。
 
后退
顶部