Welcome, Guest
Username: Password: Remember me
Lab CT Version, news, test results, new features request and suggestions

TOPIC:

CT LAB ver 5.80 7 years 10 months ago #9554

  • universe
  • universe's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 122
  • Thank you received: 8

Bram van Vliet wrote: Hello,

The IDE search and replace dialog at the moment appears to default the "Search scope" setting to "Global" instead of "Selected text". Don't know if its a feature or a bug but it bit me more than once replacing a lot more than intended...

I just upgraded to the lab version from 04-04-2016 and my OS is Mint 17.3 Cinnamon x64.

Thanks for all the great work!

Same thing in CT 5.7, search dialogue doesn't work the radio buttons always in default state

Please Log in or Create an account to join the conversation.

CT LAB ver 5.80 7 years 10 months ago #9555

  • Sternas Stefanos
  • Sternas Stefanos's Avatar Topic Author
  • Offline
  • Moderator
  • Moderator
  • Ex Pilot, M.Sc, Ph.D
  • Posts: 4506
  • Thank you received: 1100
Thanks Sir
have fun :)
PilotLogic Architect and Core Programmer

Please Log in or Create an account to join the conversation.

CT LAB ver 5.80 7 years 10 months ago #9556

  • universe
  • universe's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 122
  • Thank you received: 8
:)

Please Log in or Create an account to join the conversation.

CT LAB ver 5.80 7 years 10 months ago #9636

  • zeljko
  • zeljko's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 207
  • Thank you received: 38
When we expect the final version, CodeTyphon 5.8

Please Log in or Create an account to join the conversation.

Last edit: by zeljko.

CT LAB ver 5.80 7 years 10 months ago #9638

  • Sternas Stefanos
  • Sternas Stefanos's Avatar Topic Author
  • Offline
  • Moderator
  • Moderator
  • Ex Pilot, M.Sc, Ph.D
  • Posts: 4506
  • Thank you received: 1100
Sir
we start the “release cycle” NO ETA yet.
We finish Windows-Linux-Solaris-MacOS tests
and now we test FreeBSD hosts

I hope 3-4 days :blush:
PilotLogic Architect and Core Programmer
The following user(s) said Thank You: zeljko, usbdoo

Please Log in or Create an account to join the conversation.

Last edit: by Sternas Stefanos.

CT LAB ver 5.80 7 years 9 months ago #9652

  • Sternas Stefanos
  • Sternas Stefanos's Avatar Topic Author
  • Offline
  • Moderator
  • Moderator
  • Ex Pilot, M.Sc, Ph.D
  • Posts: 4506
  • Thank you received: 1100
We release LAB CodeTyphon Studio ver 5.8.0 Revision 005750 BETA
changes at first post
Please, test, report and have fun...
PilotLogic Architect and Core Programmer

Please Log in or Create an account to join the conversation.

CT LAB ver 5.80 7 years 9 months ago #9659

  • Alex
  • Alex's Avatar
  • Offline
  • New Member
  • New Member
  • Posts: 2
  • Thank you received: 0
Sir, I have found a bug:

program Project1;
{$mode delphi}
type
TRec = record
procedure Proc<T>;
end;
procedure TRec.Proc<T>;
begin
end;
begin
end.

F9- compile success
press any where the ctrl + space for code completion and get the error:
Project1.lpr(7,22) Error: expected:, but found T

Please Log in or Create an account to join the conversation.

CT LAB ver 5.80 7 years 9 months ago #9660

  • Sternas Stefanos
  • Sternas Stefanos's Avatar Topic Author
  • Offline
  • Moderator
  • Moderator
  • Ex Pilot, M.Sc, Ph.D
  • Posts: 4506
  • Thank you received: 1100
Thanks Sir
we will try to fix this ( if it's a bug )
but
why don't write
type
TRec = record
procedure Proc<T>;
end;

implementation 

procedure TRec.Proc<T>;
begin
end;

or
type
TRec = class
procedure Proc<T>;
end;

implementation 

procedure TRec.Proc<T>;
begin
end;
PilotLogic Architect and Core Programmer

Please Log in or Create an account to join the conversation.

Last edit: by Sternas Stefanos.

CT LAB ver 5.80 7 years 9 months ago #9662

  • Alex
  • Alex's Avatar
  • Offline
  • New Member
  • New Member
  • Posts: 2
  • Thank you received: 0
Thanks for answer. But I don't understand, what the difference in your example?

Please Log in or Create an account to join the conversation.

CT LAB ver 5.80 7 years 9 months ago #9663

  • Sternas Stefanos
  • Sternas Stefanos's Avatar Topic Author
  • Offline
  • Moderator
  • Moderator
  • Ex Pilot, M.Sc, Ph.D
  • Posts: 4506
  • Thank you received: 1100
Sir
in Object Pascal, Records don't have procedures with Generics
in Object Pascal Structure must have
unit foo;

interface
.....
implementation
.....
end.

in Scripters with 'like' Object Pascal Language, you can write anything you want... :)
PilotLogic Architect and Core Programmer

Please Log in or Create an account to join the conversation.

Last edit: by Sternas Stefanos.

CT LAB ver 5.80 7 years 9 months ago #9705

  • Klaus Riesterer
  • Klaus Riesterer's Avatar
  • Visitor
  • Visitor
Maybe I found an error:

Create new project and safe all files with same name - should be possible but results in an error.
e.g. should get mswitch.lpi, mswitch.lpr, mswitch.lfm, mswitch.pas, mswitch.res, mswitch.lps

Or is this not possible?

Please Log in or Create an account to join the conversation.

CT LAB ver 5.80 7 years 9 months ago #9706

  • Sternas Stefanos
  • Sternas Stefanos's Avatar Topic Author
  • Offline
  • Moderator
  • Moderator
  • Ex Pilot, M.Sc, Ph.D
  • Posts: 4506
  • Thank you received: 1100
No Sir
you must give to program main form file, deferent name from main program file name.
Look at codeOcean, we give program main form names like foomw (foo main window), foomf (foo main form) etc

It's native Object Pascal
PilotLogic Architect and Core Programmer

Please Log in or Create an account to join the conversation.

Last edit: by Sternas Stefanos.

CT LAB ver 5.80 7 years 9 months ago #9707

  • Ismet Sonmez
  • Ismet Sonmez's Avatar
  • Offline
  • New Member
  • New Member
  • Posts: 4
  • Thank you received: 0
Hi Sternas. Where is downoad link for 5.8

Best Regards

Please Log in or Create an account to join the conversation.

CT LAB ver 5.80 7 years 9 months ago #9708

  • Sternas Stefanos
  • Sternas Stefanos's Avatar Topic Author
  • Offline
  • Moderator
  • Moderator
  • Ex Pilot, M.Sc, Ph.D
  • Posts: 4506
  • Thank you received: 1100
Sir
no zip file for download of LAB CT 5.8
only "update" from CT 5.7 info
PilotLogic Architect and Core Programmer

Please Log in or Create an account to join the conversation.

CT LAB ver 5.80 7 years 9 months ago #9727

  • zeljko
  • zeljko's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 207
  • Thank you received: 38
Please add Input/Output library for Raspberry Pi or any other Linux based microcontroller
Path:
github.com/SAmeis/pascalio

Please Log in or Create an account to join the conversation.

CT LAB ver 5.80 7 years 9 months ago #9728

  • Sternas Stefanos
  • Sternas Stefanos's Avatar Topic Author
  • Offline
  • Moderator
  • Moderator
  • Ex Pilot, M.Sc, Ph.D
  • Posts: 4506
  • Thank you received: 1100
Thanks Sir
we will try
PilotLogic Architect and Core Programmer

Please Log in or Create an account to join the conversation.

CT LAB ver 5.80 7 years 9 months ago #9733

  • Carlos Alberto Périco
  • Carlos Alberto Périco's Avatar
  • Offline
  • New Member
  • New Member
  • Posts: 8
  • Thank you received: 0
Update no found.



[ERROR] Can NOT get server list file

Please Log in or Create an account to join the conversation.

CT LAB ver 5.80 7 years 9 months ago #9734

  • Sternas Stefanos
  • Sternas Stefanos's Avatar Topic Author
  • Offline
  • Moderator
  • Moderator
  • Ex Pilot, M.Sc, Ph.D
  • Posts: 4506
  • Thank you received: 1100
Please Sir
try again
Work OK for us here
PilotLogic Architect and Core Programmer

Please Log in or Create an account to join the conversation.

CT LAB ver 5.80 7 years 8 months ago #9791

  • zbyna
  • zbyna's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 33
  • Thank you received: 2
Please add
Python for Lazarus
seems like multiplatform (win,lin,osx)
Thanks

Please Log in or Create an account to join the conversation.

CT LAB ver 5.80 7 years 8 months ago #9802

  • usbdoo
  • usbdoo's Avatar
  • Visitor
  • Visitor
I try.
Debian 8.5
arm-linux-Raspbian2

everything looks ok

Thanks.

Please Log in or Create an account to join the conversation.

Last edit: by usbdoo.