Discussion:
XMLdoc for VB
(too old to reply)
M.Siler
2005-09-19 14:45:54 UTC
Permalink
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.
Ken Halter
2005-09-19 14:54:50 UTC
Permalink
Post by 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.
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..
M.Siler
2005-09-19 17:10:50 UTC
Permalink
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.
Post by Ken Halter
Post by 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.
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.
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..
Peter Macej
2005-09-19 15:03:21 UTC
Permalink
Post by M.Siler
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
Richard T. Edwards
2005-09-28 00:45:56 UTC
Permalink
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.
Post by 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.
Loading...