Tagged Questions

14
votes
3answers
345 views

List of Delphi language features and version in which they were introduced/deprecated

Before I begin, I would like to point out that I have honestly and genuinely searched repeatedly and exhaustively via Google for such a thing, and been unable to find one. I require (for a project ...
5
votes
2answers
141 views

Simple Delphi 3d functions

Could anyone help me with examples of some bare-bone, old school 3d methods in Delphi? Not using openGL or firemonkey or any external library (vanilla canvas coding). What i want to do is to be able ...
4
votes
2answers
84 views

How to inform Free Pascal Compiler to set Locale ID for the compiled application

In Delphi there is an option VersionInfo->Language->Locale ID when viewing project properties. I was wandering how to set such property for a program being compiled under Free Pascal. Any solution is ...
4
votes
1answer
212 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
176 views

Class Reference as Property

Google is useless for these sorts of searches, because you get hundreds of millions of results absolutely none of which relate to the specific question. The question is simply this: Is it possible ...
3
votes
1answer
311 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
472 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
478 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
171 views

GlScene Mouse to point on TGLHeightField

I have a GLScene with a TGLHeightField with it points loaded from its OnGetHeight. What i'm trying to work out is what 3d point on the HeightField the mouse is currently over in the mousemove event. ...
1
vote
2answers
281 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
629 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
503 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
1answer
262 views

Delphi/FPC Code no longer compiles under XCode after update to XE2 Update 2

I have written an iOS app using Delphi XE2 (Firemonkey) to call a webservice. The code has stopped compiling since I applied Delphi XE2 Update 2 - (Previously I was using update 1). I have also ...