Re: Re: Re[2]: [lazarus] Analog Twebrowser in delphi?

2008-02-04 Thread John Johnson
Hmm, I should try it! Thanks for advise... _ To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: Re[2]: [lazarus] Analog Twebrowser in delphi?

2008-02-04 Thread Graeme Geldenhuys
On 04/02/2008, John Johnson <[EMAIL PROTECTED]> wrote: > > Hi. Yeah, I found some lhelp examples in Lazarus dir. But I cannot understand > how it's work! Could you give me > some instructions how I can show an html page in my app? I've never used it before, but I'm sure if you look at the code yo

Re: Re[2]: [lazarus]

2007-11-24 Thread Felipe Monteiro de Carvalho
On Nov 24, 2007 7:33 AM, Vasily I. Volchenko <[EMAIL PROTECTED]> wrote: > UTF8 might be good in the case of international texts mostly English. You say > that pascal program > is such a text, and I would agree with you. But we are living in a real > world, with a tons of text > files. LCL intern

RE: Re[2]: [lazarus] Project WiX opensource - make MSI from XML

2006-12-19 Thread George Birbilis
> > And, like the case of .NET, there are rumors about that no install > > technologies except .msi will be supported on Windows in > some future. > > http://en.wikipedia.org/wiki/Fear%2C_uncertainty_and_doubt This is impossible to force I think, unless you mean for installers not running from adm

Re: Re[2]: [lazarus] Project WiX opensource - make MSI from XML

2006-12-18 Thread Felipe Monteiro de Carvalho
I prefer to use a installer created on object pascal, like Inno Setup used by Lazarus. On 12/18/06, Sergei Gorelkin <[EMAIL PROTECTED]> wrote: And, like the case of .NET, there are rumors about that no install technologies except .msi will be supported on Windows in some future. http://en.wiki

Re: Re[2]: [lazarus] More Unicode implementation details

2006-10-31 Thread Felipe Monteiro de Carvalho
Hello, Here is my first patch. I checked that Window Titles work correct with UTF-8 if you recompile win32 with WindowsUnicodeSupport I also checked that titles work correctly with Ansi if you don´t set that define Marc, please review this. I created a global variable on win32proc called Unico

Re: Re[2]: [lazarus] More Unicode implementation details

2006-10-31 Thread Felipe Monteiro de Carvalho
On 10/31/06, Sergei Gorelkin <[EMAIL PROTECTED]> wrote: In Unicode app, you must call DefWindowProcW instead of DefWindowProc. oh, thanks a lot! I thought that wouldn´t make any difference. thanks, -- Felipe Monteiro de Carvalho

Re: Re[2]: [lazarus] Windows Unicode implementation proposal

2006-10-27 Thread Felipe Monteiro de Carvalho
On 10/27/06, Felipe Monteiro de Carvalho <[EMAIL PROTECTED]> wrote: Consider this code: function TGDIWindow.GetTitle: String; var l: Integer; begin l := Windows.GetWindowTextLength(Handle); SetLength(Result, l); Windows.GetWindowText(Handle, @Result[1], l); end; Proposal to unico

Re: Re[2]: [lazarus] Windows Unicode implementation proposal

2006-10-27 Thread Felipe Monteiro de Carvalho
Ok, so far we talked about sending a string to Windows API. But what about the inverse? Consider this code: function TGDIWindow.GetTitle: String; var l: Integer; begin l := Windows.GetWindowTextLength(Handle); SetLength(Result, l); Windows.GetWindowText(Handle, @Result[1], l); end; Ho

Re: Re[2]: [lazarus] Windows Unicode implementation proposal

2006-10-27 Thread Felipe Monteiro de Carvalho
On 10/27/06, Sergei Gorelkin <[EMAIL PROTECTED]> wrote: FMdC> Just because it exists, doesn´t mean it works correctly. Believe me - it works quite well :) I am successfully using it in a production project for quite a while. Oh, I just tested on Windows 98, and it really works! I don´t have a

Re: Re[2]: [lazarus] Windows Unicode implementation proposal

2006-10-27 Thread Felipe Monteiro de Carvalho
Forwarding sergei e-mail to the mailling list: On 10/27/06, Sergei Gorelkin <[EMAIL PROTECTED]> wrote: Friday, October 27, 2006, 2:40:06 PM, Felipe wrote: FMdC> On 10/27/06, Sergei Gorelkin <[EMAIL PROTECTED]> wrote: >> Second, this particular API function - GetTextExtentPoint32() - can be >> u

Re: Re[2]: [lazarus] UTF-8 vs Unicode - Could someone explain?

2006-10-20 Thread Graeme Geldenhuys
Thank you very much to everybody that replied and helped me understand this topic. Your emails really helped a lot. Regards, - Graeme - _ To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" as the Subject

Re: Re[2]: [lazarus] About the $mode objfpc and $mode delphi

2006-02-20 Thread Alexsander Rosa
It would be nice to have a grid with these differences. (Hint: I will try to write it and post here as soon as I have the time)2006/2/17, Andi Wangsadijaya <[EMAIL PROTECTED] >:Hello Vincent,On Friday, February 17, 2006, 20:13:01,  you wrote: > See> http://www.freepascal.org/docs-html/prog/progap4.

Re: Re[2]: [lazarus] Re: list of all components for DB

2005-12-16 Thread Joost van der Sluis
On Thu, 2005-12-15 at 19:19 +0700, Andi Wangsadijaya wrote: > Is there components for firebird which can display and edit directly > in the DBGrid or something else, like TDataset in Delphi? > > I've tried JV UIB, Fblib, Interbase, SQLDB but none of these > components can act like De

Re: Re[2]: [lazarus] Re: list of all components for DB

2005-12-15 Thread Luis Quental
Hi Andi,Did you try Fibl at http://sourceforge.net/projects/fiblThese components are based on FIB wich are the ancestors of IBX, and there is a FiblDataSet just like you want. Regards, Luis On 12/15/05, Andi Wangsadijaya < [EMAIL PROTECTED]> wrote: Helo Simeon,On 13 Desember 2005, 22:56:10, You wro