Home All Groups Group Topic Archive Search About
Author
19 Sep 2005 2:45 PM
M.Siler
It is my understanding that XMLdoc only works for C#. I'd be glad to pay for
a commercial product, but I want to make sure it is a good one, so I thought
I'd ask here if anyone is using a product that works like XMLdoc does for C#
for VB.

Author
19 Sep 2005 2:54 PM
Ken Halter
"M.Siler" <John.Doe@NoSpam.com> wrote in message
news:uvJkXjSvFHA.1648@TK2MSFTNGP10.phx.gbl...
> It is my understanding that XMLdoc only works for C#. I'd be glad to pay
> for a commercial product, but I want to make sure it is a good one, so I
> thought I'd ask here if anyone is using a product that works like XMLdoc
> does for C# for VB.

VB? or VB.Net... HUGE difference. This is a VB group. In fact, only one
group in your crosspost list is valid for VB.Net

You'll want to post that question in a .Net group. They all contain "dotnet"
or "vsnet" in their names.

This and all other groups on the MS server that start with
"microsoft.public.vb" are for VB Classic (VB versions 1-6) and were in
existance long before any .Net products were released. While some of the
code looks the same, they are very different products and require a
different set of groups.

Try one of these:
news://microsoft.public.dotnet.general
news://microsoft.public.dotnet.languages.vb


--
Ken Halter - MS-MVP-VB - http://www.vbsight.com
DLL Hell problems? Try ComGuard - http://www.vbsight.com/ComGuard.htm
Please keep all discussions in the groups..
Author
19 Sep 2005 5:10 PM
M.Siler
My apology for the wrong group posting. I didn't realize the difference. It
is a VB.Net. Again, my apologies to the non .Net developers.


Show quoteHide quote
"Ken Halter" <Ken_Halter@Use_Sparingly_Hotmail.com> wrote in message
news:ODyoYoSvFHA.1648@TK2MSFTNGP10.phx.gbl...
> "M.Siler" <John.Doe@NoSpam.com> wrote in message
> news:uvJkXjSvFHA.1648@TK2MSFTNGP10.phx.gbl...
>> It is my understanding that XMLdoc only works for C#. I'd be glad to pay
>> for a commercial product, but I want to make sure it is a good one, so I
>> thought I'd ask here if anyone is using a product that works like XMLdoc
>> does for C# for VB.
>
> VB? or VB.Net... HUGE difference. This is a VB group. In fact, only one
> group in your crosspost list is valid for VB.Net
>
> You'll want to post that question in a .Net group. They all contain
> "dotnet" or "vsnet" in their names.
>
> This and all other groups on the MS server that start with
> "microsoft.public.vb" are for VB Classic (VB versions 1-6) and were in
> existance long before any .Net products were released. While some of the
> code looks the same, they are very different products and require a
> different set of groups.
>
> Try one of these:
> news://microsoft.public.dotnet.general
> news://microsoft.public.dotnet.languages.vb
>
>
> --
> Ken Halter - MS-MVP-VB - http://www.vbsight.com
> DLL Hell problems? Try ComGuard - http://www.vbsight.com/ComGuard.htm
> Please keep all discussions in the groups..
>
Author
19 Sep 2005 3:03 PM
Peter Macej
> I'd ask here if anyone is using a product that works like XMLdoc does for C#
> for VB.

You can try our VBdocman .NET or VBdocman (for VB6) at
http://www.vbdocman.com.

--
Peter Macej
Helixoft - http://www.vbdocman.com
VBdocman - Automatic generator of technical documentation for VB, VB
..NET and ASP .NET code
Author
28 Sep 2005 12:45 AM
Richard T. Edwards
Question:  Does the code in C#.Net look like this:

MSXML2.DOMDocument30 XMLdoc = new MSXML2.DOMDocument30Class();

Because in VB.Net:

Dim XMLdoc as MSXML2.DOMDocument30  = new MSXML2.DOMDocument30Class()

Simply add a reference to MSXML --watever version you have installed and
then add an import statement:

imports MSXML2

btw, in VB, we do exactly the same kind of thing by making a reference to
MSXML2 or MSXML3 or whatever.

And then:

Dim XMLdoc as MSXML2.DOMDocument30
Set XMLdoc = new  MSXML2.DOMDocument30

hth.


Show quoteHide quote
"M.Siler" <John.Doe@NoSpam.com> wrote in message
news:uvJkXjSvFHA.1648@TK2MSFTNGP10.phx.gbl...
> It is my understanding that XMLdoc only works for C#. I'd be glad to pay
> for a commercial product, but I want to make sure it is a good one, so I
> thought I'd ask here if anyone is using a product that works like XMLdoc
> does for C# for VB.
>