| View previous topic :: View next topic |
| Author |
Message |
Lunartique07 How do I cheat?
Reputation: 0
Joined: 24 Feb 2020 Posts: 3
|
Posted: Mon Feb 24, 2020 9:36 pm Post subject: TControl.ChangeBounds loop detected |
|
|
Whenever I attempt to open Physical Memory i get this error message:
TControl.ChangeBounds loop detected :TCheckBox
Left=0.Top=1000.Width=118.Height=18
NewLeft=0.NewTop=1001.NewWidth=118.NewHeight=18
Which causes my adresslist to disappear,
Any help would be appreciated.
|
|
| Back to top |
|
 |
Dark Byte Site Admin
Reputation: 471
Joined: 09 May 2003 Posts: 25830 Location: The netherlands
|
Posted: Tue Feb 25, 2020 12:59 am Post subject: |
|
|
which ce version?
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
| Back to top |
|
 |
Lunartique07 How do I cheat?
Reputation: 0
Joined: 24 Feb 2020 Posts: 3
|
Posted: Tue Feb 25, 2020 3:02 am Post subject: |
|
|
| 7.0
|
|
| Back to top |
|
 |
Corroder Grandmaster Cheater Supreme
Reputation: 75
Joined: 10 Apr 2015 Posts: 1668
|
Posted: Wed Feb 26, 2020 1:13 pm Post subject: |
|
|
I think that is Lazarus bug, not CE. Check on MainUnit.pas near line 2862 about 'cbsaferPhysicalMemory' anchors.
From this:
| Code: | cbsaferPhysicalMemory:=tcheckbox.create(self);
cbsaferPhysicalMemory.Caption:=strSaferPhysicalMemory;
cbsaferPhysicalMemory.Checked:={$ifdef windows}dbk32functions.saferQueryPhysicalMemory{$else}false{$endif};
cbsaferPhysicalMemory.AnchorSame(akTop,cbPauseWhileScanning); // trick with AnchorSame
cbsaferPhysicalMemory.AnchorSame(akLeft,cbPauseWhileScanning);
cbsaferPhysicalMemory.AnchorSame(akRight,cbPauseWhileScanning);
cbsaferPhysicalMemory.AnchorSame(akBottom,cbPauseWhileScanning);
cbsaferPhysicalMemory.BorderSpacing.Assign(cbPauseWhileScanning.BorderSpacing); // clone spacing
cbsaferPhysicalMemory.OnChange:=cbSaferPhysicalMemoryChange;
cbsaferPhysicalMemory.Parent:=cbPauseWhileScanning.Parent;
cbsaferPhysicalMemory.Name:='cbsaferPhysicalMemory'; |
To this one??:
| Code: | cbsaferPhysicalMemory:=tcheckbox.create(self);
cbsaferPhysicalMemory.Caption:=strSaferPhysicalMemory;
cbsaferPhysicalMemory.Checked:=dbk32functions.saferQueryPhysicalMemory;
cbsaferPhysicalMemory.Parent:=cbPauseWhileScanning.Parent;
cbsaferPhysicalMemory.left:=cbPauseWhileScanning.left;
cbsaferPhysicalMemory.Top:=cbPauseWhileScanning.top;
cbsaferPhysicalMemory.AnchorSame(akTop,cbPauseWhileScanning); // trick with AnchorSame
cbsaferPhysicalMemory.AnchorSame(akLeft,cbPauseWhileScanning);
cbsaferPhysicalMemory.AnchorSame(akRight,cbPauseWhileScanning);
cbsaferPhysicalMemory.AnchorSame(akBottom,cbPauseWhileScanning);
cbsaferPhysicalMemory.BorderSpacing.Assign(cbPauseWhileScanning.BorderSpacing); // clone spacing
cbsaferPhysicalMemory.OnChange:=cbSaferPhysicalMemoryChange;
cbsaferPhysicalMemory.Parent:=cbPauseWhileScanning.Parent;
cbsaferPhysicalMemory.Name:='cbsaferPhysicalMemory';
|
_________________
Stealing Code From Stolen Code...
And Admit It.. Hmmm....Typically LOL |
|
| Back to top |
|
 |
Lunartique07 How do I cheat?
Reputation: 0
Joined: 24 Feb 2020 Posts: 3
|
Posted: Thu Feb 27, 2020 6:12 am Post subject: |
|
|
Where do I find the lpi file for CE?
-Thanks.
|
|
| Back to top |
|
 |
Corroder Grandmaster Cheater Supreme
Reputation: 75
Joined: 10 Apr 2015 Posts: 1668
|
|
| Back to top |
|
 |
|