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

learn more… | top users | synonyms

3
votes
1answer
42 views

Global Management of Multiple Compilers in Lazarus IDE

I've been searching around the Lazarus IDE documentation for a bit, and thus far only found information related to cross compiling, so I was hoping someone could give me a straight answer on this. I'm ...
1
vote
2answers
111 views

how to get the real file contents using TFilestream?

i try to get the file contents using TFilestream: procedure ShowFileCont(myfile : string); var tr : string; fs : TFileStream; Begin Fs := TFileStream.Create(myfile, fmOpenRead or ...
0
votes
2answers
38 views

Equivalent of Windows Postmessage for OS X C++

I have a c++ dll for windows which pass a message to an FPC (Lazarus) application using postmessage. It's pretty simple stuff as I'm a pretty simple guy. It's part of an adobe photshop SDK: extern ...
0
votes
1answer
38 views

Are there any replacement for Synaser Serial Communciation tool for Lazarus compiler?

I am working with the latest Lazarus compiler and have worked with Synaser for serial communication with the previous version of Lazarus. It has worked flawlessly, but now with latest version of ...
0
votes
1answer
13 views

Flash in Lazarus OsX

I want to embed Flash into Lazarus under Mac Os. I have read that people had some success under Windows and Linux while using Mozilla Plugin Panel but that doesn't work on OS X (plus, that project is ...
1
vote
1answer
24 views

How parse JSON from string in Lazarus 1.x

Lazarus is not my favorite dev tool :) i have a string with json data, how i can parse it, and output specified key,value? use ...., fpJSON, JSONParser; ... var jsonstring:string; ...
1
vote
1answer
72 views

Component to string in Lazarus

I made program according to these instructions. Works great, but I do not know why. http://docwiki.embarcadero.com/CodeExamples/XE3/en/ComponentToString_(Delphi). My code is: unit Unit1; {$mode ...
0
votes
0answers
24 views

TMemo issue on Windows Mobile 6.1

I'm writing a very simple terminal application for Windows Mobile. It opens a serial port, and dumps whatever data is coming into a TMemo. The application works just fine on Windows Mobile 5, but on ...
0
votes
0answers
38 views

Embed webkit in lazarus on Mac OS

I want to embed a browser using webkit into Lazarus, but it seems that i can`t manage to integrate it properly because I keep geting errors at compilation. I use Mac OS Mountain Lion 10.8 32 bit ...
0
votes
1answer
85 views

Reposition rectangle after zooming

I have a rectangle defined by R1:x1,y1-x2,y2 and after applying zoom, I get the rectangle R2:X1,Y1-X2,Y2. +--------------+---+ | | | | R1 | | | | | ...
-1
votes
1answer
28 views

Lazarus project window version convert

I made a project on the lazarus IDE, I run it on my machine win 7 x84_64 and it was executed well, then my client tested it on his machine and it run too(win 7 x84_64), but after that he tried on a ...
0
votes
2answers
54 views

Pass message from javascript to application - Windows and Mac OSx - Lazarus

I need a javascript function to trigger a function in an application developed in Lazarus for both OSx and windows. I'm learning Lazarus and I'd describe myself as a medium level beginner. I know ...
0
votes
3answers
61 views

Creating smallest DLL file

I have created a DLL file (library) with one assembler function. This file is 75kB size. How to make this file smaller? Like I suspect, there is an automatically included System unit. Can I exclude ...
0
votes
0answers
15 views

Similar functionality to windows Jumplists for Mac OSx?

I'm converting an application (originally written in Delphi XE3 - converted to Pascal / Lazarus) from Windows to Mac. The program uses windows Jumplists to pass parameters to the application allowing ...
0
votes
1answer
26 views

Failed to include _wfopen in project

I am trying to include a static lib (.a) file built with mingw in the lazarus project but failed to do so. Because the lib contains a function. _wfopen() from stdio.h/wchar.h I had already included ...
-1
votes
0answers
18 views

XorEncode and XorDecode Function [closed]

I am searching for XorEncode/XorDecode Function (Freepascal) which can easily be used in php for same result. I want to transfer XorEncoded string to php page where it will be XorDecoded.
0
votes
0answers
17 views

How to install P4D

I am trying to install python for Delphi on lazarus (Doc says it is possible) but being neither a Delphi or Lazarus expert, I am not having any success. Is there a howto or tutorial anywhere that will ...
1
vote
1answer
54 views

About ICS on Lazarus

Do ICS in Lazarus is installed and works fine on all platforms? I read somewhere that there is a problem with Linux. Is this problem solved?
0
votes
0answers
45 views

Lazarus TextOut prints little square instead of characters

I am programming in Lazarus at school. I wrote one program for chess table, but I have problem with printing these two charcters ♂ and ♀. I tried this code var s : string; ... s := 'VKS' + ...
0
votes
1answer
31 views

Why does Lazarus give a 'SigSegV' error? (HydraDM, HydraDM64)

I created an empty Lazarus project and tried to compile it to test the settings of the compiler on my Windows 7 PC. Even though this was a fresh installation without any specific settings, the ...
3
votes
1answer
87 views

File Drag Drop not working on Form in Lazarus

I had encountered a very strange problem in TForm1.FormDropFiles. I had attached the entire project. I am unable to locate the problem. After executing the project form1 is shown and a system tray ...
1
vote
2answers
88 views

Synapse and OpenSSL Connect not working in one app

I have done all the searching and can't find a solution to this weird problem that's been bugging me for about 5 hours. I started this app in Lazarus, but then took it across to D5pro to see if I ...
1
vote
0answers
88 views

freepascal regexp replace

Is there an easy way to do a RegExp replace in FreePascal/Lazarus? Hunting around I can see that I can do a match fairly easily, but I'm struggling to find functions to do a search and replace. What ...
3
votes
1answer
136 views

Windows 7 Welcome screen (translating c# to pascal)

The code provided by Jon in the following thread seems to illustrate exactly what I want to do Running a process at the Windows 7 Welcome Screen Unfortunately it's in C#, a language I don't know at ...
1
vote
1answer
77 views

Why does my program not output all my data?

program ZZX1; {$mode objfpc}{$H+} uses crt, wincrt, {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, {$ENDIF}{$ENDIF} Classes { you can add units after this }; type Masquerader = record ...
2
votes
1answer
41 views

IndexDWord Always Returning False for a DWORD pattern I know is in the buffer (FreePascal)

Further to Marco's suggestion in this thread, I have a situation where I have a buffer of raw byte data, 4096 bytes, read in a loop from a file. I then want to search that buffer for a known hex ...
0
votes
1answer
93 views

Program shutdown on Synchronize

I got a new problem again =/ I want to call a callbackmethod in it's own Thread. The callbackMethod will be implemented as interface. I've declared a Thread like following: ...
3
votes
1answer
141 views

How correct show the Explorer-based right-click menu

I create this menu using code placed by Sertac Akyuz in answer here: Show the default right-click menu - Delphi and it works good, but there is problem: When I click in created menu: delete (delete ...
1
vote
1answer
101 views

Lazarus (Free Pascal). Seemingly unnecessary compiler warning

I'm new to Free Pascal and Lazarus. I'm testing out the new "advanced records" feature and getting what looks to be an unnecessary compiler warning. The code is very simple, just a record with a ...
1
vote
0answers
143 views

Convert UTF8 to ASCII using lazarus

I am reading some strings from a text file, the problem is that the strings are UTF8 and contain characters that I wish to remove such as: Ă An not easy solution would be for me to replace each ...
2
votes
1answer
338 views

Get pixel color under mouse cursor - FAST way

Is there ANY way to get pixel color under mouse cursor really FAST? I have a mouse hook and I try to read pixel color during mouse move. Its kind of ColorPicker Any attempts with getPixel and BitBlt ...
0
votes
1answer
56 views

One-line procedure do not work in Lazarus (Object Pascal)

I have an event - onClickButton where is only one line: Button1.Caption:="ABC"; it isn't working ok - No effect after clicking on the button. When I insert another new line, for instance: if x=10 ...
1
vote
1answer
127 views

How to find the item by assigned object in TComboBox in Lazarus?

How to find the item by assigned object in TComboBox ? I have a combo box, where I'm storing values from database; name as item and ID (integer) as an object: ComboBox1.Clear; while not ...
0
votes
0answers
187 views

Pascal Programming Assignment [closed]

Develop an algorithm of write a pseudo code that accepts as input the names of an unspecified amount of masqueraders who each have paid the full cost of their costume and the amount each has paid. ...
3
votes
2answers
602 views

Mobile phone Android app with Delphi or Lazarus

Using smart mobile studio to develop a mobile application, I figured out I also need phone gap for further deployment of the application to my mobile device. If I only want to distribute my mobile app ...
1
vote
2answers
92 views

What is the name of the component in Lazarus, which name in Delphi is “Canvas”?

I want to create a paint application in Lazarus, but I don't see the appropriate control, which I can use as a canvas in Deplhi. What is its name ?
1
vote
1answer
84 views

Lazarus - How to change the order of a start up form

My project was started with a certain form named Form1. Now I have many forms. Now I need to make a new form (i.e., my login form- frmLogin) the start up form. I went to project options and under ...
1
vote
2answers
104 views

Asymmetric encryption in lazarus

Is there any library for lazarus ( free pascal ) witch supports asymmetric encryption ? Thanks
1
vote
0answers
54 views

Virtual Keyboard Bug on iOS6 (using FPC)

I have a problem with the Virtual Keyboard which only occurs on iOS 6. I have a UITextField which I use to catch keyboard imput from the Virtual Keyboard, but on iOS 6 it only shows once, after the ...
1
vote
1answer
128 views

delphi string to handle type casting

Is there anyway to safely convert/typecast a string inside TEdit (an actual window handle for eg. 00010C10) into a handle LONGWORD data type I presume in Delphi/Lazarus. Recommended method here ...
2
votes
1answer
70 views

How to handle SIGINT in a program using CRT unit?

I have a console application (program) which uses the CRT unit. Under Linux, when I press CTRL+C, nothing happens. However, I want to handle this SIGINT signal as one would expect (by quitting the ...
0
votes
2answers
124 views

Pascal WriteLn failing

I'm working on small project in Pascal for school. I'm using Lazaruz 1.0.2 I have problem with wirteLn function when writing to file. After some time it just stops writing to file. Take for example ...
2
votes
2answers
177 views

Scrolling TImage horizontally or vertically

I am writing 2-3 Trees application in Lazarus for my school project. Everything's done, now playing with GUI (I get the same number of points for good GUI as I do for a good etc. Insert function, ...
12
votes
1answer
509 views

Porting a multi-threading Delphi application to Mac: what are my choices?

I need to port an application (written in XE2) to Mac. My application is split into a simple UI executable (single-threaded) and an invisible engine (which heavily relies on OmniThreadLibrary 3.02 ...
9
votes
2answers
399 views

Redraw image from 3d perspective to 2d

I need an inverse perspective transform written in Pascal/Delphi/Lazarus. See the following image: I think I need to walk through destination pixels and then calculate the corresponding position in ...
2
votes
2answers
89 views

Lazarus - child modal form is non-responsive

This is only part of a larger project. I have a text box on a form and when the command button next to it is clicked, I want to bring up a form that looks aligned to the text box. The idea is to make ...
2
votes
1answer
91 views

Lazarus Pascal TSQLQuery parameter types for PostgreSQL DB

I've been using ParamByName in Lazarus to specify the parameters to use with different fields. It's mostly been AsString or AsBoolean... But now I need to use a numeric value that has 8 precisions ...
1
vote
2answers
210 views

ffmpeg and windows command line

I am trying to use ffmpeg for windows to convert thousands of images and sounds to a single video file. ffmpeg -i apples.jpg -i oranges.jpg -i orangessound.wav -i bananas.jpg -vcodec mpeg4 test.avi ...
1
vote
1answer
114 views

Console application never returns when ran with TProcess

I am using Windows Server 2008 and I want to get the DNS Server. So I tought that the fastest way should be executing ipconfig and then parsing it's output using TProcess. I have came up with this ...
0
votes
1answer
74 views

How can a console command executed from a program create a graphical dialog to respond to an input prompt?

How can a Lazarus/FPC program that is executing a command via TProcess detect an input prompt and create a graphical dialog for the input? e.g. say I execute an ssh command via TProcess which ...

1 2 3 4 5 6