[Lazarus] TFindDialog

2013-11-26 Thread Chavoux Luyt
Hi everybody I think I am missing something, but reading through the TFindDialog help file I still cannot figure it out: How do I specify which text (or component) must be searched? What I actually want to do, is to search through all files in a directory for a specific string (the one in

Re: [Lazarus] IDE problems - FIXED

2013-11-26 Thread brian
On 11/25/2013 06:26 PM, brian wrote: Hi folks, Something has spontaneously gone wrong with the IDE on my setup. I say spontaneously because I was in the middle of debugging a program when suddenly everything but the source window disappeared. I eventually had to abort Lazarus and re-start the

Re: [Lazarus] IDE problems

2013-11-26 Thread Mattias Gaertner
On Mon, 25 Nov 2013 22:17:05 -0300 Junior lazarus.li...@gmail.com wrote: Fixing the link: http://www.meadows.pair.com/Screenshot%20-%2011252013%20-%2006:57:09%20PM.png Em 25-11-2013 21:49, brian escreveu: On 11/25/2013 06:45 PM, Mattias Gaertner wrote: On Mon, 25 Nov 2013 18:26:48

Re: [Lazarus] IDE problems

2013-11-26 Thread brian
On 11/26/2013 03:21 AM, Mattias Gaertner wrote: On Mon, 25 Nov 2013 22:17:05 -0300 Junior lazarus.li...@gmail.com wrote: Fixing the link: http://www.meadows.pair.com/Screenshot%20-%2011252013%20-%2006:57:09%20PM.png Em 25-11-2013 21:49, brian escreveu: On 11/25/2013 06:45 PM, Mattias

Re: [Lazarus] IDE problems - FIXED

2013-11-26 Thread Mark Morgan Lloyd
brian wrote: Well, not surprisingly, the nuclear option worked. Rename .lazarus and my development directory, copy the .ini files and fpcup_linux_x64 into a new directory, and rebuild the whole thing. Bit of a nuisance having to set all my preferences again, but nothing like as bad as trying

Re: [Lazarus] TForm.ModalResult := mrOk problem

2013-11-26 Thread Antonio Fortuny
Le 25/11/2013 16:33, FreeMan a écrit : on /lazarus/lcl/forms.pp line 662: property ModalResult : TModalResult read FModalResult write FModalResult; TCustomForm class property. its just variable on virtualbox system: I add TButton on form and TButton.ModalResult set to MrOk. and click to

Re: [Lazarus] IDE problems - FIXED

2013-11-26 Thread Torsten Bonde Christiansen
On 2013-11-26 09:18, brian wrote: On 11/25/2013 06:26 PM, brian wrote: Hi folks, Something has spontaneously gone wrong with the IDE on my setup. I say spontaneously because I was in the middle of debugging a program when suddenly everything but the source window disappeared. I eventually had

Re: [Lazarus] TForm.ModalResult := mrOk problem FIXED

2013-11-26 Thread FreeMan
Thank you for your answer nearly 5-6 six hours trace all my code line by line, I found problem, Problem is in my code. for ModalResult := MrOk need user password control then can set, so its in procedure, user password check in my component(I was write nearly 7 years ago in delphi) I convert

[Lazarus] VST

2013-11-26 Thread Michael Schnell
Did anybody ever do a VST plugin by means of Lazarus/fpc ? == A VST plugin is a DLL, that can receive and send MIDI and/or Audio data streams and features a GUI ( - http://en.wikipedia.org/wiki/Virtual_Studio_Technology ). There are hundreds of VST plugins

[Lazarus] Deleteing a file that has a path that's longer than 256 characters

2013-11-26 Thread Richard Mace
Hi All, I have an issue where I am unable to delete a file where the path name is longer than 256 characters. Interesting enough, the error as reported from Windows (SysErrorMessage(GetLastError)) reports that Windows is unable to find the path specified. I have even tried renaming the file so

Re: [Lazarus] Deleteing a file that has a path that's longer than 256 characters

2013-11-26 Thread Frederic Da Vitoria
2013/11/26 Richard Mace richard.m...@gmail.com Hi All, I have an issue where I am unable to delete a file where the path name is longer than 256 characters. Interesting enough, the error as reported from Windows (SysErrorMessage(GetLastError)) reports that Windows is unable to find the

Re: [Lazarus] Deleteing a file that has a path that's longer than 256 characters

2013-11-26 Thread Craig Peterson
On Nov 26, 2013, at 7:59 AM, Richard Mace richard.m...@gmail.com wrote: I have an issue where I am unable to delete a file where the path name is longer than 256 characters. You need to call the Unicode variant of the file APIs and add \\?\ to the start of the path in order to interact with

Re: [Lazarus] Deleteing a file that has a path that's longer than 256 characters

2013-11-26 Thread Frederic Da Vitoria
2013/11/26 Craig Peterson cr...@scootersoftware.com On Nov 26, 2013, at 7:59 AM, Richard Mace richard.m...@gmail.com wrote: I have an issue where I am unable to delete a file where the path name is longer than 256 characters. You need to call the Unicode variant of the file APIs and add

Re: [Lazarus] Deleteing a file that has a path that's longer than 256 characters

2013-11-26 Thread Reinier Olislagers
On 26/11/2013 15:43, Frederic Da Vitoria wrote: 2013/11/26 Craig Peterson cr...@scootersoftware.com mailto:cr...@scootersoftware.com On Nov 26, 2013, at 7:59 AM, Richard Mace richard.m...@gmail.com mailto:richard.m...@gmail.com wrote: I have an issue where I am unable to delete a

[Lazarus] newbie question: tsqlquery; primarykey; insert.

2013-11-26 Thread Kovács László
Hi dear list members. I'm new here. Approximately 17 years ago I worked as a sysadmin, gave every day support for 70 peoples how to use their computers. I also made numerous small apps, to help the work of the firm. That time I did it with Delphi 1, used DBase and Paradox tables. I did this

Re: [Lazarus] Deleteing a file that has a path that's longer than 256 characters

2013-11-26 Thread Frederic Da Vitoria
2013/11/26 Reinier Olislagers reinierolislag...@gmail.com On 26/11/2013 15:43, Frederic Da Vitoria wrote: 2013/11/26 Craig Peterson cr...@scootersoftware.com mailto:cr...@scootersoftware.com On Nov 26, 2013, at 7:59 AM, Richard Mace richard.m...@gmail.com

Re: [Lazarus] Deleteing a file that has a path that's longer than 256 characters

2013-11-26 Thread Reinier Olislagers
On 26/11/2013 16:04, Frederic Da Vitoria wrote: 2013/11/26 Reinier Olislagers reinierolislag...@gmail.com mailto:reinierolislag...@gmail.com Richard wanted to delete his file programmatically, of course, else he wouldn't be asking his question in this list :-P I think Craig

Re: [Lazarus] Deleteing a file that has a path that's longer than 256 characters

2013-11-26 Thread Richard Mace
Many thanks for this input Frederic, I'll check it out. Richard On 26 November 2013 14:16, Frederic Da Vitoria davito...@gmail.com wrote: 2013/11/26 Richard Mace richard.m...@gmail.com Hi All, I have an issue where I am unable to delete a file where the path name is longer than 256

Re: [Lazarus] newbie question: tsqlquery; primarykey; insert.

2013-11-26 Thread Antonio Fortuny
Le 26/11/2013 16:02, Kovács László a écrit : Hi dear list members. I'm new here. Approximately 17 years ago I worked as a sysadmin, gave every day support for 70 peoples how to use their computers. I also made numerous small apps, to help the work of the firm. That time I did it with Delphi

Re: [Lazarus] TFindDialog

2013-11-26 Thread Bart
On 11/26/13, Chavoux Luyt chav...@gmail.com wrote: Hi everybody I think I am missing something, but reading through the TFindDialog help file I still cannot figure it out: How do I specify which text (or component) must be searched? Basically in the OnFind event of the TFindDialog you can

Re: [Lazarus] SQLite Vacuum Error Cannot rollback - no transaction is active

2013-11-26 Thread mulcamd
Hi, thanks, it works! Van: K. P. [mailto:platyster...@hotmail.com] Verzonden: dinsdag 26 november 2013 01:18 Aan: lazarus@lists.lazarus.freepascal.org Onderwerp: Re: [Lazarus] SQLite Vacuum Error Cannot rollback - no transaction is active As the error message indicates, do:

Re: [Lazarus] newbie question: tsqlquery; primarykey; insert.

2013-11-26 Thread Kovács László
First let me say thank you very much Antonio and Reinier! -- Az eredeti üzenet -- Feladó: Reinier Olislagers reinierolislag...@gmail.com Címzett: Lazarus mailing list lazarus@lists.lazarus.freepascal.org Elküldött elemek: 2013.11.26. 17:05:23 Tárgy Re: [Lazarus] newbie question:

Re: [Lazarus] newbie question: tsqlquery; primarykey; insert.

2013-11-26 Thread Sven Barth
On 26.11.2013 22:22, Kovács László wrote: After you mentioned, looked for but didn't find that data desktop in the tools dir. I'm running on Windows, and just installed the latest Lazarus I could download. Should it really be there? The directory is %lazarus%\tools\lazdatadesktop\. There