Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Where can I find IWClassesFix.pas
#2
This file is not distributed with our source code because it contains parts of copyrighted code (from Delphi itself) which is partly replicated.

The best thing to do is to disable the IWClassesFix. It won't interfere with your code and it will be much easier for you to debug it (believe me, debugging IWClassesFix is painful).

To disable it you just need to add one line to your main DPR file

Code:
program Program1;

uses
  IWStart,
  Unit1 in 'Unit1.pas' {IWForm1: TIWAppForm},
  ServerController in 'ServerController.pas' {IWServerController: TIWServerControllerBase},
  UserSessionUnit in 'UserSessionUnit.pas' {IWUserSession: TIWUserSessionBase};

{$R *.res}

begin
  TIWServerController.FixupPatchEnabled := False;  // ADD THIS LINE
  TIWStart.Execute(True);
end.

This will disable it completely.

If you still need it anyway, feel free to write me at alexandre [at] atozed dot com

BTW, do you have the call stack of the exception?

Cheers,
Reply


Messages In This Thread
RE: Where can I find IWClassesFix.pas - by Alexandre Machado - 06-20-2020, 02:55 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)