[twsocket] TEmulVT: Keyboard Mapping

2005-07-21 Thread Artem Antonov
Hello! I have some question about TEmulVT component: 1) Does TFuncKeysTable array is implementation of Keyboard Mapping in TEmulVT component? 2) Is this Table specific for some language or it will work with any languages? 3) Can I extend this Table with my own FuncKeys? Thanks! Best regards,

Re: [twsocket] TEmulVT: Keyboard Mapping

2005-07-21 Thread Francois PIETTE
I have some question about TEmulVT component: 1) Does TFuncKeysTable array is implementation of Keyboard Mapping in TEmulVT component? Mapping for function keys. Normal keys are mapped by Windows using the keyboard setting for your country. 2) Is this Table specific for some language or it

[twsocket] HttpCli with PostASync

2005-07-21 Thread KL Chin
Hi, I had create GUI app, and a thread to handle THttpCli, below partial of code. My problem was, after call PostAync( ); Not connection .. nothing happend at all. If I call Post( ); everything working. What could be the probelm? Do I need call PeekMessage? Regards KL Chin void __fastcall

[twsocket] HTTP client component and document encoding

2005-07-21 Thread Francois PIETTE
Maurizio Lotauro is working on the HTTP client component to extend the work already done by Xavier Le Bris (gzip support). The idea is to have a general mechanism in the component to register encoding system so that adding new encoding scheme doesn't require component change. Preliminary code

Re: [twsocket] HTTP client component and document encoding

2005-07-21 Thread Maurizio Lotauro
Scrive Francois PIETTE [EMAIL PROTECTED]: class function THttpContentCoding.GetCoding: String; const BASE_CLASS_NAME = 'THttpContentCoding'; begin if Pos(BASE_CLASS_NAME, ClassName) = 1 then Result := Copy(ClassName, Length(BASE_CLASS_NAME), MAXINT) else Result := 'Unknown';