Results 1 to 4 of 4

Thread: export XML data from a datagrid to excel sheet

  1. #1

    Thread Starter
    New Member
    Join Date
    Jan 2006
    Posts
    2

    export XML data from a datagrid to excel sheet

    hi,I'm new to vb.net
    how to export XML data from a datagrid to excel sheet?
    thanks.

  2. #2
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: export XML data from a datagrid to excel sheet

    Welcome to the forums.

    Save the XML data out to an XML file. Then you can use the .OpenXML function with ease.

    VB Code:
    1. Dim moApp As Excel.Application = DirectCast(CreateObject("Excel.Application"), Excel.Application)
    2.  
    3. '...
    4. Dim oWB As Excel.Workbook = moApp.Workbooks.OpenXML("C:\MyXML.xml")
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  3. #3

    Thread Starter
    New Member
    Join Date
    Jan 2006
    Posts
    2

    Re: export XML data from a datagrid to excel sheet

    Quote Originally Posted by RobDog888
    Welcome to the forums.

    Save the XML data out to an XML file. Then you can use the .OpenXML function with ease.

    VB Code:
    1. Dim moApp As Excel.Application = DirectCast(CreateObject("Excel.Application"), Excel.Application)
    2.  
    3. '...
    4. Dim oWB As Excel.Workbook = moApp.Workbooks.OpenXML("C:\MyXML.xml")
    Erm... i don't really get what you mean.
    I have a XML file, it was first populated to the datagrid then if user wants to view it in excel, it could be exported to the excel sheet using a EXPORT button. Is there any way of exporting the data in the datagrid to excel?

  4. #4
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: export XML data from a datagrid to excel sheet

    You would have to loop through its records and write directly to an Excel instance.

    Since you already have the XML file on disk, you could just open it in Excel like I posted when they click the Export button.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width