Tagged Questions
Free Pascal is a multi-dialect, multi-platform Pascal compiler. Its main focus are the Delphi and Turbo Pascal dialect, but a substantial Mac Pascal subset and a minor ISO Pascal mode exist as well. Free Pascal is available for most common architectures and operating systems. http://www.freepascal.org
12
votes
4answers
2k views
Is there a Dependency Injection Framework for Delphi or Free Pascal?
For some of my Delphi (Win 32) / Free Pascal projects I consider using Dependency Injection.
Are there already implementations available (or in development) which provide some basic DI (IoC) ...
9
votes
2answers
199 views
How to call a list of the physically attached hard disks using Free Pascal, or, failing that, Delphi?
Further to this question and this one that I asked more recently but without the correct specifics...and lastly this one that I asked at the Free Pascal forum specifically....
Can anyone provide me ...
9
votes
7answers
785 views
Where can I find a “Turbo” or “Lite” version of Delphi?
I have a co-worker with a strong background in Ruby that is interested in getting started with Delphi and native development. However, I understand that Turbo Delphi (based on Delphi 2006) is no ...
8
votes
1answer
353 views
Delphi Dependency Injection: Framework vs Delegating Constructor
Why would you use a Dependency Injection Framework when you can simple use the following pattern?
unit uSomeServiceIntf;
interface
type
ISomeService = interface
procedure SomeMethod;
end;
...
7
votes
2answers
367 views
Will const parameters and typecasting work as before under Delphi 64bit?
As a general rule I have circumvented a lot of classical design traps when using pointers by taking advantage of Const (untyped) parameters rather than hard coded types. This gives me the benefit of ...
7
votes
2answers
339 views
Is Indy for FreePascal stable?
I'm starting to play with FreePascal/Lazarus and there appears to be an Indy port available. Is this a recent port and is it stable enough to use in production use? (Standard HTTP post/get client type ...
6
votes
5answers
238 views
Screen recorder
I'm interested in a library(for windows) written in Delphi/Pascal or C++ that allows me to record(to a video format) desktop screen, requirements:
must be able to specify the frame rate, or at least ...
6
votes
1answer
148 views
Get Linux system info with Lazarus and FreePascal
I am really new to Lazarus/FreePascal and I have no prior Delphi experience. I want to be able to get OS version information and user account type on both WIndows and Linux. I saw that there is a ...
6
votes
6answers
644 views
String to byte array in UTF-8?
How to convert a WideString (or other long string) to byte array in UTF-8?
5
votes
1answer
214 views
OpenCV pointer to bitmap processing
I've created a shared library for contour detection that is loaded from a Delphi/Lazarus application. The main app, passes a pointer to a bitmap to be processed by a function inside the library.
...
5
votes
2answers
203 views
Algorithm smbPitchShift (Pascal)
thank so much, Rudy Velthuis. it is running pretty cool...
be stored here at stackoverflow
//*************************************************************************//
// ...
5
votes
2answers
156 views
Instance reference in Delphi?
What's the Delphi equivalent of 'this' in C++? Could you please give some examples of its use?
4
votes
1answer
153 views
How do I use CreateFile to access a physical disk?
I asked on the Lazarus programming forum how to open a physical disk. I want to allow the user to select physical disks from their system when they click a "Select Disk" button. There are some ...
4
votes
1answer
247 views
FreePascal 64 bit DLL and calling C# Application
I am trying to compile a 64bit dll for use with a 64bit C# application. I have a simple class and a simple app to try and test it and it falls over no matter what I try and do. Here is the code:
...
4
votes
7answers
476 views
Why do Pascal control structures appear to be inconsistent?
Most Pascal control structures make sense to me, like:
for ... do {statement};
if (condition) then {statement};
while (condition) do {statement};
where the {statement} is either a single ...
4
votes
1answer
696 views
Why Pascal const arrays aren't actually constants?
Program ConstTest;
Const constVar = 1;
Begin
constVar := 3;
WriteLn(constVar);
End.
It's pretty obvious that the above code will not compile, because it's not right to change the ...
4
votes
3answers
3k views
Exchanging strings (PChar) between a Freepascal compiled DLL and a Delphi compiled EXE
After a lot of experimentations, I found a way to exchange PChar from a FreePascal compiled DLL with a Delphi compiled EXE. I'm in charge of both the DLL and EXE source code but one MUST BE in ...
4
votes
2answers
2k views
Could Free Pascal benefit of something like Apache Maven?
Apache Maven is a very popular build and dependency management tool in the Java open source ecosphere. I did some tests to find out if it can handle compiled Free Pascal / Delphi units and found it ...
3
votes
2answers
137 views
Does Free Pascal have type variables like Haskell?
Haskell lets you define functions like thrice, which accepts an element of type a and returns a list of the element repeated three times, for any data type a.
thrice :: a -> [a]
thrice x = [x, x, ...
3
votes
2answers
226 views
What would be involved in getting Free Pascal to compile into AVR, ATMega and Arduino?
Would it be too much of an effort to have FPC compile to the Arduino platform?
I would really like to use Lazarus to do some "sketches".
3
votes
2answers
132 views
How to pass sudo\root password to a Linux command using Free Pascal
Most of the other questions about this seem to be C related. I am using Free Pascal and the Lazarus IDE, version 2.4.0 and 0.9.30 respectively.
I am creating a GUI that calls and passes arguments to ...
3
votes
1answer
169 views
Using a indentifier or reserved word in a automation object under FPC
Actually i am using OLE automation under Free Pascal , but some objects have properties which uses reserverd words as names, so i cannot compile the code.
check this sample
MyObj : OleVariant;
...
3
votes
1answer
308 views
Is there a good Object Pascal mode for Emacs?
I've been doing some Object Pascal lately, and I've been unable to find a good mode for it. I've tried delphi-mode and pascal-mode, both of which try to help too much; when they fail to understand ...
3
votes
2answers
348 views
Exist a tool to convert DFM files to sourcecode?
I'm porting a app to FreePasal/Lazarus & found that their form converter is not good. I have a small utility app, and each time I do a change I need to reconvert, relayout and reimport graphics. ...
3
votes
1answer
466 views
Problem with WM_COMMAND on Lazarus/FPC
I have form with MainMenu and I want to intercept when the user selects a command item from a menu.
This works in Delphi:
type
TForm1 = class(TForm)
... // Memo and MainMenu created
protected
...
3
votes
2answers
468 views
Problem with Splash Screen in Lazarus app
I am porting a Delphi application to FPC/Lazarus and this application shows info in splash screen. When unit has initialization section then this initialization section calls something like:
...
3
votes
3answers
561 views
Where can I find a good Delphi or Object Pascal implementation for a circular buffer
My main purpose is to have a generic data buffer that I can use for transfers.
I'm thinking of something along the lines of what XCopy did.
Is there something already made out there or a good ...
3
votes
2answers
723 views
Any lib for multi-threading cross-platform for Delphi AND FreePascal?
I'm aware of some Windows Thread Libs for Delphi(OmniThread Lib, BMThreads, etc).
But is there a lib that is built to be cross-platform and that can both be used under Delphi and FreePascal?
3
votes
6answers
837 views
Most common docblock for Delphi and/or FreePascal code
I'm quite familiar with PHP dockblocks since it's been my job for the last 15+ years.
/**
* Description
*
* @tag bla bla
* @tag more bla bla
*/
What I'm trying to understand is if there ...
3
votes
3answers
870 views
Casting between parent and child classes in delphi
I'm writing some software that targets two versions of very similar hardware which, until I use the API to initialize the hardware I'm not able to know which type I'll be getting back.
Because the ...
2
votes
0answers
95 views
Arbitrary long integers in Delphi - NX library?
just looking for some implementation of arbitrary large integer numbers with some basic arithmetic (add, mul, div at least) for Delphi.
All solutions I did already found are either painfully ...
2
votes
0answers
166 views
TDataset and TMemDataset
I need to iterate through a number of MySQL queries and save them in an array of TMemDataset's. This seems to do it:
MemDataset1.CopyFromDataset(ZQuery1,True);
However each time the query changes, ...
2
votes
3answers
96 views
Free Pascal/C++ project crashes in cout::sentry
I have a mixed Free Pascal/C++ project. Debian 5.0 ("Lenny") on i386, FPC 2.4.4. When I run the program, it crashes on the first cout<< call. Funnily, it used to work for some time; some OS ...
2
votes
1answer
81 views
How to pass a larger buffer size to DCPCrypt 'UpdateStream' Procedure
I have a program that currently hashes files using just SHA1. No other options. It hashes them using the SHA1 hash function that's part of the Lazarus and Free Pascal Compiler.
I've since added the ...
2
votes
1answer
97 views
Is there a command line interpreter for Free Pascal?
E.g., one I could use by adding a shebang to my Pascal files:
#!/usr/bin/env fpi
2
votes
2answers
323 views
Using functions from a C++ .DLL within Delphi
I am trying to access various functions from the 'Approximate nearest neighbor' (ANN) library from within Delphi (actually, it is Lazarus/FreePascal, but that shouldn't matter much).
Here is the ...
2
votes
3answers
346 views
Writing Delphi/FreePascal DLL to be called from gcc application
I need to make parts of my Win32 Delphi app available to another company's Linux gcc program.
Throughput and deployment requirements make any sort of remote service unsuitable so I'm looking at using ...
2
votes
1answer
65 views
What would be a way to distribute a self installing package on Lazarus
I've seen the self installing executable for the Virtual String Tree for Delphi.
I'm thinking of doing a similar thing for Lazarus/FreePascal, so my question is more like a call for a map or a list ...
2
votes
1answer
111 views
How to calculate the number of days between dates using Pascal?
I keep the date in the format DateTime.
Which algorithm for calculating the number of days?
2
votes
3answers
142 views
Java - freepascal communication
I have a problem with a communication between java and freepascal(lazarus) app. I use sockets. They connect properly. Everything is going smooth until I want to send something from one app to another. ...
2
votes
2answers
59 views
Can we use > (greater than) or < (lesser than) on compile conditionals with the version number on Free Pascal
I've seen conditional compile directives with expressions related to the version of the compile, but I'm unable to locate them again.
How would I correctly write this in Free Pascal?
program ...
2
votes
1answer
239 views
Is there a way to compile Free Pascal code to a Symbian OS .sis
We all know that Free Pascal can compile for the platforms that support Symbian OS, so is it possible to, painfully I must say, get a method to compile to the .sis format?
Many thanks!!
2
votes
2answers
274 views
Using a freepascal library (.dylib) from mono
While learning C# and Delphi Prism for use with monotouch is rewarding, I am looking for a way to re-use code written in ordinary Object Pascal. To simply re-write everything I have done in Delphi ...
2
votes
2answers
604 views
2
votes
5answers
596 views
Writing a SOAP service on Linux - tools, help needed
I need to write a SOAP service for Linux (CentOS).
I need to do this using Lazarus/FreePascal. The service needs to be a binary (daemon) that runs in the background.
Questions:
1. Is this possible ...
2
votes
3answers
611 views
Is there a SAX Parser for Delphi and Free Pascal?
Besides MSXML and SAX for Pascal, can you recommend a SAX parser for Delphi? It would be great if it could be used in cross-platform applications with Free Pascal.
2
votes
3answers
379 views
What encryption algorithm should be used for encrypting text as text n FreePascal/Delphi?
I need to encrypt some text in my program developed using Lazarus/Freepascal, but I should be able to load them as text and decrypt them, rather than in binary because I need to save them in a ...
2
votes
1answer
223 views
Fpgui and lcl and qt, what are the advantages and disadvantages?
Lazarus Ide can use several gui libraries. I am on Windows. I wonder what are difference among them...
It is clear that lcl is most stable.
Why would anyone use Qt and fpgui once they will be of ...
2
votes
1answer
176 views
How make {$IFNDEF DEBUG} work in lazarus/osx project
I need to disable some code when run under the debugger.
So, I just imagine that doing:
{$IFNDEF DEBUG}
...
{$ENDIF}
However, the code inside the ifndef is executed in the debugger, makin it ...
2
votes
2answers
970 views
Using windows command line from Pascal
I'm trying to use some windows command line tools from within a short Pascal program. To make it easier, I'm writing a function called DoShell which takes a command line string as an argument and ...