|
-
Jan 13th, 2006, 02:16 AM
#1
Thread Starter
New Member
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.
-
Jan 13th, 2006, 03:20 AM
#2
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:
Dim moApp As Excel.Application = DirectCast(CreateObject("Excel.Application"), Excel.Application)
'...
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 Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API 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 
-
Jan 13th, 2006, 03:35 AM
#3
Thread Starter
New Member
Re: export XML data from a datagrid to excel sheet
 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:
Dim moApp As Excel.Application = DirectCast(CreateObject("Excel.Application"), Excel.Application)
'...
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?
-
Jan 13th, 2006, 03:36 AM
#4
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 Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API 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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|