Re: [fpc-pascal] How to build Nice and Convenient Console Menu ?

2009-09-28 Thread Malcolm Poole
Graeme Geldenhuys wrote: Side note: Talking about "old style" console applications. Last week I was on leave and dug around in my garage. I found a crate of my old original software. Boxed sets of Turbo Pascal 6, Turbo C++ 3, Windows 3.1, OS/2 2.1 (CD-Rom version), OS/2 Warp v3 (diskette version

[fpc-pascal] Is this an error ?

2009-09-28 Thread JoshyFun
Hello FPC-Pascal, Can anybody explain me if this code is expected to fail with a SIGFPE in 64 bits windows 2.2.4 fpc: procedure test; var i6: int64; qw: QWord; r: int64; begin i6:=40; qw:=40; r:=(integer(-1)*i6) div qw; end; Replacing "qw" with an int64 runs fine. -- Best regards,

Re: [fpc-pascal] How to build Nice and Convenient Console Menu ?

2009-09-28 Thread Michael Van Canneyt
On Mon, 28 Sep 2009, Tom__G wrote: Michael Van Canneyt wrote: But they will not work on a secure shell session from one server to another :-) Michael. I actually need to make it work via SSH... :-( In that case either of the CRT, video unit or Free Vision will work. The remark abou

Re: [fpc-pascal] How to build Nice and Convenient Console Menu ?

2009-09-28 Thread Tom__G
Michael Van Canneyt wrote: > > But they will not work on a secure shell session from one server to > another > :-) > > Michael. > I actually need to make it work via SSH... :-( -- View this message in context: http://www.nabble.com/How-to-build-Nice-and-Convenient-Console-Menu---tp25643956p

Re: [fpc-pascal] How to build Nice and Convenient Console Menu ?

2009-09-28 Thread Graeme Geldenhuys
Michael Van Canneyt het geskryf: > > But they will not work on a secure shell session from one server to another > :-) I don't know, and actually don't care. :-) What I want to use it for is purely for installation/config style applications. The user will be in-front of that machine - in our scen

Re: [fpc-pascal] How to build Nice and Convenient Console Menu ?

2009-09-28 Thread Michael Van Canneyt
On Mon, 28 Sep 2009, Graeme Geldenhuys wrote: Tom__G het geskryf: Does anyone know how to build console menu, eg with highlight keys and arrows navigations, like images below ? I agree with what Jonas said. I would also suggest the Free Vision classes (include with FPC) - same as what the

Re: [fpc-pascal] How to build Nice and Convenient Console Menu ?

2009-09-28 Thread Graeme Geldenhuys
Tom__G het geskryf: > > Does anyone know how to build console menu, eg with highlight keys and > arrows navigations, like images below ? I agree with what Jonas said. I would also suggest the Free Vision classes (include with FPC) - same as what the textmode Free Pascal IDE is written in. I also

Re: [fpc-pascal] How to build Nice and Convenient Console Menu ?

2009-09-28 Thread Mehmet Erol Sanliturk
Tom__G wrote: Hi Does anyone know how to build console menu, eg with highlight keys and arrows navigations, like images below ? Thanks Tom http://www.nabble.com/file/p25643956/menu1.jpg http://www.nabble.com/file/p25643956/menu2.jpg In the following page , http://files.chatnfiles.com/

Re: [fpc-pascal] About extPascal

2009-09-28 Thread yu ping
Yes,It's the problem,I copied it to Appache folder,not the htdoc folder, I move the ext to htdoc folder,it's ok now,thanks. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] How to build Nice and Convenient Console Menu ?

2009-09-28 Thread Marco van de Voort
In our previous episode, Jonas Maebe said: > > Does anyone know how to build console menu, eg with highlight keys and > > arrows navigations, like images below ? > > You can either use the crt unit, or the video and keyboard units. The lister demo tries to do the latter ( to select files, not men

Re: [fpc-pascal] How to build Nice and Convenient Console Menu ?

2009-09-28 Thread Jonas Maebe
On 28 Sep 2009, at 13:10, Tom__G wrote: Does anyone know how to build console menu, eg with highlight keys and arrows navigations, like images below ? You can either use the crt unit, or the video and keyboard units. Jonas ___ fpc-pascal maillist

Re: [fpc-pascal] About extPascal

2009-09-28 Thread fpclist
Did you copy the extJS files in the www root of your server? The directory must be named "ext" (without qoutes) Regards //--- On Monday 28 September 2009 09:57:34 yu ping wrote: > thanks, > I successfully compile the program,and install the fastcgi on Appache, > but wh

[fpc-pascal] How to build Nice and Convenient Console Menu ?

2009-09-28 Thread Tom__G
Hi Does anyone know how to build console menu, eg with highlight keys and arrows navigations, like images below ? Thanks Tom http://www.nabble.com/file/p25643956/menu1.jpg http://www.nabble.com/file/p25643956/menu2.jpg -- View this message in context: http://www.nabble.com/How-to-build-Ni

Re: [fpc-pascal] WPO in fpc bootstrap process

2009-09-28 Thread Henry Vermaak
2009/9/28 leledumbo : > > I notice nowadays fpc is bootstrapped with WPO enabled. Since WPO strategy > used by fpc is two phase build, the build time takes significantly longer. I > don't see much enhancement other than "a little" smaller binary size (it may > benefit from static calls also, but I

[fpc-pascal] Extend linker error message for multiple defined symbols

2009-09-28 Thread leledumbo
Is there any option (e.g. -v variant or something else) to display additional information about multiple defined symbols error when linking? I mean something like where the symbols are defined, so we don't have to search it by hand. -- View this message in context: http://www.nabble.com/Extend-l

[fpc-pascal] WPO in fpc bootstrap process

2009-09-28 Thread leledumbo
I notice nowadays fpc is bootstrapped with WPO enabled. Since WPO strategy used by fpc is two phase build, the build time takes significantly longer. I don't see much enhancement other than "a little" smaller binary size (it may benefit from static calls also, but I don't really feel it). So, can

Re: [fpc-pascal] PasJS

2009-09-28 Thread Jorge Aldo G. de F. Junior
2009/9/26 Michael Van Canneyt > > > On Fri, 25 Sep 2009, Jorge Aldo G. de F. Junior wrote: > > Hi ! >> >> Im working on the PasJS translator but im having some problems : >> >> How to map ObjectPascal object orientation philosophy into JavaScript >> object orientation philoshopy ? >> > > Do you

Re: [fpc-pascal] About extPascal

2009-09-28 Thread yu ping
thanks, I successfully compile the program,and install the fastcgi on Appache, but when I run the example and view result in browser,I get a blank page. I think maybe my extJS installation has problem,I'm studying extJS installation. ___ fpc-pascal maill

Re: [fpc-pascal] About extPascal

2009-09-28 Thread Michael Van Canneyt
On Sun, 27 Sep 2009, yu ping wrote: I down loaded the extPascal package when i compile the ExtPascalSamples3.dpr see the following message: Fatal: Can't find unit Ext used by ExtPascal I use the ExtToPascal.exe to compile a example folder in extJS package,failed. You must use the ext-3.0.