[fpc-pascal] (no subject)

2016-07-13 Thread Vasudev Ram
Hi list, Is there a way to interact with this list via the Web? By interact, I mean, both read and post messages. I have seen the main page for the list, where one can subscribe, etc. and do know that there are archives. But archives are only for reading, and not in a convenient format like a NN

[fpc-pascal] [No subject]

2015-03-31 Thread Mark Morgan Lloyd
___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] (no subject)

2014-06-03 Thread Dimitrios Chr. Ioannidis
Hi, Στις 3/6/2014 1:20 μμ, ο/η Reinier Olislagers έγραψε: On 03/06/2014 12:17, Dimitrios Chr. Ioannidis wrote: FYI, in a wst soap client talking to a .net web service i find out, that for SOAP calls, if the CONTENT-TYPE http header ( i'm using fpc-http-protocol ) doesn't have the 'text/xml'

[fpc-pascal] (no subject)

2014-06-03 Thread Reinier Olislagers
On 03/06/2014 12:17, Dimitrios Chr. Ioannidis wrote: > FYI, in a wst soap client talking to a .net web service i find out, > that for SOAP calls, if the CONTENT-TYPE http header ( i'm using > fpc-http-protocol ) doesn't have the 'text/xml' plus the 'charset=UTF-8' > like this 'text/xml; charset=U

Re: [fpc-pascal] (no subject)

2014-03-08 Thread Barracuda
OK, thanks. I've really figured that out - function should return PChar, not string. I'm writing an replacement for closed-source component (also written in Pascal), and using disassembler because of that. This component intercommunicate with two others, loadable library (on one side) written in

Re: [fpc-pascal] (no subject)

2014-03-08 Thread Sven Barth
On 07.03.2014 20:26, Barracuda wrote: Code: - function SentenceSample(N: integer): string; stdcall; begin //writeln('N = ', N); //SentenceSample := RuGetSentence(N); inc(N); end; - Of cour

Re: [fpc-pascal] (no subject)

2014-03-08 Thread Jonas Maebe
On 07 Mar 2014, at 20:26, Barracuda wrote: > - > function SentenceSample(N: integer): string; stdcall; > begin > //writeln('N = ', N); > //SentenceSample := RuGetSentence(N); > inc(N); > end; >

[fpc-pascal] (no subject)

2014-03-08 Thread Barracuda
Hello, guys! Firstly, thank you for such a great project! It's very nice to use it in a study process in a school/university. And now a question :) I have some trouble working on one of my projects, it's code is here: https://github.com/Barracuda72/PT The problem is with function "SentenceSample"

[fpc-pascal] [No subject]

2012-03-15 Thread Mark Morgan Lloyd
___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] [No subject]

2012-03-15 Thread Mark Morgan Lloyd
___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] (no subject)

2012-02-24 Thread Everton Vieira
Exactly that i was meant, thank you people. 2012/2/23 Michael Van Canneyt > > > On Thu, 23 Feb 2012, Everton Vieira wrote: > > Is there any plans to implement public procedures/function of a class >> that can be used without been necessary to create the class? >> > > > This exists: class functi

Re: [fpc-pascal] (no subject)

2012-02-24 Thread Michael Van Canneyt
On Thu, 23 Feb 2012, Everton Vieira wrote: Is there any plans to implement public procedures/function of a class that can be used without been necessary to create the class? This exists: class functions. Given the declaration TMYClass = Class Class function doGLobal (Arg : ArgType) :

Re: [fpc-pascal] (no subject)

2012-02-24 Thread Felipe Monteiro de Carvalho
I think that you just described class methods: http://www.freepascal.org/docs-html/ref/refsu27.html -- Felipe Monteiro de Carvalho ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] (no subject)

2012-02-24 Thread Mattias Gaertner
Everton Vieira hat am 23. Februar 2012 um 17:17 geschrieben: > public procedures/function of a class that can be used without been > necessary to create the class?=?71c4af2e-7ede-4749-bc03-e827c6f6ed0d-- > > > Maybe you mean "class procedures"? > That exists since many years. > > Mattias > >

Re: [fpc-pascal] (no subject)

2012-02-24 Thread Howard Page-Clark
On 23/2/12 4:17, Everton Vieira wrote: Is there any plans to implement public procedures/function of a class that can be used without been necessary to create the class? I presume you know about class methods such as TObject's class function ClassName : shortstring; that you can use like this

Re: [fpc-pascal] (no subject)

2012-02-24 Thread Sven Barth
Am 23.02.2012 17:17, schrieb Everton Vieira: Is there any plans to implement public procedures/function of a class that can be used without been necessary to create the class? Do you know class procedures/functions? === example begin === type TTestClass = class class procedure Foo;

[fpc-pascal] (no subject)

2012-02-23 Thread Everton Vieira
Is there any plans to implement public procedures/function of a class that can be used without been necessary to create the class? -- Everton Vieira. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinf

[fpc-pascal] (no subject)

2012-01-24 Thread Brad Woosley
http://prolumia.eu/mor/184042.html ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Duplicate identifier in derived generic (was: Re: [fpc-pascal] (no subject))

2011-11-24 Thread Sven Barth
Am 24.11.2011 16:56, schrieb Juha Manninen: It says: unit1.pas(40,24) Error: Duplicate identifier "FreeObjects" Why? If I change "FreeObjects" to "aFreeObjects" then it works. Again why? You simply picked a bad example, because "TFPGObjectList" contains a property called "FreeObjects", thus

[fpc-pascal] (no subject)

2011-11-24 Thread Juha Manninen
I try to learn to use generics properly. First, this is a class definition without generics: TMyDerived = class(TObjectList) private MyInt: integer; public constructor Create(FreeObjects: Boolean=True); end; It works. Now I try to derive a class with generics: TMyGen = speciali

[fpc-pascal] (no subject)

2011-11-14 Thread sider2jp
___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] (no subject)

2011-05-17 Thread Erliansyah Nasution
http://sample-resumes-plus.com/wp-content/plugins/akismet/site.html ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] (no subject)

2010-04-12 Thread Bihar Anwar
8:09:42 PM Subject: Re: [fpc-pascal] (no subject) On 12 April 2010 14:27, Tomas Hajny wrote: > > These are obviously all valid. There's also another possibility though > (having advantages and disadvantages compared to this) - you could have an > include file specifying this define and

Re: [fpc-pascal] (no subject)

2010-04-12 Thread Graeme Geldenhuys
On 12 April 2010 14:27, Tomas Hajny wrote: > > These are obviously all valid. There's also another possibility though > (having advantages and disadvantages compared to this) - you could have an > include file specifying this define and reference this include file from > all (relevant) source file

Re: [fpc-pascal] (no subject)

2010-04-12 Thread Tomas Hajny
On Mon, April 12, 2010 14:03, Graeme Geldenhuys wrote: > On 12 April 2010 13:25, Bart wrote: >> >> Commandline: >> fpc -dNOFORMSPLEASE myprogram.pp >> >> Not sure if this can be done from within FP IDE or Lazarus though. > > Yes they do... > > FP IDE: > Option > Compiler > Conditional Defines

Re: [fpc-pascal] (no subject)

2010-04-12 Thread Graeme Geldenhuys
On 12 April 2010 13:25, Bart wrote: > > Commandline: > fpc -dNOFORMSPLEASE myprogram.pp > > Not sure if this can be done from within FP IDE or Lazarus though. Yes they do... FP IDE: Option > Compiler > Conditional Defines Lazarus IDE: Project > Project Options > Compiler Options > Other

Re: [fpc-pascal] (no subject)

2010-04-12 Thread Bart
On Sun, Apr 11, 2010 at 4:22 PM, Bihar Anwar wrote: > Yes it works, but the {$DEFINE NOFORMSPLEASE} clause must be put in the unit > itself. If I put the clause in the first line of my console project, the unit > won't catch it. > > How can I define a compiler directive that can be understood by

Re: [fpc-pascal] (no subject)

2010-04-11 Thread Bihar Anwar
ginal Message From: Bart To: FPC-Pascal users discussions Sent: Sun, April 11, 2010 4:51:54 PM Subject: Re: [fpc-pascal] (no subject) Simply define the compiler directive NOFORMSPLEASE when compiling your console app. The ProcessMessages is there (I guess) for allowing the Application obje

Re: [fpc-pascal] (no subject)

2010-04-11 Thread Bihar Anwar
Thanks Bart, I will try it. - Original Message From: Bart To: FPC-Pascal users discussions Sent: Sun, April 11, 2010 4:51:54 PM Subject: Re: [fpc-pascal] (no subject) Simply define the compiler directive NOFORMSPLEASE when compiling your console app. The ProcessMessages is there (I

Re: [fpc-pascal] (no subject)

2010-04-11 Thread Bart
Simply define the compiler directive NOFORMSPLEASE when compiling your console app. The ProcessMessages is there (I guess) for allowing the Application object to update screens (WinControls). Since a console application does not link in LCL this is not necessary. Bart

[fpc-pascal] (no subject)

2010-04-11 Thread Bihar Anwar
I have the following part of a unit code which can be compiled successfully under a normal GUI application. {$IFNDEF NOFORMSPLEASE} if soProcessMessages in oSearchOptions then Application.ProcessMessages; {$ENDIF} My question is, how can I use this unit from my console application? I k

Re: [fpc-pascal] (no subject)

2009-10-17 Thread Micha Nelissen
ak za wrote: i want to don't send mail to me from you but idn't know how do it. please guide me Do you mean unsubscribe, see link at bottom of this email: http://lists.freepascal.org/mailman/listinfo/fpc-pascal Then look at bottom of page, unsubscribe. Micha _

[fpc-pascal] (no subject)

2009-10-17 Thread ak za
i want to don't send mail to me from you but idn't know how do it. please guide me ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] (no subject)

2009-05-06 Thread Jonas Maebe
On 06 May 2009, at 22:11, Seth Grover wrote: Now I know I can just use trunc(DaySpan(val1, val2)) to achieve the same result, but I was just curious as to why this change was made which so drastically changes the functionality of these calls. Because with trunc you also get rounding errors in

[fpc-pascal] (no subject)

2009-05-06 Thread Seth Grover
http://svn.freepascal.org/cgi-bin/viewvc.cgi/trunk/rtl/objpas/dateutil.inc?view=diff&r1=12957&r2=12958 shows that a change was recently made which replaces "Trunc" with "Round" in the *Between routines in dateutil.inc (DaysBetween, HoursBetween, etc.). So this program:

Re: [fpc-pascal] (no subject)

2008-09-02 Thread Jonas Maebe
On 02 Sep 2008, at 09:26, Tzvetan Velinov wrote: I had the older version of FP and installed the new one -2.2.2 on a PC machine from the file fpc-2.2.2.i386-win32.exe (and unfortunately unistalled the old one). I think I followed all the steps that were descibed and used names of the direc

[fpc-pascal] (no subject)

2008-09-02 Thread Tzvetan Velinov
Hello, I had the older version of FP and installed the new one -2.2.2 on a PC machine from the file fpc-2.2.2.i386-win32.exe (and unfortunately unistalled the old one). I think I followed all the steps that were descibed and used names of the directories according the advices - not too long and

[fpc-pascal] (no subject)

2008-07-08 Thread Vladimir Karpenko
>> How can i access harware ports if there is no ports unit on Linux >> x64 port? >There is a tutorial for Hardware Access here: >http://wiki.lazarus.freepascal.org/Hardware_Access Well of course i read that, but there is no ports unit in x64 Linux. uses Classes, SysUtils, LResources, Forms,

[fpc-pascal] (no subject)

2007-12-02 Thread Edward Kearns
>>Then when I do compile, and see nothing happen, the "about" box says: Lightweight IDE: 0.2.9 FPC (Intel): Failed! FPC (PPC): 2.2.0 GCC: powerpc-apple-Darwin8-gcc-4.0.1(GCC) TransSkel: 4.0a1 Looks perfect! (As long as you don't need to compile for Intel.) /Ingemar>> That's fine, but I

Re: [fpc-pascal] (no subject)

2005-04-05 Thread Michał Woźniak
> 9x/ME is another story, the console implementation of 9x/ME is poor. I > think the best option for 9x/ME users is 1.0.10/go32v2. I'd say - go for Lazarus! www.lazarus.freepascal.org It's a great IDE, and it actually gets the job done. I am using it for a while now. Cheers Mike __

Re: [fpc-pascal] (no subject)

2005-04-05 Thread Florian Klaempfl
Gergely MOLNAR wrote: > hi! > > Anybody knows why fpc win32 IDE consumes much cpu time on windows me (and > also win xp). At least for me it doesn't on XP and I never heard that it does on XP. 9x/ME is another story, the console implementation of 9x/ME is poor. I think the best option for 9x/ME

[fpc-pascal] (no subject)

2005-04-05 Thread Gergely MOLNAR
hi! Anybody knows why fpc win32 IDE consumes much cpu time on windows me (and also win xp). Are there some special settings, or any configs to avoid this? Thank you! -G ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freep

[fpc-pascal] (no subject)

2005-03-21 Thread Artur Kornilowicz
Hi, I think there are some problems with links in on-line fpc documentation. For example look at http://www.freepascal.org/docs-html/user/userse38.html#x55-1330008.2 and link to "Programmers guide" at the bottom of the page or http://www.freepascal.org/docs-html/user/userse39.html#x56-1340008.

[fpc-pascal] (no subject)

2004-12-28 Thread Paul Davidson
OS X 10.3.6 This code makes a window area in center of screen, and prints in that area. The new window is filled with characters when DELLINE is used. Any hints? program TestCRT; uses CRT; var f : text; procedure win( s : string ); begin Window( 1, 3, ScreenWidth, ScreenHeight - 2 );

RE: [fpc-pascal](no subject)

2004-06-28 Thread Tomas Hajny
Lee, John said: > You may have looked at this already, but can't you run win 9x of some > sort eg 98. This can be quite cheap 10e or thereabouts...My guess is > this'll run on a 486/pentium with 1? G disk, 16? M memory -then use dos > (or even win32) fpc... I'd add to this - what's your (the origi

RE: [fpc-pascal](no subject)

2004-06-28 Thread Lee, John
f a sort and be easier to support... Regards John > -Original Message- > From: Jérémie LEFRANCOIS [mailto:[EMAIL PROTECTED] > Sent: 28 June 2004 10:46 > To: [EMAIL PROTECTED] > Subject: [fpc-pascal](no subject) > > > I have some big TP 5.5 program to port to som

Re: [fpc-pascal](no subject)

2004-06-28 Thread Michael Van Canneyt
On Mon, 28 Jun 2004, [ISO-8859-1] Jérémie LEFRANCOIS wrote: > I have some big TP 5.5 program to port to some more recent compiler, and FP > seems a fair choice, since a little trial convinced me of the great quality of > the product. > > Yet my target hardware is so poor that we have to stick to

[fpc-pascal](no subject)

2004-06-28 Thread Jérémie LEFRANCOIS
I have some big TP 5.5 program to port to some more recent compiler, and FP seems a fair choice, since a little trial convinced me of the great quality of the product. Yet my target hardware is so poor that we have to stick to MS-DOS 6.20. The fact is that I need to also port some multi-tasking

[fpc-pascal](no subject)

2003-12-19 Thread Payan Ballesteros, Ivan
unsubscribe payball [EMAIL PROTECTED] -- *** Este mensaje se dirige exclusivamente a su destinatario y puede contener información confidencial sometida a secreto profesional o cuya divulgación esté prohibida en virtud de la leg

Re: [fpc-pascal](no subject)

2003-08-15 Thread Michael Van Canneyt
On Fri, 15 Aug 2003, [iso-8859-2] Balázs Csaba wrote: > What is the difference between > --- /usr/lib/fpc/1.0.6/units/linux/ibase/ibase60.ppu > and > --- /usr/lib/fpc/1.0.6/units/linux/fcl/interbase.ppu > ? > What can i use better? ibase60 is the low-level C api. 'interbase' contains a TDatas

[fpc-pascal](no subject)

2003-08-15 Thread Balázs Csaba
Title: Üzenet What is the difference between ---  /usr/lib/fpc/1.0.6/units/linux/ibase/ibase60.ppuand ---  /usr/lib/fpc/1.0.6/units/linux/fcl/interbase.ppu ? What can i use better? How can I download documentation for each?   #Tsch : Balázs Csaba  

RE: [fpc-pascal](no subject)

2003-03-15 Thread Patrick Zerafa
>From: "Lee, John" <[EMAIL PROTECTED]> >To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>, [EMAIL PROTECTED] >CC: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> >Subject: RE: [fpc-pascal](no subject) >D

RE: [fpc-pascal](no subject)

2003-03-14 Thread Lee, John
the error messages? What did you use before?   Regards John   -Original Message-From: Patrick Zerafa [mailto:]Sent: Friday, March 14, 2003 16:38To: [EMAIL PROTECTED]Subject: [fpc-pascal](no subject) Dear sir, Hi, I installed Pascal but the Interface is not the right one and it is not a

[fpc-pascal](no subject)

2003-03-14 Thread Patrick Zerafa
Dear sir, Hi, I installed Pascal but the Interface is not the right one and it is not as fast as it was once downloaded. Please can you tell me how to get the right Pascal Interface and working properly? your sincerely Patrick Zerafa. MSN 8 helps ELIMINATE E-MAIL VIRUSES. Get 2 months FREE*. ___

Re: [fpc-pascal](no subject)

2003-03-10 Thread Jonas Maebe
On maandag, maa 10, 2003, at 13:35 Europe/Brussels, Patrick Zerafa wrote: I cannot install the Pascal, I did everything as needed: - Unzipped the file (install.exe) - Opened the file and was asked for Base Path in which I left it as default - Then after the installation was completed the install

[fpc-pascal](no subject)

2003-03-10 Thread Patrick Zerafa
Dear Sir, I cannot install the Pascal, I did everything as needed: - Unzipped the file (install.exe) - Opened the file and was asked for Base Path in which I left it as default - Then after the installation was completed the installation program closed - Then I went back to the WinZip, there was a

Re: [fpc-pascal](no subject)

2003-03-08 Thread Jilani Khaldi
> I have tried to install Pascal by the default Base Path (c:/pp), but the > installation was not succesful: because it told me to write another Base > Path but still cannot install Pascal, The path is c:\pp and not c:/pp jk ___ fpc-pascal maillist

[fpc-pascal](no subject)

2003-03-08 Thread Patrick Zerafa
Dear Sir, I have tried to install Pascal by the default Base Path (c:/pp), but the installation was not succesful: because it told me to write another Base Path but still cannot install Pascal,   I look forwarding to your replying ad helping me in the future.   your sincerely Patrick ZerafaAdd phot