Re: [fpc-pascal] problem with array of string

2004-12-21 Thread Eduardo Morras
At 22:15 20/12/2004, you wrote: I have problem with two dimension array of string my program: procedure testlinie; var linie : array[0..1,0..100] of shortstring; i,ii : integer; begin fillchar(linie,sizeof(linie),0); for i := 0 to 1 do begin for ii:= 1 to 10 do begin linie[i,ii

Re: [fpc-pascal] problem with array of string

2004-12-20 Thread Dariusz Mazur
Sorry, I make but when i prepare test program with FPC all work OK, bug is in WatchList I send second post to Lazarus list. Darek Marco van de Voort wrote: I have problem with two dimension array of string my program: procedure testlinie; var linie : array[0..1,0..100] of shortstring; i,ii :

Re: [fpc-pascal] problem with array of string

2004-12-20 Thread Adam Naumowicz
On Mon, 20 Dec 2004 [EMAIL PROTECTED] wrote: > On Mon, 20 Dec 2004, Dariusz Mazur wrote: > > > I have problem with two dimension array of string > > > > my program: > > > > procedure testlinie; > > var > > linie : array[0..1,0..100] of shortstring; > > i,ii : integer; > > begin > >fil

Re: [fpc-pascal] problem with array of string

2004-12-20 Thread Michael . VanCanneyt
On Mon, 20 Dec 2004, Dariusz Mazur wrote: > I have problem with two dimension array of string > > my program: > > procedure testlinie; > var > linie : array[0..1,0..100] of shortstring; > i,ii : integer; > begin >fillchar(linie,sizeof(linie),0); >for i := 0 to 1 do begin >

Re: [fpc-pascal] problem with array of string

2004-12-20 Thread Marco van de Voort
> I have problem with two dimension array of string > > my program: > > procedure testlinie; > var > linie : array[0..1,0..100] of shortstring; > i,ii : integer; > begin >fillchar(linie,sizeof(linie),0); >for i := 0 to 1 do begin > for ii:= 1 to 10 do begin >linie[i,

[fpc-pascal] problem with array of string

2004-12-20 Thread Dariusz Mazur
I have problem with two dimension array of string my program: procedure testlinie; var linie : array[0..1,0..100] of shortstring; i,ii : integer; begin fillchar(linie,sizeof(linie),0); for i := 0 to 1 do begin for ii:= 1 to 10 do begin linie[i,ii]:= linie[i,ii]+char(64+ii);