Tagged Questions
Lazarus is a multiplatform RAD environment for the Free Pascal compiler, in the spirit of Delphi, with which it has a fairly high degree of compatibility See http://lazarus.freepascal.org
14
votes
5answers
562 views
Is Lazarus a good alternative for learning Delphi?
I'm a teen who has been programming since 8 years old, so I know what I do.
I want to take a look at Delphi Windows development.
The problem with this, is that Embarcadero's Delphi is really ...
9
votes
2answers
200 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
786 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
3answers
691 views
Building cross-platform Delphi applications
I downloaded Lazarus, but have worked with Embarcadero Delphi IDE too. I have a question about building cross-platform Delphi applications.
How can I build them under win32 environment? I read the ...
7
votes
9answers
3k views
Why would a Delphi programmer use Lazarus as the IDE instead of using Delphi's IDE?
I've been very happy with the Delphi IDE for programming in Delphi.
But I've heard about the Lazarus programming environment, and I've also heard that some Delphi programmers use it instead of the ...
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?
6
votes
8answers
1k views
What would be the best solution for my Delphi apps on Linux - Delphi+Wine or Lazarus?
I need to make my Delphi solutions available on Linux and I have tested them on both Wine and Lazarus. What are the technical considerations I should take into account (Programming, Deployment, ...
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
5answers
260 views
Delphi & Lazarus both installed
Just a quick question for those of you that know. Is it possible to have both Delphi (ver 7) and Lazarus installed at the same time. I want to make sure the Lazarus install will not interfere with my ...
5
votes
2answers
332 views
Remove Path From File Name
I'm developing a program that needs to parse the file name into a TTextField. How to remove the file extension I've already know(or think that I can do like this):
var
FName: String;
FPath: ...
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
3answers
413 views
indy GET dowloading speed
Welcome,
I have to create caption with information about downloading speed in my application using indy http get compontent.
In my mind i found simple solution.
At onwork event i will get actual ...
4
votes
4answers
868 views
How to deploy Python to Windows users?
I'm soon to launch a beta app and this have the option to create custom integration scripts on Python.
The app will target Mac OS X and Windows, and my problem is with Windows where Python normally ...
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
3answers
305 views
Creating own component based on TreeView (TTreeNode issue)
just need o access to my custom TreeView with this:
MyTreeView1.Selected.MyOwnProperty := 'something';
So, all i want to do is make same component as TreeView is but + i need to add my own property ...
3
votes
1answer
270 views
How to record from mic and save to WAV file in WinCE with Lazarus?
I'm using Lazarus to build a WinCE application to be run in a PDA/PocketPC.
I need to record the voice from the PDA internal microphone for about 10 seconds, and save it to a wav file, but could not ...
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
304 views
Execute code in the context of the main thread (Lazarus)
I have to execute some code in the context of the main thread. I am using Lazarus + FPC. I receive an event from a thread inside a DLL (shared library if on linux) and my callback function gets ...
3
votes
1answer
203 views
Where is the FPC/Lazarus community?
Calling all FreePascal and/or Lazarus big-shots!!
Looking at the bulk of the questions tagged [FPC] or [Lazarus] we can find that it's Marco van de Voort that will answer most of them...
But why?
...
3
votes
1answer
123 views
Active blogs about Lazarus and/or FPC
I'm getting really pissed with the whole direction that "Emborcadero" is taking and I'm really going to invest in FPC/Lazarus.
Went to the Lazarus Documentation page and found the following blogs:
...
3
votes
2answers
584 views
How to determine if dll file was compiled as x64 or x86 bit using either Delphi or Lazarus
Using either Delphi 2007+ or Lazarus(Win64) I'm looking for a way to determine if a dll is compiled as x64 or x86?
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
1answer
78 views
TOpenDialog And Spaces
I have a project on Lazarus that I want to compile a source using gcc, for this I have a TOpenDialog called OpenDialog1 and a TProcess called AProcess.
I call gcc with this code:
procedure ...
3
votes
4answers
965 views
Handheld Development, Lazarus or Turbo Delphi.Net
I begin to program some handheld program as hobby, right now i currently have knowledge on Blackberry App (Java), Symbian S60 (PyS60) and J2ME
Something that i wanna learn was Windows Mobile/Pocket ...
3
votes
6answers
2k views
How can I perform the equivalent of shellexecute() in Lazarus for a Mac?
How can I perform the equivalent of shellexecute() in Lazarus for a Mac?
2
votes
3answers
74 views
License for MySQL connector
I would like to know if I can use MySQL Connector (libmysql.dll) with comercial Lazarus project. As far as I know, it's under GNU GPL.
Thanks for any answers.
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
3answers
168 views
What are good Lazarus/FPC Resources?
I want to learn to develop applications in Lazarus, but I need resources, preferably books, to Lazarus.
Keep in mind that I know 0 of Pascal.
Thanks.
2
votes
1answer
358 views
How can I avoid using mysql_real_connect() repeatedly for each query?
I am querying my database through a connector I made in Lazarus/Freepascal. It uses the libmysql from MySQL 5.0. From what I can tell, the functions I can invoke are identical to those of the MYSQL C ...
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
2answers
218 views
Making other applications window's translucent in Delphi
Good Day all
I searched the web for any directions as to if this is possible but to no avail. I need to write an application that will allow me to select another application and by doing so make the ...
2
votes
3answers
291 views
Detecting installed lazarus IDE
which is the proper way to detect if the lazarus IDE is installed in a system programatically using delphi?
for example to detect if delphi 7 is installed i can check this key ...
2
votes
4answers
432 views
Ubuntu and Lazarus
Today i installed ubuntu and lazarus IDE (delphi style cross platform ide ) i don't know nothing about the structure of linux operating systems.Do u know some tutorials that can get me started ...
2
votes
1answer
61 views
Where or How, can I hook my code to the Unix signals(SIGHUP mainly) on a TDaemonApplication?
After hitting the snag on the Apache module I've turned to a Daemon Application(TCustomDaemonApplication) that is also needed for my project.
Once I realized that there were no obvious way to hook to ...
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
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
177 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
971 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 ...
2
votes
1answer
2k views
Which radio button is selected in a TRadioGroup?
As you can see in my question history, I'm developing a eBook manager, that will be open-source and I will release it in about 10 days, but I have a TRadioGroup, as you can see:
And I want to store ...
2
votes
1answer
108 views
Store The Content Of The Selected Line Of a TListBox On a Variable
I'm developing a ebook manager on Lazarus, but I'm having some troubles with a component that I've never used(TListBox). On the TListBox named CategoryList, I have these items:
Literature and ...
2
votes
3answers
955 views
Install the latest build of Indy 10 on Lazarus
Is there a step-by-step guide for install the Indy 10 components in Lazarus?
I have checked out the last snv snapshot at https://svn.atozed.com:444/svn/Indy10
Username: Indy-Public-RO
(No password)
...
2
votes
3answers
364 views
GUI Only By Using FPC
I want to know how I can develop GUI applications(32 Bits) without using Delphi language(Object Pascsl), only by using FPC with Lazarus installed(Pascal). Thanks.
2
votes
1answer
509 views
Problem with converting Delphi form to Lazarus
After I ported Delphi Windows service app to FPC Linux console app I tried to port program with GUI. I installed newest Lazarus on my Windows machine and converted simple "hello world" app. One unit ...
2
votes
1answer
631 views
Bluetooth on Lazarus/FreePascal on Mac OS X
Has anyone used Bluetooth on Mac OS X with Lazarus or FreePascal? There is a bluetooth unit, but it currently only supports Linux.
Information about existing unit:
...