[Gambas-user] Problem with XMLWriter
danielcampos at ...282...
danielcampos at ...282...
Sat Nov 13 16:39:43 CET 2004
It seems you try to work with a NULL object :-)
If you do:
DIM proXML As XmlWriter
proXML.Open(...)
You got a "NULL object" error.
This is the correct way to do it:
DIM proXML As NEW XmlWriter
proXML.Open(...)
Or if you want to do it in two steps:
DIM proXML As XmlWriter
proXML=NEW XmlWriter
proXML.Open (...)
Regards,
D. Campos
-------------------------------------------------------------
NetCourrier, votre bureau virtuel sur Internet : Mail, Agenda, Clubs, Toolbar...
Web/Wap : www.netcourrier.com
Téléphone/Fax : 08 92 69 00 21 (0,34 TTC/min)
Minitel: 3615 NETCOURRIER (0,16 TTC/min)
More information about the User
mailing list