Atozed Forums
CrossTalk interface error - Printable Version

+- Atozed Forums (https://www.atozed.com/forums)
+-- Forum: Atozed Software Products (https://www.atozed.com/forums/forum-1.html)
+--- Forum: CrossTalk (https://www.atozed.com/forums/forum-2.html)
+---- Forum: CrossTalk General Discussion (https://www.atozed.com/forums/forum-7.html)
+---- Thread: CrossTalk interface error (/thread-2932.html)



CrossTalk interface error - delphi.developer - 11-25-2022

Hi everyone,
I installed crosstalk. I added NET.mscorlib to the uses unit. But I am getting the following error while compiling. does anyone have an idea about this?

[Image: 1.jpg]

[Image: 2.jpg]

[Image: 3.jpg]

[Image: 4.png]

[Image: 5.png]


RE: CrossTalk interface error - rlebeau - 11-25-2022

(11-25-2022, 12:50 PM)delphi.developer Wrote: I added NET.mscorlib to the uses unit. But I am getting the following error while compiling. does anyone have an idea about this?

interface is a reserved keyword in Delphi, it can't be used as an identifier.


RE: CrossTalk interface error - delphi.developer - 11-25-2022

(11-25-2022, 09:23 PM)rlebeau Wrote:
(11-25-2022, 12:50 PM)delphi.developer Wrote: I added NET.mscorlib to the uses unit. But I am getting the following error while compiling. does anyone have an idea about this?

interface is a reserved keyword in Delphi, it can't be used as an identifier.

you are right.I changed it to &interface. it works now. I hope it won't be a problem later.