active questions tagged lazarus - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T14:18:25Z http://stackoverflow.com/feeds/tag/lazarus http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1875649/install-the-latest-build-of-indy-10-on-lazarus 0 Install the latest build of Indy 10 on Lazarus Massimo Fazzolari 2009-12-09T17:52:52Z 2009-12-10T12:43:02Z <p>Is there a step-by-step guide for install the Indy 10 components in Lazarus?</p> <p>I have checked out the last snv snapshot at <a href="https://svn.atozed.com:444/svn/Indy10" rel="nofollow">https://svn.atozed.com:444/svn/Indy10</a> Username: Indy-Public-RO (No password)</p> <p>Thanks you</p> http://stackoverflow.com/questions/1813477/gui-only-by-using-fpc 0 GUI Only By Using FPC Nathan Campos 2009-11-28T19:18:15Z 2009-12-07T18:26:41Z <p>Hello,<br /> 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.</p> http://stackoverflow.com/questions/1091260/lazarus-access-remote-sql-server-database-on-wince-programming 0 [LAZARUS] Access Remote SQL Server Database on WinCE programming Dels 2009-07-07T09:24:10Z 2009-11-30T21:27:44Z <p>I'm programming using Lazarus (Freepascal IDE, Delphi Like), and i have a problem when i need to connect into a remote SQL Server database on the network.</p> <p>My question:</p> <ol> <li>Is there any way to connect to a remote SQLdb on Lazarus?</li> <li>What is required connector type for SQL Server 2005?</li> <li>Is there any ODBC driver available for Windows CE (Windows Mobile 5/6)? (If so, I could use TODBCConnection...)</li> </ol> <p>I already searched and asked on the Lazarus community forum but didn't get any response</p> http://stackoverflow.com/questions/1815442/does-anyone-have-a-good-example-of-how-to-use-synapses-heartbeat-function 1 Does anyone have a good example of how to use Synapse's Heartbeat function? Noah 2009-11-29T12:47:52Z 2009-11-29T19:39:14Z <p>Hi,</p> <p>I am using Synapse for Delphi, but when during HTTP downloads, of course, the GUI freezes. Looking at the documentation, they suggest using the OnHeartbeat method. </p> <p>(See <a href="http://www.ararat.cz/synapse/doku.php/public%3Ahowto%3Aheartbeat" rel="nofollow">http://www.ararat.cz/synapse/doku.php/public%3Ahowto%3Aheartbeat</a> )</p> <p>Unfortunately, they don't actually give any code example, and while the concept is simple, the usage is non-obvious.</p> <p>Is this a per socket (object) setting, or a per application (class) setting? Also, The callback procedure itself is defined as an object, which is a bit unusual. Is anyone who has actually used this willing to share a sample code snippit?</p> http://stackoverflow.com/questions/1795854/empty-main-form-in-gui-app-converted-from-delphi-to-lazarus 1 Empty main form in GUI app converted from Delphi to Lazarus Michal Niklas 2009-11-25T09:58:22Z 2009-11-26T07:38:36Z <p>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 such application main form does not appear, only blank form without any controls.</p> <p>I tried to debug this. It runs all code in initialization sections, and runs code from .lpr project, but something wrong happens in CreateForm() because it doesn't run code in the main form OnCreate event. In event log I can see all texts I write to it with <code>'&lt;App.Run'</code> appearing after I close this empty form.</p> <p>Code in .lpr project:</p> <pre><code> Application.Initialize; AddToEventLogInfo('App.CreateForm'); Application.CreateForm(TfrmTst, frmTst); AddToEventLogInfo('App.Run&gt;'); Application.Run; AddToEventLogInfo('&lt;App.Run'); </code></pre> <p>I checked that I am able to create simple GUI apps from the Lazarus, but both converted GUI apps do not work as expected. What can be wrong? Have I missed something? Maybe one of many warnings and hints Lazarus write is important?</p> <p>When I run my app Lazarus writes this:</p> <pre><code> windres: warning: 14: "MAINICON": 1045: duplicate value windres: warning: 16: 1: 1045: duplicate value Project "Tst_fpc" successfully built. :) </code></pre> <p><strong>EDIT:</strong></p> <p>Lazarus conversion tool converted .dfm -> .lfm, but has some problems with .pas file. I had to manually:</p> <ol> <li><p>add Lazarus units to uses:</p> <p>uses {$IFDEF FPC} LCLIntf, LResources, {$ENDIF}</p></li> <li><p>Conditional compile Delphi form {$R *.dfm}:</p> <p>{$IFNDEF FPC} {$R *.dfm} {$ENDIF}</p></li> <li><p>Add .lrs resource in initialization code:</p> <p>initialization {$IFDEF FPC} {$i myunit.lrs} {$ENDIF}</p></li> </ol> http://stackoverflow.com/questions/1720631/bluetooth-on-lazarus-freepascal-on-mac-os-x 2 Bluetooth on Lazarus/FreePascal on Mac OS X Noah 2009-11-12T08:00:12Z 2009-11-20T13:52:05Z <p>Has anyone used Bluetooth on Mac OS X with Lazarus or FreePascal? There is a bluetooth unit, but it currently only supports Linux.</p> <p>Information about existing unit: <a href="http://wiki.freepascal.org/Bluetooth" rel="nofollow">http://wiki.freepascal.org/Bluetooth</a></p> <p>I plan to enhance this to support Mac OS, but it would be nice to know if anyone has written any code to use BlueTooth on Mac OS already to avoid duplicated work.</p> <p>On the other hand, if you have used XCode to access Bluetooth, what libraries did you use? I am sure I can discover this with the XCode profiler by opening some Bluetooth applications.</p> <p>Note: Mac OS X doesn't appear to use the BlueZ library that Linux has, so I don't think the solution is as easy as changing the library path. Instead, it has IOBluetooth "Framework", located at /System/Library/Frameworks/IOBluetooth.framework.</p> <p>Having a look, it looks like:</p> <pre> kaikei.ocn.ntt.com:IOBluetooth.framework $ file * CodeResources: XML document text Headers: directory IOBluetooth: Mach-O universal binary with 3 architectures IOBluetooth (for architecture x86_64): Mach-O 64-bit dynamically linked shared library x86_64 IOBluetooth (for architecture i386): Mach-O dynamically linked shared library i386 IOBluetooth (for architecture ppc7400): Mach-O dynamically linked shared library ppc Resources: directory Versions: directory </pre> <p>On the other hand, I think if anyone had done this already, I would probably be able to find it on Google.... On the off chance I am wrong, please reply and let me know.</p> <p>Clarification: I have created bindings for normal shared libraries before (f.e. sqlite3), but not for a "framework". If nobody has created bindings or otherwise used the MacOS Bluetooth framework from FreePascal, advice on how to use framework functions from FreePascal in general woule be appreciated. (And normally the functions I am porting are C based, not Obj-C, so I am not sure how to declare Obj-C methods in FPK, although I am sure I will be able to find some samples if I keep searching).</p> http://stackoverflow.com/questions/1741938/problem-with-converting-delphi-form-to-lazarus 1 Problem with converting Delphi form to Lazarus Michal Niklas 2009-11-16T12:37:03Z 2009-11-16T14:29:28Z <p>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 has form (.dfm file in Delphi). This form was converted to .lfm and .lrs files by Lazarus. But there is problem with compiling this:</p> <pre><code>windres: C:/htlib/pas/FInfo.lrs:1: syntax error Free Pascal Compiler version 2.2.4 [2009/10/25] for i386 Copyright (c) 1993-2008 by Florian Klaempfl Target OS: Win32 for i386 Compiling lazarus_test.lpr ... Compiling C:\htlib\pas\FInfo.pas Compiling resource C:\htlib\pas\FInfo.lrs d:\lazarus\fpc\2.2.4\bin\i386-win32\windres.exe: C:/htlib/pas/FInfo.lrs:1: syntax error C:\htlib\pas\FInfo.pas(366,1) Error: Error while linking C:\htlib\pas\FInfo.pas(366,1) Fatal: There were 1 errors compiling module, stopping </code></pre> <p>First lines of FInfo.lrs file which looks like text file (not binary as .res files):</p> <pre><code>{ This is an automatically generated lazarus resource file } LazarusResources.Add('TfrmInfo','FORMDATA',[ 'TPF0'#8'TfrmInfo'#7 ... </code></pre> <p>In designer I can see and edit this form, so I think it was converted with success. Maybe there is something wrong with .lrs file? Shouldn't it be binary as .res files? What should I do to compile this form?</p> <p><strong>EDIT</strong>:</p> <p>My .pas unit has this form as:</p> <pre><code>{$R *.lrs} </code></pre> http://stackoverflow.com/questions/1662108/how-do-i-make-the-lazarus-ide-look-and-work-like-delphi-2007-or-newer 2 How do I make the Lazarus IDE look and work like Delphi 2007 or newer? Mick 2009-11-02T15:53:23Z 2009-11-03T09:31:42Z <p>I've begun working with using Lazarus to make some simple utilities for my own use on Ubuntu 9.10. I know many people like the modular Delphi 7 layout, but I hate it. I find it annoying and disruptive. I dislike using Gimp for the same reason.</p> <p>I'd also prefer to have the Delphi 2007 palette menu. Is this possible within the latest version of Lazarus (v0.9.28.x) ?</p> <p>How can I configure Lazarus to look like, or behave like, Delphi 2007/9/10?</p> http://stackoverflow.com/questions/1646326/how-to-deploy-python-to-windows-users 2 How to deploy Python to Windows users? mamcx 2009-10-29T20:28:34Z 2009-10-30T05:27:32Z <p>I'm soon to launch a <a href="http://www.bestsellerapp.com/" rel="nofollow">beta app</a> and this have the option to create custom integration scripts on <a href="http://en.wikipedia.org/wiki/Python%5F%28programming%5Flanguage%29" rel="nofollow">Python</a>.</p> <p>The app will target <a href="http://en.wikipedia.org/wiki/Mac%5FOS%5FX" rel="nofollow">Mac OS X</a> and Windows, and my problem is with Windows where Python normally is not present.</p> <p>My actual aproach is silently run the Python 2.6 install. However I face the problem that is not activated by default and the path is not set when use the <a href="http://www.python.org/download/releases/2.5/msi/" rel="nofollow">command line options</a>. And I fear that if Python is installed before and I upgrade to a new version this could break something else...</p> <p>So, I wonder how this can be done cleanly. Is it OK if I copy the whole Python 2.6 directory, and put it in a sub-directory of my app and install everything there? Or with virtualenv is posible run diferents versions of Python (if Python is already installed in the machine?).</p> <p>I also play before embedding Python with a DLL, and found it easy but I lost the ability to debug, so I switch to command-line plug-ins.</p> <p>I execute the plug-ins from command line and read the STDOUT and STDERR output. The app is made with Delphi/Lazarus. I install others modules like JSON and RPC clients, Win32com, ORM, etc. I create the installer with <a href="http://bitrock.com/" rel="nofollow">bitrock</a>.</p> <p>UPDATE: The end-users are small business owners, and the Python scripts are made by developers. I want to avoid any additional step in the deployment, so I want a fully integrated setup.</p> http://stackoverflow.com/questions/1589219/how-to-connect-to-a-linux-server-via-ssh 0 How to connect to a Linux server via SSH? [closed] Altar 2009-10-19T15:04:59Z 2009-10-19T15:04:59Z <p>Hi.</p> <p>I need to work (run/edit/delete files) with 12 Linux computer nodes in a cluster. Usually I use SSH to connect to those nodes. How can I do this from Lazarus? I have tried the 2nd and 3rd TProcess example posted on Lazarus' wiki page (<a href="http://wiki.lazarus.freepascal.org/Executing%5FExternal%5FPrograms" rel="nofollow">http://wiki.lazarus.freepascal.org/Executing%5FExternal%5FPrograms</a>) but it is not working with SSH (but it is working with 'ls').</p> <p>Any ideas how to make SSH work with Lazarus?</p> <p>(I am on linux)</p> http://stackoverflow.com/questions/891678/what-would-be-the-best-solution-for-my-delphi-apps-on-linux-delphiwine-or-laza 2 What would be the best solution for my Delphi apps on Linux - Delphi+Wine or Lazarus? mm2010 2009-05-21T06:59:03Z 2009-09-03T14:35:36Z <p>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, Maintenance etc.) on the longer term in order to avoid landing in a maintenance nightmare. I keep my Windows components used pretty standard to avoid complexities that may develop on cross-platform. I am looking for some hard facts that should go beyond being subjective. I do not want to consider .Net/Mono because this will set me back immediately (Huge Delay to market) which I cannot afford.</p> <p>I can think of some:</p> <ol> <li>Lazaraus may require some (changes) programming to make code work.</li> <li>Wine is a more difficult environment to maintain at a large base of customers.</li> </ol> <p>You contribution on this would be greatly appreciated.</p> http://stackoverflow.com/questions/1300450/free-pascal-tdbgrid-get-current-row 0 free pascal, tdbgrid, get current row Adrian 2009-08-19T14:46:12Z 2009-08-19T14:46:12Z <p>Hi all!</p> <p>I'm new to free pascal and lazarus stuff and i wonder how can i get row data (for example id column) from selected row in tbgrid?</p> http://stackoverflow.com/questions/1225032/is-there-a-central-freepascal-lazarus-component-repository 1 Is there a central FreePascal/Lazarus Component repository? Gustavo Carreno 2009-08-03T22:58:14Z 2009-08-06T00:30:57Z <p>I'm looking to find something like <a href="http://torry.net" rel="nofollow">Torry</a> but instead of being Delphi centric, it should be Lazarus centric.</p> <p>I'm aware of the Source Forge Project <a href="http://lazarus-ccr.sourceforge.net/" rel="nofollow">Code and Component Repository</a> but I'm looking for something with more span and a bit more searching features.</p> http://stackoverflow.com/questions/1116745/is-this-algorithm-for-lock-free-fifo-queue-management-any-good 1 Is this Algorithm for lock-free fifo queue management any good? dummzeuch 2009-07-12T19:44:04Z 2009-07-13T13:45:34Z <p>I just found this:</p> <p><a href="http://www.emadar.com/fpc/lockfree.htm" rel="nofollow">http://www.emadar.com/fpc/lockfree.htm</a></p> <p>at first glance it looks fine. Is anybody using it? Or maybe somebody already looked at it and found it unusable?</p> http://stackoverflow.com/questions/1085734/lazarus-component-for-multimedia-manipulation-and-wince-compatible 0 Lazarus component for Multimedia manipulation and WinCE compatible junmats 2009-07-06T06:57:19Z 2009-07-07T10:43:49Z <p>Hi! I would just like to know if there are Multimedia components for Lazarus and is compatible with WinCE platform. I tried the ACS(Audio Component Suite)but it gives an error when I compiled it. Plus, it doesn't support video manipulation.I would really appreciate your help. </p> http://stackoverflow.com/questions/1067025/handheld-development-lazarus-or-turbo-delphi-net 3 Handheld Development, Lazarus or Turbo Delphi.Net Dels 2009-07-01T02:29:08Z 2009-07-02T10:53:08Z <p>I begin to program some handheld program as hobby, right now i currently have knowledge on Blackberry App (Java), Symbian S60 (PyS60) and J2ME</p> <p>Something that i wanna learn was Windows Mobile/Pocket PC and iPhone development, but since i don't use Mac so i step to Windows Mobile/Pocket PC development</p> <p>Here some question:<br /> 1. Which is better Lazarus or Turbo Delphi.Net?<br /> 2. Do both have some kind support of network access (GPRS, Wi-Fi, HSDPA, etc)?<br /> 3. Do both have database access, both remote database and standalone/embed database? like SQL Server 2005 CE?<br /> 4. Do i need some driver installed on Windows Mobile/Pocket PC to be able to work with SQL Server 2005 Developer on server i already have?<br /></p> <p>If possible answer point-by-point</p> <p>Thanks</p> http://stackoverflow.com/questions/851934/porting-windows-demo-apps-to-wince-xp-embedded 0 Porting Windows demo apps to WinCE/XP Embedded Journeyman 2009-05-12T09:28:55Z 2009-06-12T11:20:40Z <p>We have a range of PC demonstration programs for our microcontroller products. The programs typically connect to a USB HID chip on the microcontroller board. The USB chip acts as a communications bridge, allowing the programs to communicate with the micros over SPI/I2C/UART. The programs can configure the micros, and get back status information to display to the user.</p> <p>We are now looking to build some standalone demonstrations using single board PCs. We would like to reuse as much as possible of our existing demo app source code. Ideally, we could just run them as-is.</p> <p>Does anybody have any advice on the best way forward? The basic options seem to be WinCE or XP Embedded boards. WinCE boards seem to pull less power, which would be an advantage from a battery life point of view.</p> <p>Our existing demos are built either in C++ under Borland Builder, or in Delphi.</p> <p>Thanks in advance.</p> <p>EDIT: see my answer below with info from a board vendor.</p> http://stackoverflow.com/questions/751129/visual-small-size-language 2 Visual-small size language Fermin 2009-04-15T10:50:51Z 2009-05-22T09:03:44Z <p>I need to develop a simple Windows application with 6 or 7 forms. Its main purpose is to manage files and launch a external program. </p> <p>These are my wishes, in descending importance order</p> <ol> <li>Free </li> <li>Be Visual, I mean, the possibility to paint forms and object in the screen.</li> <li>Possibility to carry it in a USB pen-drive.</li> </ol> <p>I need a light/small size language, not a very complex one. My program is going to have very few forms and its functionality is simple.</p> <p>Is there any language that meet this wishes? If not, is there any commercial one?</p> http://stackoverflow.com/questions/673086/faulty-fonts-on-lazarus 0 Faulty fonts on Lazarus Gustavo Carreno 2009-03-23T11:46:19Z 2009-05-02T11:45:10Z <p>I've recently installed FPC 2.2.2 and Lazarus 0.9.6 on my Acer Aspire One, so I can cross-compile some apps and to my dismay, the fonts for the menus all are little squares.</p> <p>Has anyone had a similar problem with Lazarus on a Fedora Core instalation that could give me some advice?</p> http://stackoverflow.com/questions/591678/how-can-i-perform-the-equivalent-of-shellexecute-in-lazarus-for-a-mac 2 How can I perform the equivalent of shellexecute() in Lazarus for a Mac? Jamey McElveen 2009-02-26T17:54:39Z 2009-04-26T17:27:26Z <p>How can I perform the equivalent of <code>shellexecute()</code> in Lazarus for a Mac?</p> http://stackoverflow.com/questions/693080/linux-linker-flag-lxi-not-finding-lib-when-compiling-lazarus-code 0 Linux linker flag -lXi not finding lib when compiling Lazarus code Gustavo Carreno 2009-03-28T16:49:05Z 2009-03-29T08:55:26Z <p>After I solved my <a href="http://stackoverflow.com/questions/673086/faulty-fonts-on-lazarus">first problem</a> I got into another one. Looks like I'm missing some kind of library, making the linker complain that the -lXi is not working.</p> <p>I've included most of the Xorg devel packages, what more do I need?</p>