Create XML in VB6

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ssrivastava9
    New Member
    • Jan 2008
    • 4

    Create XML in VB6

    Can anyone tell me how to create XML files in VB 6 ? A code snippet will be appreciated.

    Thanks!!
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    if you want to save the data in a database into a XML file then try this

    [code=vb]
    rs.Save "d:\data.xm l", adPersistXML
    [/code]

    rs is the recordset object of ADODB .

    Comment

    Working...