Question CT LAB ver 6.70
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
after
VarBaseDockMaster:=TGlassDockMaster.Create(self);
//in your app
// Write
VarBaseDockMaster.LoadDefaultSettings;
until we fix this
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- joony3
- Offline
- New Member
-
- Posts: 14
- Thank you received: 0
but nothing changed after adding "VarBaseDockMaster.LoadDefaultSettings;" where you said.
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
C:\codetyphon\typhon\components\pl_GlassDocking\source\gd_dockingbase.pas
with this one
PilotLogic Architect and Core Programmer
Attachments:
Please Log in or Create an account to join the conversation.
- joony3
- Offline
- New Member
-
- Posts: 14
- Thank you received: 0
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- joony3
- Offline
- New Member
-
- Posts: 14
- Thank you received: 0
It's a modified version of dockpanel1 example in code ocean.
Thanks,
J
Attachments:
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
the docked forms have custom FormPaint event with clRED color (Pen.Color:=clRed;)
dummyfrm.pas line 64
procedure TSimpleForm.FormPaint(Sender: TObject);
begin
with Canvas do begin
Pen.Color:=clRed; // <<<====== THIS ======
MoveTo(0,0);
LineTo(ClientWidth-1,0);
MoveTo(ClientWidth-1,ClientHeight-1);
MoveTo(0,ClientHeight-1);
MoveTo(0,0);
MoveTo(ClientWidth-1,ClientHeight-1);
end;
end;
So, red color lines are normal
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- joony3
- Offline
- New Member
-
- Posts: 14
- Thank you received: 0
Now I've removed paint event...
Thanks anyway for you speed!
now...another thing...I see the new dock minimize button disappears sometimes...See screenshots.
J.
Attachments:
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
Only one form can "Minimize" at the same TGlassDockHostSite
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- Peter Heckert
-
- Offline
- Junior Member
-
- Posts: 62
- Thank you received: 3
Second: Please look at the attached image; it shows the "as is" state.
I believe, it should be the other way.

Attachments:
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
PilotLogic Architect and Core Programmer
Attachments:
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
LAB CodeTyphon Ver 6.7 Revision 006675
Please test, report and have fun.
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- Peter Heckert
-
- Offline
- Junior Member
-
- Posts: 62
- Thank you received: 3
and
Build - Shift+F9
both build the project (the EXE file)
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
we will try to fix and this
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- Klaus Riesterer
- Visitor
-
Worked fine in 6.6.
It's on Mint 19.1 64 Bit
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
I thing we fix that in current Unreleased Lab CT version
On Debian64 9.6 (now) all are OK
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
LAB CodeTyphon Ver 6.7 Revision 006680 RC3
Please test, report and have fun.
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- Peter Heckert
-
- Offline
- Junior Member
-
- Posts: 62
- Thank you received: 3
Some quick findings:
Build and compile both build the project.
The assembly window pops up during single step.
This happens preferrably when window event methods are singlestepped or threads are singlestepped.
It does not happen with fpdebug internal.
Windows 10, Typhon 6.7, 64 bit.
Please Log in or Create an account to join the conversation.
- Matis A.
-
Topic Author
- Away
- Moderator
-
after update GDB to 8.2.1 (CT revision 006680) we start full debug test cycles,
we check (again) and FreePascal Source code....
We will NOT release CT 6.7 final, if we don't solve these problems,
all other Lab tasks are closed.
PilotLogic Core Programmer
Please Log in or Create an account to join the conversation.
- Leonid
- Offline
- Junior Member
-
- Posts: 23
- Thank you received: 0
Example: CodeOcean/Database/samples/sqlite3lookupcombobox/ runtime error.
Compiling a project without errors, but running causes an exception ' ESyncObjectExeption '
with the message ' Failed to create OS basic event with name "" '
If you add a line ' {$DEFINE UseCThreads} 'to the file ' sqlite3lookupcombobox.ppr '
the program works fine
It seems to be related to pl_ZeosDBO ZClasses:
{ TZThreadTimer }
constructor TZThreadTimer.Create;
begin
inherited Create;
FSignal := TSimpleEvent.Create;
end;
Thanks to all your team for a great tool.
It's on Linux 4.9.0-8-amd64 #1 SMP Debian 4.9.130-2 (2018-10-27) x86_64 GNU/Linux
Typhon 6.7 r60042 FPC 3.3.1 x86_64-linux-gtk2
Please Log in or Create an account to join the conversation.