Tagged Questions

4
votes
1answer
152 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
223 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
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
467 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
95 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
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
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
237 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
1answer
123 views

Why is WPO(whole-program optimization) not doing any improvements in my program size? (FPC 2.4.0)

I use FPC 2.4.0 for WinXP(binary from the official page), also tryed with same version but compiled from source on my comp. I put something like this: ...
2
votes
1answer
244 views

fpcmake and Makefile.fpc, where can I get some training?

I've never used any of these, but they are listed on the main Free Pascal site and I would really like to get my hands on: Beginners guide, to get me started Advanced guide, to help me grow All ...
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.
1
vote
0answers
61 views

Notepad++ + fpc compiler

How to combine Free Pascal compiler and NP++ (or maybe other editor, Vim, Geany, ...)? i.e. I want something like IDE: compiling, running from NP++, list of errors\warnings. I tried ...
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
34 views

Where can I find the fpmake.pp framework source?

Hey guys, well Marco actually :) Where can I find the initial effort from the person who started fpmake.pp so I can pick up and/or continue. I'm about to get into a very complicated, in terms of ...
1
vote
2answers
51 views

Help me with a solution for what could be solutioned by virtual static fields… in FPC

Hi I'm doing an event manager in Freepascal Each event is an object type TEvent (=object), each kind of event must derive from this class. Events are differentiated by an integer identificator, ...
1
vote
1answer
51 views

What was fpmake.pp used and is it still used?

I've used it once, not very well since I found hard to get by some decent examples/docs but it was a nice way of getting an environment done. Is it still a standard or as it been abandoned? Where ...
1
vote
1answer
622 views

Can anyone point me to a AMF library in either Delphi or FreePascal?

I've done a simple search on the usual suspects(Google Code, Source Forge, SO) but did not find any hints of a project for AMF or Flash/Flex remoting. Has anyone stumbled on a project of this nature? ...
1
vote
2answers
116 views

Is $apptype a Best Pratice Comment?

I just started using FPC to pratice more my old knowleadge of Pascal, but now for Linux, then I started seeing much this comment after the 'program' declaration: {$apptype console} But is this a ...
1
vote
2answers
488 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
37 views

XCode Command Line App and Free Pascal Compiler

I need to build a quick command line app on my mac using xcode and I want to use the free pascal compiler instead of the c/c++ in XCode how do I change XCode's settings to use this. (sorry if its a ...
0
votes
1answer
668 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 ...