Forum: Pascal and Delphi Jul 24th, 2006 |
| Replies: 4 Views: 11,173 Hi,
Delphi's TXMLDocument class isn't coded by Borland but is a wrapper to MSXML COM object. You might try "XMLReader := TXMLDocument.Create(self);" or if the code isn't in a method of the form... |
Forum: Pascal and Delphi Mar 17th, 2006 |
| Replies: 2 Views: 10,557 Hi,
If you count the white spaces and CRs and LFs as character too, you can simply use Edit1.Text := IntToStr(Len(Memo1.Text)); to show the number of chars on Edit1 and if you put the above code... |