Question CT LAB ver 5.40
- Manos S. Pappas
-
- Offline
- Junior Member
-
The installed Carbon binary CTC is installed on /usr/lib/codetyphon/binCenter/ location which prohibits any actions from inside the program, as this process is executed with user privileges but the installed location requires root privileges.
For instance, it is impossible to update the CodeTyphon installation within the CTC Cocoa.
To resolve this I used cocoasudo which works great (the sudo command cannot be used with Carbon applications since they are launched without windows decorations and menus). Maybe this small Apache-licensed executable should be included in the 5.40 distribution and have the CTC icon link always ask the user to provide it's credentials.
Again, thank you very much for your help.
Best Regards,
Manos S. Pappas
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
Topic Author
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
we have 4x MacOS PC here (2x 10.9.x and 2x 10.10.x), yes it's not our favor OS

We use "sudo" with root privileges like any other Unix OS info
with no problems
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- Manos S. Pappas
-
- Offline
- Junior Member
-
sternas wrote: Sir
we have 4x MacOS PC here (2x 10.9.x and 2x 10.10.x), yes it's not our favor OS
We use "sudo" with root privileges like any other Unix OS info
with no problems
Thank you for the link.
I've performed this step before installing CodeTyphon on 10.10.3 but due to wrongly specified username the command did not work as expected.
Best Regards,
Manos S. Pappas
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
Topic Author
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
on MacOS we want a lot of work and help....

PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- Reinier Romero Mir
-
- Offline
- New Member
-
- Posts: 18
- Thank you received: 1
OS: Debian 7 32 bits GTK2
CT LAB: 5.30.
Please Log in or Create an account to join the conversation.
- usbdoo
- Visitor
-
Debian -- Debian 8 "Jessie"
Good work all
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
Topic Author
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
Changes log at first page
Please test, report and suggest here
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- Vbxler
- Visitor
-
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
Topic Author
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
have fun
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- marek
- Offline
- New Member
-
- Posts: 2
- Thank you received: 0
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
Topic Author
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
Changes log at first page
Some screens from Lab CT ver 5.40 RC1
Please test, report and suggest here
.
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- Vbxler
- Visitor
-
Win7-64 und xp-32, works without any error.
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
Topic Author
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
have fun
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- TheWolf
- Offline
- Junior Member
-
- Posts: 29
- Thank you received: 0
I have found until now only one error with the chipmunk example the compilation runs without an error but when I click into the window the programm crash.
This new version is good work CT will be better from version to version

Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
Topic Author
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
we have put a lot of working days to make CT better
have fun...
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- usbdoo
- Visitor
-
procedure TForm1.BitBtn1Click(Sender: TObject);
var ss:string ;
begin
ss:='bbb';
case ss of
'aaa','bbb','ccc':showmessage(ss);
end;
ss:='ccc';
case ss of
'aaa','bbb','ccc':showmessage(ss);
end;
end;
case not work.
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
Topic Author
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
add to your Unit
{$mode delphi}
More help here
Delphi pascal is NOT the same with Object Pascal
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- usbdoo
- Visitor
-
{$mode delphi}
does not support string.
{$mode objfpc}{$H+}
var ss:string ;
begin
ss:='aaa';
case ss of
'aaa':showmessage(ss);
end;
var ss:string ;
begin
ss:='bbb';
case ss of
'aaa','bbb','ccc':showmessage(ss);
end;
This code work CT LAB ver 5.30 ,
but it does not work CT LAB ver 5.40 .
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
Topic Author
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- atlandev.ct
- Offline
- Junior Member
-
- Posts: 48
- Thank you received: 0
When I re-open a project that contain a DataModule, the window "components" does not show me all the components that i can use even with a standard form
But when i take the precaution to close this DataModule before leaving and save my project, when i re-open my project, everything is fine. Even if I open my datamodule (visual components are hiding but appears when I select my form).
Please Log in or Create an account to join the conversation.