[Lazarus] "TGDBMIDebuggerInstruction: "-file-exec-and-symbols ", "

2014-04-16 Thread Marcos Douglas
Hi, I'm using FPC 2.6.5 (fixes_2_6) and Lazarus trunk on Windows. The GDB is updated too, here: http://svn.freepascal.org/svn/lazarus/binaries/i386-win32/gdb I run my program using the IDE and when program closes the IDE returns the error below... and doesn't matter if I run on Debug mode or not.

Re: [Lazarus] OpenDocument and Linux Mint

2014-04-16 Thread Lazarus Linux
Here the example indicated works perfect. Ubuntu 14.04 - Lazarus 1.3 trunk - fpc 2.6.2 2014-04-17 1:07 GMT+00:00 waldo kitty : > On 4/16/2014 3:39 PM, silvioprog wrote: > >> 2014-04-16 16:34 GMT-03:00 waldo kitty > >: >> [...] >> >> what is the error? you hav

Re: [Lazarus] OpenDocument and Linux Mint

2014-04-16 Thread waldo kitty
On 4/16/2014 3:39 PM, silvioprog wrote: 2014-04-16 16:34 GMT-03:00 waldo kitty mailto:wkitt...@windstream.net>>: [...] what is the error? you haven't told us that piece of important information ;) Oops, sorry! XD The file doesn't open. I click the button and nothing happens. and you do

Re: [Lazarus] OpenDocument and Linux Mint

2014-04-16 Thread silvioprog
2014-04-16 16:09 GMT-03:00 Junior : > What is the error? > The file doesn't open. I click the button and nothing happens. -- Silvio Clécio My public projects - github.com/silvioprog -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org htt

Re: [Lazarus] OpenDocument and Linux Mint

2014-04-16 Thread silvioprog
2014-04-16 16:34 GMT-03:00 waldo kitty : [...] > what is the error? you haven't told us that piece of important information > ;) Oops, sorry! XD The file doesn't open. I click the button and nothing happens. -- Silvio Clécio My public projects - github.com/silvioprog -- ___

Re: [Lazarus] OpenDocument and Linux Mint

2014-04-16 Thread waldo kitty
On 4/16/2014 2:32 PM, silvioprog wrote: 2014-04-16 15:30 GMT-03:00 Junior : OpenDocument('./test.txt'); Same error. what is the error? you haven't told us that piece of important information ;) -- NOTE: No off-list assistance is given without prior approval. Please keep mailing li

Re: [Lazarus] OpenDocument and Linux Mint

2014-04-16 Thread Junior
What is the error? Em 16-04-2014 15:32, silvioprog escreveu: 2014-04-16 15:30 GMT-03:00 Junior >: OpenDocument('./test.txt'); Same error. -- Silvio Clécio My public projects - github.com/silvioprog -- ___

Re: [Lazarus] OpenDocument and Linux Mint

2014-04-16 Thread silvioprog
2014-04-16 15:30 GMT-03:00 Junior : > OpenDocument('./test.txt'); > Same error. -- Silvio Clécio My public projects - github.com/silvioprog -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/l

Re: [Lazarus] OpenDocument and Linux Mint

2014-04-16 Thread Junior
OpenDocument('./test.txt'); Em 16-04-2014 15:18, silvioprog escreveu: Hello, I'm trying to open a TXT file in my app, but it does not works. The test is very simple: uses LCLIntf; procedure TForm1.Button1Click(Sender: TObject); begin OpenDocument('test.txt'); end; My environment is: La

[Lazarus] OpenDocument and Linux Mint

2014-04-16 Thread silvioprog
Hello, I'm trying to open a TXT file in my app, but it does not works. The test is very simple: uses LCLIntf; procedure TForm1.Button1Click(Sender: TObject); begin OpenDocument('test.txt'); end; My environment is: Lazarus 1.0.14 rUnknown FPC 2.6.2 x86_64-linux-gtk 2 (Linux Mint Mate 16 -

[Lazarus] Ubuntu 14.04 x fpc 2.6.?

2014-04-16 Thread Junior
Hi, all. Which version to use, 2.6.4? What ppa? Thanks -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] How can I Backup and restore TCanvas class

2014-04-16 Thread Mattias Gaertner
On Wed, 16 Apr 2014 15:21:35 +0300 FreeMan wrote: > Hello, > I need backup active canvas, and when drawing and other codes finished, > restore Canvas back. For this code, assign pointer just so > Canvas.Brush.Color := clRed; change ACanvas.Brush.Color too. > How can I Backup and restore TCanvas

Re: [Lazarus] How can I Backup and restore TCanvas class

2014-04-16 Thread FreeMan
This is RxGrid and I'm tring add OnRxColumnFooterDraw Tnotify event I sent out "Canvas" so programmer can change any info. background color, font etc. Sent Canvas to out, better then one by one (Bursh, Pen bla bla) I'm looking for short code for change original rxcodes. last chance sent to out

[Lazarus] How can I Backup and restore TCanvas class

2014-04-16 Thread FreeMan
Hello, I need backup active canvas, and when drawing and other codes finished, restore Canvas back. For this code, assign pointer just so Canvas.Brush.Color := clRed; change ACanvas.Brush.Color too. How can I Backup and restore TCanvas class ? Regards ACanvas := Canvas;//Backup canvas info