[fpc-pascal] Status of SipShowIM (software keyboard)?

2009-08-21 Thread epergola
Hi In the wicki Wince Ptogramming tips (http://wiki.freepascal.org/WinCE_Programming_Tips#Show.2FHide_SIP_Panel) I find: Show/Hide SIP Panel SIP: Software Input Panel button, it is a keyboard come with WinCE for touch screen devices. const //some of consts already found in Windows SIPF_OFF

[fpc-pascal] Status of fpc on Nokia n810

2009-08-21 Thread Luiz Americo Pereira Camara
Hi, Recently, the price of Nokia n810 dropped significantly and i got some interest in it, but before i buy i'd like to know if, currently, is possible to compile programs with fpc to this platform. Is someone using fpc to develop in such devices? Luiz ___

[fpc-pascal] Bugfix in the TCustomApplication class

2009-08-21 Thread Joao Morais
Hello. The following patch fixes a bug in the TCustomApplication class. Against fixes_2_2, sorry. Joao Morais @@ -411,7 +411,7 @@ end else // Short Option. begin - HaveArg:=(I0) and (ParamStr(I+1)[i]<>FOptionChar); + HaveArg:

Re: [fpc-pascal] FPCONNECT NOT WORKING?

2009-08-21 Thread Martin
epergola wrote: Sorry, you are right. I am using non blocking sockets (lNet library), no visual package, on the wince-arm side, attempting to communicate with a non blocking (Delphi) socket on my PC. Everything works fine (did a lot of data send and receive) except that fpconnect with correct ad

Re: [fpc-pascal] FPCONNECT NOT WORKING?

2009-08-21 Thread Rainer Stratmann
if you use non-blocking sockets, you have to repeat the fpconnect call as i know. until the connection is ok. i did it also for my application this way. there exist also other ways to see if the connection is ok after the connect call... but i don't know if they are compatible to arm system Am F

Re: [fpc-pascal] [Fwd: [Lazarus] IOI: Lazarus and Free Pascal]

2009-08-21 Thread Žilvinas Ledas
Yes, i'ts so frustrating when you can't write solutions in ACM using your best known programming language... leledumbo wrote: Brilliant! Incredible! Amazing! I don't know what else to say, I hope ACM will do the same ... ___ fpc-pascal maillist -

Re: [fpc-pascal] FPCONNECT NOT WORKING?

2009-08-21 Thread epergola
Sorry, you are right. I am using non blocking sockets (lNet library), no visual package, on the wince-arm side, attempting to communicate with a non blocking (Delphi) socket on my PC. Everything works fine (did a lot of data send and receive) except that fpconnect with correct address (PC compute

Re: [fpc-pascal] What's the difference between fpc224 and fpc231?

2009-08-21 Thread Graeme Geldenhuys
2009/8/21 yu ping : > What's the difference > between fpc224 and fpc231? A simpler answer is that 2.2.4 is the stable branch. And fpc 2.3.1 is the unstable development branch. Regards, - Graeme - ___ fpGUI - a cross-platform Free Pascal GUI toolkit

Re: [fpc-pascal] Switch Endian

2009-08-21 Thread Jonas Maebe
On 21 Aug 2009, at 09:30, luca_mangane...@comune.trento.it wrote: there's a pascal function to switch endian (for a 32 bit integer)? Note that it should work on 64 bit systems... Use SwapEndian(longint(value)). The extra longint type cast is to ensure that you call the 32 bit version, reg

Re: [fpc-pascal] Switch Endian

2009-08-21 Thread Mattias Gärtner
Zitat von luca_mangane...@comune.trento.it: Hi, there's a pascal function to switch endian (for a 32 bit integer)? Note that it should work on 64 bit systems... There are many in the system unit: SwapEndian leton beton Mattias ___ fpc-pascal mai

Re: [fpc-pascal] What's the difference between fpc224 and fpc231?

2009-08-21 Thread Jonas Maebe
On 21 Aug 2009, at 09:23, leledumbo wrote: 宋平玉 wrote: What's the difference between fpc224 and fpc231? http://wiki.lazarus.freepascal.org/User_Changes_Trunk These are not so much the "what's new" things, but the behavioural changes that may require adjusting existing code. A list of new

[fpc-pascal] Switch Endian

2009-08-21 Thread luca_manganelli
Hi, there's a pascal function to switch endian (for a 32 bit integer)? Note that it should work on 64 bit systems... ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] What's the difference between fpc224 and fpc231?

2009-08-21 Thread leledumbo
宋平玉 wrote: > What's the > difference between fpc224 and fpc231? > http://wiki.lazarus.freepascal.org/User_Changes_Trunk http://wiki.lazarus.freepascal.org/User_Changes_Trunk -- View this message in context: http://www.nabble.com/What%27s-the-difference-between-fpc224-and-fpc231--tp25074068p25

Re: [fpc-pascal] FPCONNECT NOT WORKING?

2009-08-21 Thread Rainer Stratmann
more information linux? windows? blocking or nonblocking sockets? Am Freitag, 21. August 2009 04:31 schrieb epergola: > I am using lnet (non visual) with Lazarus, > and in the connect process, lnet calls > fpConnect(FHandle, psockaddr(@FAddress), SizeOf(FAddress)); > fpconnect is a FreePascal funct