Re: [fpc-pascal] MaskEdit

2008-03-16 Thread Marek Nožka
On Sun, 16 Mar 2008 19:28:16 +0100 Luca Olivetti <[EMAIL PROTECTED]> wrote to FPC-Pascal users discussions : > Gmane has the attachments > http://thread.gmane.org/gmane.comp.ide.lazarus.general/19641/focus=19702 > (btw, why isn't it in lazarus yet?) Thank you vary much. -- @ @ @ Marek Nožk

Re: [fpc-pascal] MaskEdit

2008-03-16 Thread Vincent Snijders
Luca Olivetti schreef: En/na Marek Nožka ha escrit: On Mon, 28 Jan 2008 15:00:56 +0100 "Roberto Padovani" <[EMAIL PROTECTED]> wrote to "FPC-Pascal users discussions" : a TMaskEdit was posted in attachment by David on 23-nov-2007 The subject wasRe: [lazarus] TMaskEdit new release Thank y

Re: [fpc-pascal] MaskEdit

2008-03-16 Thread Luca Olivetti
En/na Marek Nožka ha escrit: On Mon, 28 Jan 2008 15:00:56 +0100 "Roberto Padovani" <[EMAIL PROTECTED]> wrote to "FPC-Pascal users discussions" : a TMaskEdit was posted in attachment by David on 23-nov-2007 The subject wasRe: [lazarus] TMaskEdit new release Thank you. I'm afraid I was

Re: [fpc-pascal] MaskEdit

2008-03-16 Thread Marek Nožka
On Mon, 28 Jan 2008 15:00:56 +0100 "Roberto Padovani" <[EMAIL PROTECTED]> wrote to "FPC-Pascal users discussions" : > a TMaskEdit was posted in attachment by David on 23-nov-2007 > The subject wasRe: [lazarus] TMaskEdit new release > Thank you. I'm afraid I was not in the Lazarus conferenc

Re: [fpc-pascal] Borland Turbo Pascal -> fpc

2008-03-16 Thread Jonas Maebe
On 16 Mar 2008, at 12:49, vince coen wrote: I have 50+ units and 4 programs written in TP v7.0, also there are 30+ modules written in assembler. Some of the TP units contain inline code as well as inline aseembler. All these work in a Dos box in Windows (tested in XP) as well as Linux vi

[fpc-pascal] Borland Turbo Pascal -> fpc

2008-03-16 Thread vince coen
Hi all; I have 50+ units and 4 programs written in TP v7.0, also there are 30+ modules written in assembler. Some of the TP units contain inline code as well as inline aseembler. All these work in a Dos box in Windows (tested in XP) as well as Linux via dosemu/freedos. Some of the units have

Re: [fpc-pascal] How to initialize a "Text" variable?

2008-03-16 Thread Michael Van Canneyt
On Sun, 16 Mar 2008, Felipe Monteiro de Carvalho wrote: > On Sun, Mar 16, 2008 at 8:16 AM, Michael Van Canneyt > <[EMAIL PROTECTED]> wrote: > > Assign yyoutput to a dummy stream, which simply skips output. > > Could you explain better how can this be implemented? > > The only think I know abo

Re: [fpc-pascal] How to initialize a "Text" variable?

2008-03-16 Thread Felipe Monteiro de Carvalho
On Sun, Mar 16, 2008 at 8:16 AM, Michael Van Canneyt <[EMAIL PROTECTED]> wrote: > Assign yyoutput to a dummy stream, which simply skips output. Could you explain better how can this be implemented? The only think I know about streams is TStream. thanks, -- Felipe Monteiro de Carvalho _

Re: [fpc-pascal] How to initialize a "Text" variable?

2008-03-16 Thread Michael Van Canneyt
On Sun, 16 Mar 2008, Felipe Monteiro de Carvalho wrote: > Is it possible to set a Text file to nowhere? I mean, lexlib has a > textfile called yyoutput, where it will throw output. I don't want to > have this output at all, and lexlib doesn't allow me to choose that. > > yyoutput is declared si

Re: [fpc-pascal] How to initialize a "Text" variable?

2008-03-16 Thread Felipe Monteiro de Carvalho
Is it possible to set a Text file to nowhere? I mean, lexlib has a textfile called yyoutput, where it will throw output. I don't want to have this output at all, and lexlib doesn't allow me to choose that. yyoutput is declared simply as Text I would initially try setting it to zero, but that's St

Re: [fpc-pascal] How to initialize a "Text" variable?

2008-03-16 Thread Felipe Monteiro de Carvalho
Ok, thanks, the initial problem was that the filename calculation logic was wrong. thanks, -- Felipe Monteiro de Carvalho ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] How to initialize a "Text" variable?

2008-03-16 Thread Wanderlan Santos dos Anjos
Hello Felipe, Yes, Text is the same as TextFile. Use: Rewrite for create a new file for writing. Reset for open a file already created for reading. Append for open a file already created for writing. -- Att, Wanderlan Santos dos Anjos (061) 3345-5496; 9133-3804 ___