Re: [fpc-pascal]What does this mean?

2004-01-20 Thread Matt Emson
Try the following: it's more likely to give you some useful info. Also, you don't call 'Destroy' directly, 'Free' calls it for you. program DomTest3; {$MODE OBJFPC} uses DOM, xmlread, Classes; var MyXMLStructure : TXMLDocument; MyFile : TFileStream; begin

Re: [fpc-pascal]What does this mean?

2004-01-20 Thread Michael Van Canneyt
On Tue, 20 Jan 2004, Holger Peters wrote: > Hi, > > thank you, a really stupid mistake from me, but it is still not working > when I compile it with fpc main3.pp -gd . That is unfortunately out of my territory :-/ Did you try simply '-g' ? Michael.

Re: [fpc-pascal]What does this mean?

2004-01-20 Thread Holger Peters
Hi, thank you, a really stupid mistake from me, but it is still not working when I compile it with fpc main3.pp -gd . Holger Michael Van Canneyt schrieb: On Tue, 20 Jan 2004, Holger Peters wrote: Hi, I tried to compile this program: {$MODE OBJFPC} program DomTest3; uses DOM,

Re: [fpc-pascal]What does this mean?

2004-01-20 Thread Michael Van Canneyt
On Tue, 20 Jan 2004, Holger Peters wrote: > Hi, > > I tried to compile this program: > > {$MODE OBJFPC} > program > DomTest3; > uses > DOM, > xmlread, > Classes; > var > MyXMLStructure : TXMLDocument; > MyFile : TFileStream; > > >

[fpc-pascal]What does this mean?

2004-01-20 Thread Holger Peters
Hi, I tried to compile this program: {$MODE OBJFPC} program DomTest3; uses DOM, xmlread, Classes; var MyXMLStructure : TXMLDocument; MyFile : TFileStream;

[fpc-pascal]What does this mean?

2004-01-20 Thread Holger Peters
Hi, I tried to compile this program: {$MODE OBJFPC} program DomTest3; uses DOM, xmlread, Classes; var MyXMLStructure : TXMLDocument; MyFile : TFileStream; begin MyFile.Create('test.xml',fmopenread); MyXMLStructure := TXMLDocument.Creat