Re: [Lazarus] [ANN] fpCEF3

2013-05-26 Thread leledumbo
Currently it needs to be compiled without -WG (so you have this ugly cmd window) - this will change as soon as I don't need debug info output any more. Use DebugLn instead, it will work with/without standard output available. -- View this message in context:

Re: [Lazarus] [ANN] fpCEF3

2013-05-26 Thread dev . dliw
DebugLn Right - should have thought of it... Force of habit :( d.l.i.w -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] [WINCE] Please stop generate debug file.

2013-05-26 Thread Martin
On 26/05/2013 06:48, Felipe Monteiro de Carvalho wrote: Yes, the code needs to be rewritten. It was written before a system was created to allow widgetsets to override debugln. It also needs a variable in the widgetset class to allow the user to choose if he wants the log or not. but the code

[Lazarus] Beta testers on trunk: Inactive IFDEF code greyed out

2013-05-26 Thread Martin
In SVN trunk it is now possible to have inactive IFDEF code greyed out, or otherwise marked. The feature is still being tested, but seems to generally work well by now. If you wish to help testing, compile the IDE with the following define: WithSynMarkupIfDef (command-line option

Re: [Lazarus] porting delphi project code

2013-05-26 Thread waldo kitty
On 5/22/2013 04:11, Juha Manninen wrote: Maybe your project revealed a bug in converter. Maybe LCL dependency is not added because of some other error. following up on this... thanks Juha! :) LCL dependency was properly added to the converted project however there was a bug discovered...

Re: [Lazarus] porting delphi project code

2013-05-26 Thread Juha Manninen
On 5/26/13, waldo kitty wkitt...@windstream.net wrote: LCL dependency was properly added to the converted project however there was a bug discovered... Actually the LCL dependency was not yet added at that point. It was a strange error what the first unit in the project referenced a copied VCL

Re: [Lazarus] Android and network

2013-05-26 Thread Benito van der Zander
Anyway, something is broken on (my?) lazarus/fpc... when I compile for Android it builds, but app crashes at start (Well, on Galaxy Note it crashes at start, on Nexus 10 the app goes on loop flashing all time until I kill it) Always or just with the internettools? Did you check the logcat?

Re: [Lazarus] Android and network

2013-05-26 Thread Kjow
2013/5/22 Benito van der Zander ben...@benibela.de Hi, last week I ported my Internet Tools ( http://benibela.de/sources_en.html#internettools) to Android e.g.: uses simpleinternet; Memo2.Lines.text := retrieve(edit1.text); or if you need the headers: uses androidinternetaccess; var

Re: [Lazarus] Android and network

2013-05-26 Thread Kjow
2013/5/26 Benito van der Zander ben...@benibela.de Anyway, something is broken on (my?) lazarus/fpc... when I compile for Android it builds, but app crashes at start (Well, on Galaxy Note it crashes at start, on Nexus 10 the app goes on loop flashing all time until I kill it) Always or

Re: [Lazarus] Android and network

2013-05-26 Thread Kjow
Oops, I'm sorry for double post. It was a misprint. Kjow 2013/5/27 Kjow antispamm...@gmail.com 2013/5/22 Benito van der Zander ben...@benibela.de Hi, last week I ported my Internet Tools ( http://benibela.de/sources_en.html#internettools) to Android e.g.: uses simpleinternet;

Re: [Lazarus] Android and network

2013-05-26 Thread Benito van der Zander
What does the logcat say? You need to have |uses-permission android:name=android.permission.INTERNET/ | in the Android manifest And it has to be called in a new thread, unless you have |if (android.os.Build.VERSION.SDK_INT 9) { StrictMode.ThreadPolicy policy= new

Re: [Lazarus] Debugging fixed strings in UTF8 encoding

2013-05-26 Thread Ernest V Miller
I'll bend my knees to fair gods for your health! Martin laza...@mfriebe.de написано 17.05.2013 18:51:53: On 27/03/2013 04:08, Ernest V Miller wrote: I see value of utf8 in russian. And I am absolutely happy. But as soon as I want to use fixed strings, the only way for me to see my native

Re: [Lazarus] porting delphi project code

2013-05-26 Thread waldo kitty
On 5/26/2013 16:16, Juha Manninen wrote: On 5/26/13, waldo kittywkitt...@windstream.net wrote: LCL dependency was properly added to the converted project however there was a bug discovered... Actually the LCL dependency was not yet added at that point. It was a strange error what the first