![]() |
|
Issue with TIWBSTabControl since 15.2.61 - Printable Version +- Atozed Forums (https://www.atozed.com/forums) +-- Forum: Atozed Software (https://www.atozed.com/forums/forum-1.html) +--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html) +---- Forum: English (https://www.atozed.com/forums/forum-16.html) +----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html) +----- Thread: Issue with TIWBSTabControl since 15.2.61 (/thread-2836.html) |
Issue with TIWBSTabControl since 15.2.61 - oystein.jakobsen@sas.no - 08-11-2022 Since 15.2.61 I get an EReadError exception when executing apps containing TIWBSTabControl components. Rolling back to 15.2.60 fixes the issue. Happens in D10.4.2. Not in D11. Error details: Exception message : Error reading IWBSTabControl1.ActiveTabFont.PxSize: Property PxSize does not exist Depending on the error condition, it might be possible to restart the application. Exception class : EReadError RE: Issue with TIWBSTabControl since 15.2.61 - Alexandre Machado - 08-15-2022 PxSize is a new published property of TIWFont, introduced in IW 15.2.61. There is no reason to get this error unless you are linking with the old DCUs. I suggest you check if your library path of Delphi 10.4.2 doesn't contain the path for an old IW version (possibly 15.2.60). If your design time package is a newer version (e.g. 15.2.61) but your linked DCUs are actually 16.2.60, you will certainly get this error. RE: Issue with TIWBSTabControl since 15.2.61 - oystein.jakobsen@sas.no - 08-15-2022 (08-15-2022, 01:26 AM)Alexandre Machado Wrote: PxSize is a new published property of TIWFont, introduced in IW 15.2.61. There is no reason to get this error unless you are linking with the old DCUs. Thank you for pointing at possible cause and solution. I will check for stray dcu's. Brgds Øystein (08-15-2022, 01:26 AM)Alexandre Machado Wrote: PxSize is a new published property of TIWFont, introduced in IW 15.2.61. There is no reason to get this error unless you are linking with the old DCUs. Correcting invalid library reference fixed the issue. Thanks again for pointing at the solution. Brgds Øystein RE: Issue with TIWBSTabControl since 15.2.61 - Alexandre Machado - 08-22-2022 That's great, Oystein. Thanks for your feedback |