Re: [Lazarus] debugging interface method calls

2017-02-01 Thread Bart via Lazarus
On 2/1/17, Ondrej Pokorny via Lazarus wrote: > Who does develop it? Do you? Joost van der Sluis? Bart -- ___ Lazarus mailing list Lazarus@lists.lazarus-ide.org http://lists.lazarus-ide.org/listinfo/lazarus

Re: [Lazarus] StringGrid & Accented characters

2017-02-02 Thread Bart via Lazarus
On 2/2/17, Koenraad Lelong via Lazarus wrote: > I thought of using a StringGrid to "LoadfromCSV", modify the cells and > then save the grid to CSV again. > Unfortunatly, when I load the CSV, the StringGrid shows strange > characters for the accented letters. Is a

[Lazarus] CapsLock and KeyDown

2017-02-08 Thread Bart via Lazarus
Hi, When I press CapsLock key and release it I expect to get: KeyDown: VK_CAPITAL followed by KeyUP: VK_CAPITAL However I get: KeyDown: VK_CAPITAL followed by KeyDown; $00E9 followed by KeyUP: VK_CAPITAL I thought it might be a bug in Lazarus, but the same happens in Delphi7. Does anybody know

Re: [Lazarus] FPC 3.0.2 released!

2017-02-18 Thread Bart via Lazarus
On 2/17/17, Marco van de Voort via Lazarus wrote: > Finally, FPC 3.0.2 has landed. FPC 3.0.2 is an update to 3.0.0 that > contains some compiler bugfixes and library progress since 3.0.0 The fpc-3.0.2.i386-win32.cross.arm-wince.exe seems to be corrupted. "The

Re: [Lazarus] FPC 3.0.2 released!

2017-02-18 Thread Bart via Lazarus
On 2/18/17, Marco van de Voort via Lazarus wrote: > I had already seen it on the forum, and reported it to win32 builder Pierre; > there were some issues with full disks during uploading. > > I assume it will be resolved in the current days. Thanks, I'll try again

Re: [Lazarus] FPC 3.0.2 released!

2017-02-18 Thread Bart via Lazarus
On 2/18/17, Marco van de Voort via Lazarus wrote: > Pierre has uploaded it to ftp.hu.freepascal.org (scenergy), and is uploading > it to sf.net. Downloaded from SF: installs correctly. Thanks. Bart -- ___ Lazarus

Re: [Lazarus] Lazarus Release 1.6.4

2017-03-01 Thread Bart via Lazarus
On 3/1/17, Jürgen Hestermann via Lazarus wrote: > I just downloaded this new version for Windows 32 and tried to install > packages (LCLextension 0.6 and VirtualTreeView 5.5.3) > but always get an error on this function in OLEUTILS: AFAIK this (oleutils) is not

Re: [Lazarus] TPageControl OnChange calling issue

2016-10-03 Thread Bart via Lazarus
On 10/3/16, Michael W. Vogel via Lazarus wrote: OT reply: I can't see you on contributors list? Bart -- ___ Lazarus mailing list Lazarus@lists.lazarus-ide.org http://lists.lazarus-ide.org/listinfo/lazarus

Re: [Lazarus] TPageControl OnChange calling issue

2016-10-03 Thread Bart via Lazarus
On 10/3/16, Michael W. Vogel via Lazarus wrote: > If I understand Bart right, he had a fix for that bug report, Not yet ;-) Bart -- ___ Lazarus mailing list Lazarus@lists.lazarus-ide.org

Re: [Lazarus] ctrl-c code completion

2016-11-06 Thread Bart via Lazarus
On 11/6/16, Michael Van Canneyt via Lazarus wrote: > Why does the IDE insist on reformatting existing declarations ? Tools->Options->Codetools->Class Completion Uncheck: "Update all method signatures" ? Bart -- ___

Re: [Lazarus] ctrl-c code completion

2016-11-08 Thread Bart via Lazarus
On 11/8/16, Lars via Lazarus wrote: > On Sun, November 6, 2016 10:05 am, Michael Van Canneyt via Lazarus wrote: >> >> press ctrl-c to do command-completion > > If ctrl - c is for copying, how does this not interfere? It is Shift+Ctrl+C by default. Bart --

Re: [Lazarus] Windows and german Umlauts: why do i have to PWideChar(UTF8Decode(String)) and not UTF8ToAnsi(String)

2016-10-18 Thread Bart via Lazarus
On 10/18/16, Landmesser John via Lazarus wrote: > But UTF8ToAnsi(String) fails. Maybe Utf8ToWinCP(AString) helps? It's in unit LazUtf8. Bart -- ___ Lazarus mailing list Lazarus@lists.lazarus-ide.org

Re: [Lazarus] TextHint rewrite

2016-11-14 Thread Bart via Lazarus
On 11/14/16, Ondrej Pokorny via Lazarus wrote: > 1.) Unfortunately it's not possible to create the custom paint event > "PaintAfterInterface" for all TWinControls on Win32. So it doesn't make > sense to implement it. > 2.) Some of Lazarus developers don't want to

Re: [Lazarus] Is the TODO list working?

2016-11-22 Thread Bart via Lazarus
On 11/22/16, Mattias Gaertner via Lazarus wrote: > http://wiki.lazarus.freepascal.org/IDE_Window:_ToDo_List Most of my ToDo's are in //ToDo: format, which I see is not handled. I must admit I never tried that package. Bart --

Re: [Lazarus] TPageControl OnChange calling issue

2016-11-15 Thread Bart via Lazarus
On 11/15/16, Michael Schnell via Lazarus wrote: > That supposedly can easily be defined by the general "mode" setting. Mode switches are about coding (how the compiler should behave), not about how components should behave once compiled. Bart --

Re: [Lazarus] TPageControl OnChange calling issue

2016-11-15 Thread Bart via Lazarus
On 11/15/16, Ondrej Pokorny via Lazarus wrote: > Then there's the problem with what behavior should be default. If we say > LCL is VCL compatible then it is clear, but the more I think about it > the more I feel Delphi behavior is just strange. Probably thinking is

Re: [Lazarus] TPageControl OnChange calling issue

2016-11-13 Thread Bart via Lazarus
On 11/13/16, Ondrej Pokorny via Lazarus wrote: > Unfortunately this will probably be impossible to make for all > LCL-controls systematically. But we can make it for TPageControl - add a > new option nboDelphiOnChange (or whatever) that defaults to Delphi >

Re: [Lazarus] In search of a component for holding a table of strings

2017-01-09 Thread Bart via Lazarus
On 1/10/17, Werner Pamler via Lazarus wrote: > Ah - that's the explanation: you did your test with a predimensioned > table? Mine started with an empty table, and with every new cell the > tree sorts the new cell to the correct location and rebalances itself. > It

Re: [Lazarus] In search of a component for holding a table of strings

2017-01-09 Thread Bart via Lazarus
On 1/9/17, Werner Pamler via Lazarus wrote: > I would be tempted to implement such a table in fpspreadsheet, but its > problem is that it occupies memory for empty cells An empty cell occupies only a nil pointer. Mind you that when you do not know the dimensions

Re: [Lazarus] In search of a component for holding a table of strings

2017-01-09 Thread Bart via Lazarus
On 1/9/17, Lukasz Sokol via Lazarus wrote: > For such usage, it is rather assumed that NO substring can contain EOL of > any kind, For the intende purpose of TStringTable, this is certainly NOT the case. > EOL is assumed to be meaning end of a string here. Not

Re: [Lazarus] TextHint rewrite

2016-12-02 Thread Bart via Lazarus
On 12/2/16, Ondrej Pokorny via Lazarus wrote: > WinAPI doesn't support changing text hint font - it is not italic. AFAIK > "TextHint" e.g. in Konqueror navigation bar on Linux isn't italic > either. So no unless you bring very good arguments for it. I originally

Re: [Lazarus] In search of a component for holding a table of strings

2017-01-05 Thread Bart via Lazarus
On 1/5/17, Michael Schnell via Lazarus wrote: > A two dimensional dynamic array. > > If he wants "add" and "delete" etc functions, he can easily embed same > in a class, plus using a two dimensional array default property for comfort. Yes, that's what I ended up

Re: [Lazarus] In search of a component for holding a table of strings

2017-01-05 Thread Bart via Lazarus
On 1/5/17, Bart wrote: > I constructed a TStringTable class that does all I need (and more): > - insert, add, delete rows/cols > - autogrow colcount (with insertrow) > - exchange rows/cols > - get/set rows/cols > - property Cells[ACol, ARow]: string (read/write) > > It can

Re: [Lazarus] In search of a component for holding a table of strings

2017-01-06 Thread Bart via Lazarus
On 1/6/17, Michael Schnell via Lazarus wrote: > Instead of a two dimensional array of strings you could have use a > single dimensional array of StringLists (a less symmetrical way, of > course). That was my frist try (see:

Re: [Lazarus] In search of a component for holding a table of strings

2017-01-06 Thread Bart via Lazarus
On 1/6/17, Michael Schnell via Lazarus wrote: >> Just implemented sorting. > Nice ! > (Even if I don't see a straight forward understanding of two dimensional > sorting). Imagine you wat the rows that have the largest values (this depends on the context) at the

Re: [Lazarus] In search of a component for holding a table of strings

2017-01-02 Thread Bart via Lazarus
On 1/2/17, guy barbier via Lazarus wrote: > why not use the TstringGrid component? Because I do not want it to depend on LCL (which I forgot to mention). Bart -- ___ Lazarus mailing list Lazarus@lists.lazarus-ide.org

Re: [Lazarus] Form.ActiveChanged vs Screen ActiveControlChanged

2017-01-08 Thread Bart via Lazarus
On 1/8/17, José Mejuto via Lazarus wrote: > Hello, > > In my code I'm overriding "Form.ActiveChanged" to catch when control > focus changes and perform some global checks, it works fine except when > focus is changed with mouse. > > As a test I've added a handler in

Re: [Lazarus] In search of a component for holding a table of strings

2017-01-06 Thread Bart via Lazarus
On 1/6/17, Lukasz Sokol via Lazarus wrote: > OK I understand, you don't want to depend on TStrings ? That makes no sense to me, some methods take a TStrings as parameter... Maybe you meant TStringGrid instead? I did not want my code to depend on LCL. (It does

Re: [Lazarus] In search of a component for holding a table of strings

2017-01-06 Thread Bart via Lazarus
On 1/6/17, Lukasz Sokol via Lazarus wrote: > just having a look at the declaration, haven't skimmed through code yet, > > do you also plan to add a TStringGrid-like interface for cols and rows No, I wanted to keep it as simple as possible. Bart --

Re: [Lazarus] In search of a component for holding a table of strings

2017-01-06 Thread Bart via Lazarus
On 1/6/17, Michael Schnell via Lazarus wrote: > Looking at the code I could imagine that auto-growing when using the > Cell property to write an element might be appropriate. I thought bout that, but rejected it. > Read/Write form/to a file might be sensible.

Re: [Lazarus] In search of a component for holding a table of strings

2017-01-09 Thread Bart via Lazarus
On 1/9/17, Werner Pamler via Lazarus wrote: > Amazing. I tried the AVLTree used by fpspreadsheet and it needs 0.37 sec > for 1000x1000 and 10.3 sec for 5000x5000. My tests were all "in memory", no disk access whatsoever. Bart --

Re: [Lazarus] In search of a component for holding a table of strings

2017-01-10 Thread Bart via Lazarus
On 1/10/17, Werner Pamler via Lazarus wrote: > If the author if the AVLTree is reading this: Is there a way to add a > group of nodes to the tree which are already ordered such that they will > be adjacent? I think that may not be possible. Your data may be

Re: [Lazarus] GUI multithreaded Win32 program sometimes freeze when quitting

2017-04-18 Thread Bart via Lazarus
On 4/18/17, Dennis via Lazarus wrote: > I noticed that it will happen more often if: > 1) > constructor TMyComponent.Create(TheOwner : TComponent); > begin > > self.some_component := TSomeComponent.Create(TheOwner); > end; A bit OT, but would think that is bad

Re: [Lazarus] Colorconversion in htmlreport

2017-03-11 Thread Bart via Lazarus
On 3/11/17, frans via Lazarus wrote: > I want to use the color #D8FFF4. > But the function Color2HTML translate that code to $00D8FFF4# That makes no sense to me. #D8FFF4 looks like HTML color coding, so calling ColorToHTML on that makes no sense (or the name of

Re: [Lazarus] String vs WideString

2017-08-15 Thread Bart via Lazarus
On 8/15/17, Tony Whyman via Lazarus wrote: > 2. Clean up the char type. > > Why shouldn't there be a single char > type that intuitively represents a single character regardless of > how many bytes are used to represent it. You would have to define

Re: [Lazarus] String vs WideString

2017-08-17 Thread Bart via Lazarus
On 8/17/17, Luca Olivetti via Lazarus wrote: > I started using strings as communication buffers since delphi 2. There > weren't even dynamic arrays then... From the Turbo Pascal Help: "A string type variable is a sequence of characters ..." And then when you

Re: [Lazarus] String vs WideString

2017-08-17 Thread Bart via Lazarus
On 8/17/17, Sven Barth via Lazarus wrote: >> really? delphi came from TP/BP... i was (still am, actually) using > dynamic arrays in TP6 ;) > > Dynamic arrays in the form of "array of Type" were only introduced in > Delphi 3 if I remember correctly. Anything before

[Lazarus] Oproep aan alle Nederlandstalige Lazarusgebruikers (Attn: all Dutch Lazarus users)

2017-05-14 Thread Bart via Lazarus
Beste allen, De Nederlandse vertaling van de Lazarus IDE laat nogal te wensen over. Slechts 27% van alle strings zijn vertaald. Ik vermoed dat de meesten onder ons,evenals ik, gewoen de engelse taal in de IDE gebruiken. Ik probeer een beetje zicht te krijgen op de zinvolheid van het vertalen

Re: [Lazarus] A simple way to stop the never ending story of long executable?

2017-05-20 Thread Bart via Lazarus
On 5/20/17, Alexey via Lazarus wrote: > External debug symbols file? No, please. Bart -- ___ Lazarus mailing list Lazarus@lists.lazarus-ide.org http://lists.lazarus-ide.org/listinfo/lazarus

Re: [Lazarus] A simple way to stop the never ending story of long executable?

2017-05-20 Thread Bart via Lazarus
On 5/20/17, Giuliano Colla via Lazarus wrote: >>> External debug symbols file? >> No, please. > > Why? 1. I regularly deploy applications with debug info. 2. There are reports (or at least I remeber seeing them) that antivirus programs tend to barf on external

Re: [Lazarus] Call for translations updates for 1.8 release

2017-05-08 Thread Bart via Lazarus
On 4/18/17, Maxim Ganetsky via Lazarus wrote: > Now that Lazarus 1.8 branch has been created it is time for translators > to review and update their translations. Is there an official translator for the Dutch language files? The state of the dutch translation is

Re: [Lazarus] Todo lists.

2017-11-26 Thread Bart via Lazarus
On Mon, Nov 20, 2017 at 10:41 PM, Donald Ziesig via Lazarus wrote: > I can't find either of the menu items for Todo, nor does the hot key work in > v1.80RC4. > > What am I missing :'( ? Do you have the ToDoListLaz package installed? Bart --

Re: [Lazarus] CHM help package

2017-12-13 Thread Bart via Lazarus
On Wed, Dec 13, 2017 at 8:35 AM, Sergey Bodrov via Lazarus wrote: >> What is strange? > > http://wiki.freepascal.org/Creating_A_Patch describes two ways - make a > small patch or send whole files with instructions Hmm, it actuallya says: "new files should be sent

Re: [Lazarus] Laz commit for SpinEdit overflow fix

2017-12-08 Thread Bart via Lazarus
On Fri, Dec 8, 2017 at 10:57 AM, Alexey via Lazarus < lazarus@lists.lazarus-ide.org> wrote: > - FIncrement := AIncrement; > + if AIncrement > 0 then > + FIncrement := AIncrement > + else > + FIncrement := -AIncrement; > > better: FIncrement := Abs(AIncrement); > I believe you are referring to

Re: [Lazarus] "Ambiguous unit found" message

2017-10-31 Thread Bart via Lazarus
On Tue, Oct 31, 2017 at 11:17 AM, Juha Manninen via Lazarus wrote: > I was surprised that Application.MessageBox and ShowMessage behaved the same. > Many apps, including the IDE, use ShowMessage. I think its behavior > should be improved. Anybody who wants the

Re: [Lazarus] Cloning standard output to text file

2018-05-04 Thread Bart via Lazarus
On Fri, May 4, 2018 at 12:51 PM, Carlos E. R. via Lazarus wrote: > I want to do a series of "writeln(...)" and have the output go > simultaneously to the console and to a text file of my choice. I have > the vague idea that this was done writing a text file handler

Re: [Lazarus] Problem compiling trunk LazUtils Error: (11006) Illegal parameter: -vm6058

2018-06-24 Thread Bart via Lazarus
On Sun, Jun 24, 2018 at 11:04 PM, Mattias Gaertner via Lazarus wrote: > My fpc 3.0.4 simply ignores the parameter. > What compiler flavor shows this error? 3.0.4rc1 does (never got to updating that to the actual 3.0.4 release). C:\Users\Bart\LazarusProjecten\ConsoleProjecten>fpc -vm6058

Re: [Lazarus] wikirevenge - wikicare

2018-05-03 Thread Bart via Lazarus
On Thu, May 3, 2018 at 7:57 PM, Dmitry Boyarintsev via Lazarus wrote: > I couldn't help but to search mentioning of mORMot on the > wiki.freepascal.org. > To the great surprise the page is there, but was populated with not a nice > words towards the authors of the

Re: [Lazarus] Minor Annoyance

2018-01-17 Thread Bart via Lazarus
On Wed, Jan 17, 2018 at 6:46 PM, Donald Ziesig via Lazarus wrote: > I have done this in the past, and when I did, the IDE would restart > automatically when the re-build was done. With 1.8 the IDE closes and must > be manually restarted. As the subject says, this

Re: [Lazarus] Minor Annoyance update

2018-01-17 Thread Bart via Lazarus
> Startup of the IDE also fails with the menu selection: File | Restart How do you start the IDE: lazarus or startlazarus? Bart -- ___ Lazarus mailing list Lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus

Re: [Lazarus] Progressbar never reaches the end

2018-01-25 Thread Bart via Lazarus
On Thu, Jan 25, 2018 at 7:27 PM, frans via Lazarus wrote: > The > progressbar functions fine but when position=max, the progressbar visualy > never reaches the end. Thank Uncle Bill for that. The progressbar animates to the position you set it to. This takes time.

Re: [Lazarus] Progressbar never reaches the end

2018-01-26 Thread Bart via Lazarus
On Fri, Jan 26, 2018 at 11:52 AM, frans via Lazarus wrote: > Now, in the right loop, it makes a small better difference. Or try something like this: http://svn.code.sf.net/p/flyingsheep/code/trunk/MijnLib/fsiprogbar.pp I wrote that, just because of the annoying

Re: [Lazarus] IDE focused window after app terminates

2018-01-28 Thread Bart via Lazarus
On Sun, Jan 28, 2018 at 11:13 PM, Donald Ziesig via Lazarus wrote: > I have noticed a similar problem with Lazarus 1.8.0 that did not happen in > earlier versions. When I click on a tab in the Source Editor with the focus > in an editor window, the focus switches

Re: [Lazarus] Internal error when compiling LCL

2018-02-06 Thread Bart via Lazarus
On Tue, Feb 6, 2018 at 10:34 AM, Lubos Pintes via Lazarus wrote: > win32wsmenus.pp(253,1) Error: Internal error 200611031 Yep, had that some days ago. I was working on an unrelated LCL unit and had to do a "make clean" to make it go away. This process repeated

Re: [Lazarus] WARNING: TResourceCacheItem.IncreaseRefCount 1000 TFontHandleCache

2018-02-16 Thread Bart via Lazarus
On Fri, Feb 16, 2018 at 10:16 PM, Vojtěch Čihák via Lazarus wrote: > don't you know what does this output mean (in Console In/Output, not in > Messages): WARNING: TResourceCacheItem.IncreaseRefCount 1000 > TFontHandleCache ? Sounds quite familiar, see:

Re: [Lazarus] ghost selector in form editor

2018-02-18 Thread Bart via Lazarus
On Sun, Feb 18, 2018 at 1:17 AM, Juha Manninen via Lazarus wrote: > There is an oldish report: > https://bugs.freepascal.org/view.php?id=23741 Or even older: https://bugs.freepascal.org/view.php?id=13062 (But that was on WinMe) Bart --

Re: [Lazarus] Object inspector bug - exception

2018-03-06 Thread Bart via Lazarus
On Tue, Mar 6, 2018 at 2:45 PM, Rik van Kekem via Lazarus wrote: > On Windows Lazarus 1.9 trunk too. > You can shorten it to: > - in a new project click on filter in the object inspector > - press tab > - press o > - wait 1 second > *) List index (-1) out of

Re: [Lazarus] Lazarus - Windows NT4

2018-04-08 Thread Bart via Lazarus
On Sat, Apr 7, 2018 at 7:24 PM, Graeme Geldenhuys via Lazarus wrote: > it doesn't look like a very important/critical API call (introduced in > Windows XP). So maybe the original poster can comment out that call in > LCL-Win32, then recompile LCL and his app and

Re: [Lazarus] Test this please

2018-03-26 Thread Bart via Lazarus
On Mon, Mar 26, 2018 at 6:22 AM, Anthony Walter via Lazarus wrote: > Hey guys. I wrote this web tool a while ago which emulates a desktop > application in a few ways and wanted some feedback. Seems to work OK (Win10, FF) Looks OK too. Bart --

Re: [Lazarus] Combobox with sorted list of unique items?

2018-10-13 Thread Bart via Lazarus
On Fri, Oct 12, 2018 at 5:01 PM Bo Berglund via Lazarus wrote: > combobox.items.text := stringlist.text; combobox.items.assign(stringlist)? -- Bart -- ___ Lazarus mailing list Lazarus@lists.lazarus-ide.org

Re: [Lazarus] Combobox with sorted list of unique items?

2018-10-12 Thread Bart via Lazarus
On Fri, Oct 12, 2018 at 2:30 PM Vojtěch Čihák via Lazarus wrote: > > I just tried TStringList(ComboBox1.Items).Duplicates:=dupIgnore; but it does > not work for combo (in Qt4). Override Insert and check if it is already in there? Bart -- ___ Lazarus

Re: [Lazarus] Lazarus 1.8.5 IDE behaviour difference Win-Linux

2018-11-04 Thread Bart via Lazarus
On Sun, Nov 4, 2018 at 11:19 PM Bo Berglund via Lazarus wrote: > Is this behaviour only available on Windows or do I have some kind of > problem in my Linux installation? I have Linux Mint 18.2 64-bit in VirtualBox VM with KDE as WM (Win10 as host). When I click the maximize button of the main

Re: [Lazarus] IDE dlg Go To don't react to Esc key

2019-01-21 Thread Bart via lazarus
On Sat, Jan 19, 2019 at 11:44 PM Bart wrote: @AlexeyT: a reaction please? -- Bart -- ___ lazarus mailing list lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus

Re: [Lazarus] IDE dlg Go To don't react to Esc key

2019-01-23 Thread Bart via lazarus
On Wed, Jan 23, 2019 at 4:20 PM Vojtěch Čihák via lazarus wrote: > On GTk2, Escape key is reseted when Edit is focused, otherwise it works. That sounds like a bug? Escape is supposed to reach a button with Cancel=True before other controls on the form can see it IIRC? -- Bart --

Re: [Lazarus] IDE dlg Go To don't react to Esc key

2019-01-19 Thread Bart via lazarus
On Sat, Jan 19, 2019 at 10:55 PM AlexeyT via lazarus wrote: > Dialog must cancel on Esc press, now it doesn't. Latest SVN, Linux gtk2 x64. You mean GotLine dialog (default shoertcut: Ctrl+G)? If so, does it work in r60107? I can't really see how my change influences that (but it's late, so I

Re: [Lazarus] IDE dlg Go To don't react to Esc key

2019-01-19 Thread Bart via lazarus
On Sat, Jan 19, 2019 at 11:37 PM Bart wrote: > You mean GotLine dialog (default shoertcut: Ctrl+G)? > If so, does it work in r60107? Well, that dialog still works fine for me (closes on escape) with the changes of r60108 on Linux Mint 18.2 64-bit/fpc 3.0.4 -- Bart --

Re: [Lazarus] IDE dlg Go To don't react to Esc key

2019-01-23 Thread Bart via lazarus
On Wed, Jan 23, 2019 at 10:43 AM Mattias Gaertner via lazarus wrote: > I added #13 and #27. Now it works again under Linux/gtk2. Thanks. Odd though, since on my Linux machine this worked with GTK2 without that addition. Wondering why. -- Bart --

Re: [Lazarus] Wiki animated logo

2018-12-18 Thread Bart via lazarus
On Tue, Dec 18, 2018 at 3:50 PM John Landmesser via lazarus wrote: > very good idea!! > > Kill that nervous cat !! On the contrary: I love that cat! Bart -- ___ lazarus mailing list lazarus@lists.lazarus-ide.org

Re: [Lazarus] editorconfig support

2018-12-04 Thread Bart via lazarus
On Tue, Dec 4, 2018 at 4:00 AM Dmitry Boyarintsev via lazarus wrote: > But are there any Pascal libraries already available that can perform file > masks parsing? Masks unit (/components/lazutis folder of Lazarus)? This however assumes all strings are UTF8 and requires the LazUtf8 unit. It

Re: [Lazarus] Proud to announce..

2018-12-05 Thread Bart via lazarus
On Tue, Dec 4, 2018 at 11:01 PM Michael Van Canneyt via lazarus wrote: > The pas2js compiler runs now embedded in the browser itself. Amazing... Bart -- ___ lazarus mailing list lazarus@lists.lazarus-ide.org

Re: [Lazarus] inherited in autocode

2019-01-12 Thread Bart via lazarus
On Sat, Jan 12, 2019 at 7:18 PM Carlos Eduardo S. M. via lazarus wrote: > What if the line "inherited;" is automatically included when using code > completion (C) for constructor, destructor, CreateForm, > DestroyForm, etc.? Instead of It already does if the method is declared with override.

Re: [Lazarus] Exception=Unable to create file "/etc/fppkg/default"

2018-12-30 Thread Bart via lazarus
On Sun, Dec 30, 2018 at 2:42 PM Vojtěch Čihák via lazarus wrote: > Lazarus(SVN) at startup tries to write at /etc/fppkg/ where it has no rights. > The same file exists /home/$USERNAME/.fppkg/ There are more issues with r59933: see https://bugs.freepascal.org/view.php?id=34780 Bart --

Re: [Lazarus] In windows 10 (64bit) Assigning TFrame.parent to a TForm took 10 more seconds than Windows 7 (64 bit)

2018-12-19 Thread Bart via lazarus
On Wed, Dec 19, 2018 at 7:37 AM Sergey Bodrov via lazarus wrote: > > I encounter same trouble in Lazarus 1.0, and not remember, that it appear in > 1.2+ Maybe there some kind of code degradation? > 1.0 really? We're at 1.8 and 2.0RC2 (2.0RC3 is coming soon). Bart --

Re: [Lazarus] IDE dlg Go To don't react to Esc key

2019-01-22 Thread Bart via lazarus
On Mon, Jan 21, 2019 at 10:58 PM AlexeyT via lazarus wrote: > r60137. fpc 3.0.4. Ubuntu 18.04 gtk2 x64. rebuilt with clean-all. ESC > still don't work. Please answer the questions in my first reply. -- Bart -- ___ lazarus mailing list

Re: [Lazarus] IDE dlg Go To don't react to Esc key

2019-01-22 Thread Bart via lazarus
On Tue, Jan 22, 2019 at 6:41 PM AlexeyT via lazarus wrote: > >If so, does it work in r60107? Please test that, otherwise I have no idea wether my changes causes this. If r60107 works, then please add #27 to the allowed keys in Edit1KeyPress (r60108 or later) and see if that helps. Bart --

Re: [Lazarus] Is LCL-GTK still possible?

2019-03-26 Thread Bart via lazarus
On Tue, Mar 26, 2019 at 10:56 AM Graeme Geldenhuys via lazarus wrote: > I know in the past (many years ago) you had to manually rebuild LCL (by > building the IDE) for other widget types. But since LCL is now a > "standard package" like any other *.lpk package, I thought it should > build

Re: [Lazarus] Lots of access violations with TSQLConnection TSQLQuery on Linux

2019-04-04 Thread Bart via lazarus
On Thu, Apr 4, 2019 at 8:22 PM Anthony Walter via lazarus wrote: > I've filed a bug here with additional information and steps to reproduce: > > https://bugs.freepascal.org/view.php?id=35322 You posted that in Lazarus-CCR section. Bart -- Bart --

Re: [Lazarus] SourceForge Project of the Month

2019-03-01 Thread Bart via lazarus
On Fri, Mar 1, 2019 at 9:33 AM Mattias Gaertner via lazarus wrote: > https://sourceforge.net/blog/march-2019-community-choice-project-month-lazarus/ A more recent screenshot would have been nice (0.9.30.4 !!). . -- Bart -- ___ lazarus mailing list

Re: [Lazarus] Universal FontDialog for LCL

2019-03-07 Thread Bart via lazarus
On Thu, Mar 7, 2019 at 2:12 PM AlexeyT via lazarus wrote: > Default must be native OS dialog. I suggest to use my dialog when > boolean option in LCL (will be added) true. Please no! -- Bart -- ___ lazarus mailing list lazarus@lists.lazarus-ide.org

Re: [Lazarus] Translation Problem or IDE Error in Lazarus 2.0 RC3?

2019-02-04 Thread Bart via lazarus
On Mon, Feb 4, 2019 at 11:10 PM Joe via lazarus wrote: > Yes, the dialog with title "Fehler beim Schreiben der Datei" has only > two buttons. That by itself is silly. > I beg your pardon for this silly question: Where do I set the language > of Lazarus to English? > lazarus mailing list >

Re: [Lazarus] Translation Problem or IDE Error in Lazarus 2.0 RC3?

2019-02-04 Thread Bart via lazarus
On Mon, Feb 4, 2019 at 11:21 PM Bart wrote: > > So there seems to be a dialog with [mbCancel,mbAbort] somewehere? function TLazarusBuilder.SaveIDEMakeOptions(Profile: TBuildLazarusProfile; Flags: TBuildLazarusFlags): TModalResult; var Filename: String; fs: TFileStreamUTF8;

Re: [Lazarus] Translation Problem or IDE Error in Lazarus 2.0 RC3?

2019-02-04 Thread Bart via lazarus
On Mon, Feb 4, 2019 at 10:56 PM Bart wrote: > So there seems to be a dialog with [mbCancel,mbAbort] somewehere? > (From your post I gather there ar _only_ 2 buttons?) > > If you set language to English, what do the buttons say? Just tested: [Window Title] Error writing file [Content] Unable

Re: [Lazarus] Translation Problem or IDE Error in Lazarus 2.0 RC3?

2019-02-04 Thread Bart via lazarus
On Mon, Feb 4, 2019 at 11:25 PM Bart wrote: Sorry, not this one: > function TLazarusBuilder.SaveIDEMakeOptions(Profile: TBuildLazarusProfile; > Flags: TBuildLazarusFlags): TModalResult; but this one (in ide/project.pp): function TProject.SaveStateFile(const CompilerFilename, CompilerParams:

Re: [Lazarus] Translation Problem or IDE Error in Lazarus 2.0 RC3?

2019-02-04 Thread Bart via lazarus
And there seem to be at least 3 more dialogs with [mbCancel,mbAbort] as buttons in the ide directory ... Bart -- ___ lazarus mailing list lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus

Re: [Lazarus] Translation Problem or IDE Error in Lazarus 2.0 RC3?

2019-02-04 Thread Bart via lazarus
On Mon, Feb 4, 2019 at 11:36 PM Joe via lazarus wrote: I asked on devel ML. -- Bart -- ___ lazarus mailing list lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus

Re: [Lazarus] Translation Problem or IDE Error in Lazarus 2.0 RC3?

2019-02-04 Thread Bart via lazarus
On Mon, Feb 4, 2019 at 9:56 PM Joe via lazarus wrote: > If for any reason the '.compiled'-file of a test project can't be > written, during compiling a message window "Fehler beim Schreiben der > Datei" appears. It contains two buttons: "Abbruch" und "Abbrechen" > (something like "Cancellation"

Re: [Lazarus] Event with changed signature can be loaded without error

2019-04-12 Thread Bart via lazarus
On Fri, Apr 12, 2019 at 7:38 PM Werner Pamler via lazarus wrote: > I don't know: is this changed or am I fooled by my memory? I was rather > sure that when the signature of a published event is changed, forms > saved with the old signature cannot be read without error. But now I > notice that

Re: [Lazarus] Hints not working - what is wrong?

2019-05-19 Thread Bart via lazarus
On Sun, May 19, 2019 at 10:13 PM Bo Berglund via lazarus wrote: > Do I need to set some project property to make them appear? Set ShowHint to True? -- Bart -- ___ lazarus mailing list lazarus@lists.lazarus-ide.org

Re: [Lazarus] Add 'const' to func params

2019-04-30 Thread Bart via lazarus
On Tue, Apr 30, 2019 at 3:39 PM AlexeyT via lazarus wrote: > > lcl/clipbrd.pp > > procedure SetAsHtml(Html: String); > procedure SetAsHtml(Html: String; const PlainText: String); This would force us to make a copy of the HTML parameter, since it can get modified in the procedure. So,

Re: [Lazarus] Website/Mantis back online

2019-04-20 Thread Bart via lazarus
On Sat, Apr 20, 2019 at 11:36 PM Michael Van Canneyt via lazarus wrote: > ... Mantis has been updated to the latest version. That's a bit of a shock. It looks horrible to me ;-( -- Bart -- ___ lazarus mailing list lazarus@lists.lazarus-ide.org

[Lazarus] A new Mantis oddity?

2019-04-28 Thread Bart via lazarus
Hi, See https://bugs.freepascal.org/view.php?id=35307 It was resolved, then re-opened, then resolved again. So far nothing new. However after the second resolving the Resolution field is set to "reopened". That's a little bit odd. I cannot remember ever seeing this before. Searching the

Re: [Lazarus] Mantis: cannot edit my comments

2019-04-26 Thread Bart via lazarus
On Fri, Apr 26, 2019 at 8:50 PM AlexeyT via lazarus wrote: > > Cannot edit them anymore. No button at all. I filed a bugreport about it (in the Manits section of the bugtracker). Bart -- ___ lazarus mailing list lazarus@lists.lazarus-ide.org

Re: [Lazarus] Website/Mantis back online

2019-04-21 Thread Bart via lazarus
On Sun, Apr 21, 2019 at 6:08 PM Michael Van Canneyt via lazarus wrote: > My View page is now indeed correctly responding to settings. I miss "Monitored by me" I do have the rest back again though: - Assigned to me - Unassigned - Reported by me - Resolved - Recently modified -- Bart --

Re: [Lazarus] Website/Mantis back online

2019-04-21 Thread Bart via lazarus
On Sun, Apr 21, 2019 at 11:26 PM Bart wrote: > I miss "Monitored by me" Martin beat me to that ;-( -- Bart -- ___ lazarus mailing list lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus

Re: [Lazarus] Website/Mantis back online (colors)

2019-04-22 Thread Bart via lazarus
On Mon, Apr 22, 2019 at 12:45 PM Martin Frb via lazarus wrote: > The colors are different though... I can't see the difference between closed, resolved and assigned. The only distinct colors I can see are for new and acknowledged. This getting to be a nightmare. -- Bart --

Re: [Lazarus] Bugtracker tickets about Mantis

2019-04-24 Thread Bart via lazarus
On Wed, Apr 24, 2019 at 4:48 PM Michael Van Canneyt via lazarus wrote: > All done. Seems Martin beat me to it. Thanks to Martin then ;-) -- Bart -- ___ lazarus mailing list lazarus@lists.lazarus-ide.org

[Lazarus] Bugtracker tickets about Mantis

2019-04-24 Thread Bart via lazarus
Hi, Could somone with developer status in the "Mantis" section of the bugtracker please reolve the following issues: 0029685: You run a vulnerable Mantis version 0033833: Upgrade Mantis Bugtracker And a ticket by me: 0023818: Setting status to Feedback assigns issue too (as "Not fixable") --

Re: [Lazarus] Website/Mantis back online (colors)

2019-04-23 Thread Bart via lazarus
On Tue, Apr 23, 2019 at 9:43 AM Michael Van Canneyt via lazarus wrote: > > I applied it. Much better now. Only the green for Resolved is so pale it hardly contrasts with Closed. Bart -- Bart -- ___ lazarus mailing list

Re: [Lazarus] Website/Mantis back online

2019-04-23 Thread Bart via lazarus
On Tue, Apr 23, 2019 at 11:44 AM Werner Pamler via lazarus wrote: > BTW, are regular users (i.e. without developer status) able > to edit their own text after uploading? As I remember from my > non-developer days this was not possible. Yes, they are. I'm just reporter in fpc, but I can edit

Re: [Lazarus] Website/Mantis back online (colors)

2019-04-24 Thread Bart via lazarus
On Tue, Apr 23, 2019 at 10:53 PM Michael Van Canneyt via lazarus wrote: > I made it darker. Thank you very much! -- Bart -- ___ lazarus mailing list lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus

  1   2   3   >