Questions tagged [kylix]

Kylix is a commercial Pascal compiler and IDE for Linux.

Kylix is a Pascal IDE for Linux, being the Linux version of the better-known Delphi IDE for Windows. It has been discontinued for some time.

is an open source alternative.

More information can be found here: http://en.wikipedia.org/wiki/Kylix_(software)

11 questions
9
votes
3 answers

Has any one used CrossKylix for real Cross-platform development?

New version of CrossKylix as been updated two weeks ago. Even Kylix has discontinued long time ago, but it's seems still used by some of Delphi developers. Has any one used it successfully on cross-platform development for Windows and Linux?
Mohammed Nasman
  • 10,992
  • 7
  • 43
  • 68
4
votes
1 answer

Too Many Actual Parameters (Message Dialogue)

I have inherited a program that has a number of issues with it. The latest one is a Too Many Actual Parameters warning: if MessageDlgPos('IS THIS CORRECT? ' , mtConfirmation, **[mbyes, mbno], 0, 400, 450, mbno) = mrno then begin** …
user
  • 619
  • 8
  • 17
3
votes
1 answer

FastMM report memory leak on a class freed on FormDestroy

I have encountered a memory leak problem with a Delphi 7 application(CLX), with a piece of code like the following : unit Unit2; interface uses ECRClass, ECR_Text, SysUtils, Types, Classes, Variants, Math; type tLeakClass = class private …
aleroot
  • 71,077
  • 30
  • 176
  • 213
2
votes
3 answers

Which of the actively developed Delphi components still support Kylix?

I've been reading about CrossKylix recently, but for most uses one has to consider 3rd party components. So I would like to know which of the actively developed components still support Kylix. Many added partial or complete Kylix support back in the…
user219760
1
vote
0 answers

Font family cannot be set in X-applications

This simple CLX application tries to set font-family of TMemo to fixed-width font: 1. Application compiled using Kylix 3 running in local Linux box gives correct alignment. 2. Application compiled using Delphi 7 running in local Windows box gives…
SOUser
  • 3,802
  • 5
  • 33
  • 63
1
vote
0 answers

TTcpServer "stopped" in Linux

The two console applications include one socket server using TTcpServer of bmThreadBlocking mode, and one socket client using TTcpClient of bmBlocking mode. The TTcpClient is intended to connect to the server, send a line, and then disconnect. The…
SOUser
  • 3,802
  • 5
  • 33
  • 63
1
vote
1 answer

Problem with the ZEOSDBO component on DELPHI

I have a problem with DELPHI with the ZEOSDBO Component when i try to use the CLX library by adding example a ZPgSqlDatabase and a DBEdit the following msg appears when i try to execute. [Error] WARNING. Duplicate resource(s): [Error] Type 10…
gaivotaldn
  • 13
  • 3
1
vote
1 answer

What is maximum length for synmemo?

Synmemo at Sourceforge seems to be very good txt editor and code highlighter. It is a pity that it does not upgrade for long. It is a pure vcl. I want to know what is its maximum length. What is the largest txt file it can load? Thanks
Warren
  • 795
  • 1
  • 10
  • 19
1
vote
1 answer

kylix AnsiCompareStr bug?

The following program tries to use AnsiCompareStr/Text: program Project5; {$APPTYPE CONSOLE} uses StrUtils, SysUtils; begin Writeln('Ord(''-'')=', Ord('-')); Writeln('Ord(''_'')=', Ord('_')); Writeln('AnsiCompareStr(''-'', ''_'')=',…
SOUser
  • 3,802
  • 5
  • 33
  • 63
1
vote
0 answers

Kylix on Fedora 21

we have an application built on Borland Kylix C++. The application is still being used and we maintain a Red Hat 9 virtual machine with the Kylix IDE installed to continue its development. We know it is quite old, but for awhile that´s our…
Juliano
  • 821
  • 6
  • 21
1
vote
1 answer

MultiThreading and TCriticalSection on kylix

I maintain an application in Delphi 7 which have a server part that can be compiled with CrossKylix. For performance matter I'm benching multiThreading and Critical section use. I made a console application that create 100 TThread and each TThread…