Tagged Questions

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 ...
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
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
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: ...
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
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
3answers
365 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.
1
vote
1answer
24 views

GetUserName under MacOSX with Lazarus FPC

i'm right now porting an application which was made for Window using Lazarus to MacOSX. I've a few WinAPI calls which i need to recode to make it work under Mac. Now i need to find out the user name ...
1
vote
2answers
273 views

Lazarus 0.9.30 trimmed menu entries

I'm using Lazarus 0.9.30 and in both the IDE and the sample applications the menu entries a trimmed: I can live with this in the IDE, but for the aplications is there something I can do? Adding ...
1
vote
1answer
178 views

How to avoid WSRegister* on a Free Pascal .dll/.so

I finally had success compiling a "blank" Apache module, but now I've hit a rather annoying snag. I want to communicate with a MongoDB server and I opted for the only lib around for ...
1
vote
2answers
127 views

Problem compiling a WebLaz project under Lazarus

My specs: OS: Ubuntu 10.04 LTS amd64 fpc: 2.4.0 lazarus: 0.9.28 I'm trying to compile a WebLaz project just by creating one and then compiling. Somehow the compiler gets all lost when determinig ...
1
vote
1answer
82 views

How can I compile a Lazarus Apache module to Apache 1.3, 2.0 and 2.2 selectively?

I've had a look at /etc/fpc.cfg and there is mention to some defines: FPCAPACHE_1_3 FPCAPACHE_2_0 Then in the fcl-web examples there is mention to: Apache1_3 The only one I've found is on the ...
1
vote
1answer
235 views

How to create makefile for Lazarus projects?

After doing a light search on the Lazarus site I've come to the conclusion that this question has been asked some times but I haven't found an answer, so I'll ask my SO peers. Is there a a way to ...
1
vote
2answers
491 views

Empty main form in GUI app converted from Delphi to Lazarus

I have converted my 2 GUI apps from Delphi to Lazarus. Both apps compile for Win32 platform, i386 and with GUI. Main form were converted using Lazarus tool and can be edited from IDE. But when I run ...
0
votes
0answers
19 views

Autoscroll on TRichView (lazarus)

Some hint to to make works a autoscroll in TRichView? I've try to use this: my_richview.Perform(EM_LINESCROLL, 0, my_richview.Lines.Count - 1); It doesn't work: unitmessage.pas(101,45) Error: ...
0
votes
2answers
148 views

Building mod_helloworld.lpr

Im trying to build the apache example of the mod_helloworld.lpr, C:\lazarus\components\fpweb\demo\helloworld\apache Lazarus 0.9.29 FPC Verion 2.4.3 SVN 27129 i386-win32 After Adding ...
0
votes
1answer
669 views

Linux linker flag -lXi not finding lib when compiling Lazarus code

After I solved my first problem I got into another one. Looks like I'm missing some kind of library, making the linker complain that the -lXi is not working. I've included most of the Xorg devel ...