Thema: Delphi XML Problem

Einzelnen Beitrag anzeigen

Benutzerbild von mirage228
mirage228

Registriert seit: 23. Mär 2003
Ort: Münster
3.750 Beiträge
 
Delphi 2010 Professional
 
#4

Re: XML Problem

  Alt 4. Jan 2010, 23:49
I see two lines which definitely will not work:

1.)
  {$I unit1.lrs} Delphi form resources are not included in that way. You have to write:
  {$R *.dfm} Of course this requires a Delphi DFM file which contains the GUI elements of the Form corresponding to the Unit (Unit.dfm) to be present. As far as I know Delphi is not able to load those Lazarus resource files.

2.)
.ChildNodes.Item[0].AppendChild(parentNode); // insert a childnode in respective parent node This is a syntax error. There must be a suitable object instance before the dot "." at the beginning of the line.
David F.

May the source be with you, stranger.
PHP Inspection Unit (Delphi-Unit zum Analysieren von PHP Code)
  Mit Zitat antworten Zitat