Re: [fpc-pascal] fpGUI Toolkit v0.7 (final release) for FPC 2.4

2010-08-22 Thread Mark Emerson
Thank you, Graeme, for all your hard and excellent work. Mark Emerson On Monday 02 August 2010 08:00:57 am Graeme Geldenhuys wrote: > fpGUI v0.7 is finally available > --- > > This was a long wait since the previous v0.6 release, but v0.7 is > well wit

Re: [fpc-pascal] Free Pascal 2.4.0 released

2010-01-01 Thread Mark Emerson
. Mark Emerson On Friday 01 January 2010 02:47:42 am Marco van de Voort wrote: > Happy New Year! > > As a special present, We have placed a new major release of the Free Pascal > Compiler, version 2.4.0 on our ftp-servers. > > Changes that may break backwards compatibility are doc

Re: [fpc-pascal] Who said Pascal isn't popular

2009-10-16 Thread Mark Emerson
On Friday 16 October 2009 06:40:20 am Mark Emerson wrote: > On Friday 16 October 2009 06:04:17 am Ingemar Ragnemalm wrote: > > > Lee Jenkins wrote: > > >> I don't agree with the idea that "BEGIN...END" determines the failure > > >> of Pascal,

Re: [fpc-pascal] Who said Pascal isn't popular

2009-10-16 Thread Mark Emerson
s ridiculed, second it is violently opposed, and third, it is accepted as self-evident. Arthur Schopenhauer (1788-1860) Getting small-minded people to wake up on almost any topic, from programming languages to global politics, is the stuff of revolution. And that is the BEGINing and the END. Mark Emerson ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Who said Pascal isn't popular

2009-10-11 Thread Mark Emerson
Remember, Pascal is merely a TEACHING language, unsuitable for commercial software development, which is why we have C. :) On Sunday 11 October 2009 05:00:04 pm Ralf A. Quint wrote: > At 03:25 PM 10/11/2009, Graeme Geldenhuys wrote: > >I came across this link by chance. Wow, I never knew there w

[fpc-pascal] apology

2009-09-17 Thread Mark Emerson
I apologize for accidentally posting a personal note to this list. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] getting started with threads

2009-09-17 Thread Mark Emerson
Nice to see you posted this. Love, Dad On Thursday 17 September 2009 06:07:48 pm David Emerson wrote: > I am getting started with threads (linux/cthreads) and I'm very happy so > far, but unsure of the best way to tackle my situation. > > I have a program that needs to perform about 10,000 indepe

Re: [fpc-pascal] Creating FPC enabled websites

2009-03-02 Thread Mark Emerson
What is fpweb? On Monday 02 March 2009 12:37:36 pm Marco van de Voort wrote: > In our previous episode, Travis Siegel said: > > Fpc is cross platform I know, but as far as I know, it's not optomized > > for cgi execution like irie pascal is. > > Interesting. Could you share your evaluation/compari

Re: [fpc-pascal] Notice: Possible copyright infringements in FPC code base

2008-01-15 Thread Mark Emerson
yet. Until they do, I'm afraid this issue won't go away anytime soon. Please forgive my ignorance, but what is LCL? Mark Emerson ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Wirth and 'Wirthian nature'...

2005-05-29 Thread Mark Emerson
e's not a die-hard anti-underscorist.  He's a humble professor who NEVER had any idea Pascal would become so hugely important in the world.  Had I been in the right place at the right time, I'm pretty sure I could have convinced him to include the underscore in the Modula 2 spec. Mark Emer

Re: [fpc-pascal] Runtime error 123

2005-05-04 Thread Mark Emerson
I compiled under Win 98 and running on Win 2000. At 11:31 AM 5/4/05, you wrote: On Wed, 04 May 2005 10:33:46 -0700 Mark Emerson <[EMAIL PROTECTED]> wrote: > What is Runtime error 123? > > It's not documented in the User Manual, but appears to be associated > with the

[fpc-pascal] Runtime error 123

2005-05-04 Thread Mark Emerson
What is Runtime error 123? It's not documented in the User Manual, but appears to be associated with the eof function. Mark ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] FPC User Population

2004-11-04 Thread Mark Emerson
Can anyone give an estimate of how many FPC users there are now, worldwide? I'm not certain how to define this, but would like to get a feeling. One metric might be the number of downloads of various versions. Another might be the size of this email list. My gratitude to the development tea

Re: [fpc-pascal]Mac OS X pre-release version of the Free Pascal Compiler available!

2004-01-04 Thread Mark Emerson
Fabulous work, FTP Team. Mark ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal]ansistring and fillchar

2003-12-09 Thread Mark Emerson
How can I use fillchar to give an ansistring a value of, say 'x'? In other words, I want to create a string that contains only a single character, that is repeated a certain number of times. Mark ___ fpc-pascal maillist - [EMAIL PROTECTED]

Re: [fpc-pascal]char 0 in ansistrings

2003-12-02 Thread Mark Emerson
different behavior... Gimme a (1) or a (2). Thanks. Mark On 2 dec 2003, at 07:59, Mark Emerson wrote: Is it *absolutely safe* to include chr(0) in an ansistring and have it get treated like any other character? Or is there some instance where it will cause different behavior than other chars? O

[fpc-pascal]char 0 in ansistrings

2003-12-02 Thread Mark Emerson
Is it *absolutely safe* to include chr(0) in an ansistring and have it get treated like any other character? Or is there some instance where it will cause different behavior than other chars? Mark ___ fpc-pascal maillist - [EMAIL PROTECTED] http://

[fpc-pascal]use of funct identifier in funct body

2003-09-02 Thread Mark Emerson
Consider two implementations of the same function: Implementation 1 (the old way): function num_listing (n : word) : ansistring; var i : word; num : string; result : ansistring; begin result := ''; for i := 0 to n do begin str (n, num); result := result + num; end; num_listing := r

[fpc-pascal]2 questions on ansistrings

2003-08-27 Thread Mark Emerson
1. If a segment is deleted from an ansistring, e.g. ... s := 'abcdefghijklmnop'; delete (s, 5, 6); yielding s = 'abcdelmnop' ...does the system "shift" the 'lmnop' to the left, or does the string get hooked together with pointers, thus saving much time with long strings? 2. Is there any documen

[fpc-pascal]Runtime Error Source References

2003-08-22 Thread Mark Emerson
With all this discussion of using GDB (and the associated hassles) to get runtime error source references, I fondly remember my Turbo Pascal days, and the AMAZED delight the first time (about 1982) I encountered a runtime error and there was a choice to press "E" and be taken into the editor to the

Re: [fpc-pascal]What do you like about FPC?

2003-07-24 Thread Mark Emerson
Seconded. Mark Emerson Alan Mead wrote: > > I don't have time right now to read all the messages that flew today > but I read enough to decide to send this note. > > IMHO, FPC is like a dream come true. I love the fact that I can > compile the same code on Windows and

Re: [fpc-pascal]Re: Macintosh Progress??

2003-06-27 Thread Mark Emerson
Thanks to all for the responses. Mark Olle Raab wrote: > > >> Mark Emerson wrote: > >>> How is the progress in the Mac version of FPC? Any projections when it > >>> might be ready? Thanks. > > There have been substantial progress in the powerpc cod

[fpc-pascal]Macintosh Progress??

2003-06-25 Thread Mark Emerson
How is the progress in the Mac version of FPC? Any projections when it might be ready? Thanks. Mark Emerson ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal]OT: An FPC program in LinuxFormat Magazine

2003-03-25 Thread Mark Emerson
> > btw - please can you explain that idiom - "my 2 cents"? thanx. > > Would it sound better as: my contribution ? For all you Europeans, it is an American idiom meaning, "my HUMBLE contribution". (that's my 2 cents worth for today) Mark ___ fpc-pascal

Re: [fpc-pascal]OT: An FPC program in LinuxFormat Magazine

2003-03-25 Thread Mark Emerson
> > btw - please can you explain that idiom - "my 2 cents"? thanx. > > Would it sound better as: my contribution ? For all you Europeans, it is an American idiom meaning, "my HUMBLE contribution". (that's my 2 cents worth for today) Mark ___ fpc-pascal

Re: [fpc-pascal]STOP! DONT START THAT PROGRAM - IT MAY CRASH!

2003-03-19 Thread Mark Emerson
What program? Mark Anton Tichawa wrote: > > Hello! > > At first glance I saw several possible errors that might make the program > crash. The until-condition contains "= 0" and should possibly read "<= 0"; > and your first storage has index 1, which should possibly read 0 instead of 1. > > ---

[fpc-pascal]Contribution to Unit Library

2003-02-15 Thread Mark Emerson
I need a programmer to build a customized I/O unit that will be contributed to the FPC Unit Library. He/she must have expertise in low-level I/O access for both Linux and Windows. The work would be on a contract basis. For details (including the unit interface), please see http://angelbase.com/pas

[fpc-pascal]Gratitude for FPC

2003-02-11 Thread Mark Emerson
Marco van de Voort wrote: > Yes, I think Carl did a good job there. Wellnot only Carl...I think you ALL (on the FPC team) are doing an EXCELLENT job. I'm exceedingly grateful to have this compiler, and, as a bonus, to also have access to communicate with its developers (that was impossible wi

Re: [fpc-pascal]isprime()

2003-02-09 Thread Mark Emerson
> whereas you analytically check one single > number for primality. Just out of curiosity, is Franco's algorithm based upon the recent discovery by mathematicians in India? Mark ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/

Re: [fpc-pascal]graph unit and the mouse

2003-02-09 Thread Mark Emerson
Florian Klaempfl wrote: > > Mark Emerson wrote: > > Does anybody know a way to read the mouse at pixel resolution while > > using the graph unit? > > > > You mean for go32v2? It depends on your mouse driver I think. > Please excuse my ignornace, but I don

[fpc-pascal]graph unit and the mouse

2003-02-08 Thread Mark Emerson
Does anybody know a way to read the mouse at pixel resolution while using the graph unit? Mark ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal]Mouse question restated

2003-02-07 Thread Mark Emerson
Thanks for the replies. I'm NOT interested in running on text-based screens. I want to run in high resolution graphics and need a pixel granularity mouse driver for that purpose. What do people suggest? BTW, Michael, I would recommend stating at the top of the mouse and msmouse unit documentati

[fpc-pascal]Mouse Unit

2003-02-06 Thread Mark Emerson
The mouse unit appears to support resolution only at "character" granularity. What about pixels? ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal]Execution speed

2003-01-24 Thread Mark Emerson
Now that the list seems to be working again...I'll try posting this again: I am wondering why our new PC is not executing our fpc-compiled program very much faster than the old one. It was really quite a disappointment: Old PC: Laptop, Intel PII, 300 MHz, 64 MB. Execution times: 8:30, 2:30 (min:s