Click here to Skip to main content
15,890,557 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: How to pass in class to web service? Pin
Steve van Niman18-Jul-10 7:01
Steve van Niman18-Jul-10 7:01 
GeneralRe: How to pass in class to web service? Pin
Luc Pattyn18-Jul-10 7:28
sitebuilderLuc Pattyn18-Jul-10 7:28 
GeneralRe: How to pass in class to web service? Pin
Steve van Niman18-Jul-10 8:09
Steve van Niman18-Jul-10 8:09 
GeneralRe: How to pass in class to web service? Pin
Luc Pattyn18-Jul-10 8:16
sitebuilderLuc Pattyn18-Jul-10 8:16 
GeneralRe: How to pass in class to web service? Pin
Steve van Niman18-Jul-10 8:41
Steve van Niman18-Jul-10 8:41 
GeneralRe: How to pass in class to web service? Pin
Luc Pattyn18-Jul-10 8:46
sitebuilderLuc Pattyn18-Jul-10 8:46 
QuestionAdding Attributes to XML node using VBA Pin
priyaahh17-Jul-10 7:12
priyaahh17-Jul-10 7:12 
AnswerRe: Adding Attributes to XML node using VBA Pin
DaveAuld17-Jul-10 10:08
professionalDaveAuld17-Jul-10 10:08 
One option would be to use MS XML Core Services COM.

Add a reference to the MS XML V6 library from the Tools Reference menu in the VBA editor.

You can then refere to the MSDN documentation on how to use this with VB.
http://msdn.microsoft.com/en-us/library/ms763742(v=VS.85).aspx[^]

The example below will load an XML file from hdd.

VB
Public Sub editXML()
'To use this add a com reference to MS XML, V6 from Tools References menu

'Create a new XML DOM Document
Dim xmlfile As New DOMDocument

'Load the xml data from file
xmlfile.Load ("c:\users\dave auld\desktop\test.xml")

'Do what you want to do with the XML file

End Sub

Dave

Don't forget to rate messages!
Find Me On: Web|Facebook|Twitter|LinkedIn
Waving? dave.m.auld[at]googlewave.com


GeneralRe: Adding Attributes to XML node using VBA Pin
priyaahh17-Jul-10 11:37
priyaahh17-Jul-10 11:37 
GeneralRe: Adding Attributes to XML node using VBA Pin
DaveAuld18-Jul-10 1:43
professionalDaveAuld18-Jul-10 1:43 
GeneralRe: Adding Attributes to XML node using VBA Pin
priyaahh18-Jul-10 7:39
priyaahh18-Jul-10 7:39 
GeneralRe: Adding Attributes to XML node using VBA Pin
DaveAuld18-Jul-10 7:44
professionalDaveAuld18-Jul-10 7:44 
GeneralRe: Adding Attributes to XML node using VBA Pin
priyaahh18-Jul-10 8:51
priyaahh18-Jul-10 8:51 
GeneralRe: Adding Attributes to XML node using VBA Pin
DaveAuld18-Jul-10 9:51
professionalDaveAuld18-Jul-10 9:51 
GeneralRe: Adding Attributes to XML node using VBA Pin
priyaahh18-Jul-10 10:07
priyaahh18-Jul-10 10:07 
GeneralRe: Adding Attributes to XML node using VBA Pin
DaveAuld18-Jul-10 10:51
professionalDaveAuld18-Jul-10 10:51 
GeneralRe: Adding Attributes to XML node using VBA Pin
priyaahh18-Jul-10 10:59
priyaahh18-Jul-10 10:59 
GeneralRe: Adding Attributes to XML node using VBA Pin
DaveAuld18-Jul-10 11:08
professionalDaveAuld18-Jul-10 11:08 
GeneralRe: Adding Attributes to XML node using VBA Pin
priyaahh18-Jul-10 11:47
priyaahh18-Jul-10 11:47 
GeneralRe: Adding Attributes to XML node using VBA Pin
DaveAuld18-Jul-10 12:10
professionalDaveAuld18-Jul-10 12:10 
GeneralRe: Adding Attributes to XML node using VBA Pin
priyaahh18-Jul-10 13:38
priyaahh18-Jul-10 13:38 
GeneralRe: Adding Attributes to XML node using VBA Pin
DaveAuld18-Jul-10 14:00
professionalDaveAuld18-Jul-10 14:00 
GeneralRe: Adding Attributes to XML node using VBA Pin
priyaahh18-Jul-10 19:44
priyaahh18-Jul-10 19:44 
GeneralRe: Adding Attributes to XML node using VBA Pin
DaveAuld18-Jul-10 22:23
professionalDaveAuld18-Jul-10 22:23 
GeneralRe: Adding Attributes to XML node using VBA Pin
priyaahh18-Jul-10 22:59
priyaahh18-Jul-10 22:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.