Title: Demo's Post by: Ronald van Tour on August 22, 2011, 08:09:38 PM Hi Danijel
I have installed V4.27 on Delphi XE and compiled al demo's. All demo's work but DEMO about Linked Objects give error at: { Subscribe to receive "FileSrv" broadcasts, which are used here to update the number of Total and Active (uploading) File Servers. } Link.Subscribe('FileSrv'); [DCC Error] loFileSrv.pas(71): E2003 Undeclared identifier: 'Broadcast' best regards Ronald Title: Re: Demo's Post by: D.Tkalcec (RTC) on August 22, 2011, 08:41:26 PM My first guess would be that you have more than one RTC SDK copy on your PC and your Library path points to an older RTC SDK "Lib" folder, in which the TRtcLinkedModule exists, but does not have the "Broadcast" method yet ("Broadcast" method was added in "v4.24", but the "TRtcLinkedModule" class was introduced in "v4.21").
If that's not the case, my 2nd guess is that you have copied the "Lib" folder over an older "Lib" folder and used "compile" instead of "build", in which case it is possible that Delphi did not recompile all the units. Anyway ... I have just tested that Project and it compiles fine on my PC (using D7 and XE). Best Regards, Danijel Tkalcec Title: Re: Demo's Post by: Ronald van Tour on August 22, 2011, 08:50:14 PM You are right:
Library path pointed (also) to an older RTC SDK "Lib" folder Thanks Title: Re: Demo's Post by: D.Tkalcec (RTC) on August 22, 2011, 09:04:42 PM You're welcome :)
|