473,405 Members | 2,379 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

VB.Net question

I'm trying to figure which version of vb.net 2003 that I need.

I am a dba that usually develops scripts to talk to all of my SQL servers
and do things such as back them up, etc. I want to start using vb.net 2003
to do this.

Keep in mind that these apps will run from one place and then hit all the
servers....I will not be uploading the application to every server and
running them there.....
Whice version do I need?

Enterprise Developer, Enterprise Architect?

Thanks!!
Oct 14 '05 #1
6 1174
CT
Both of the mentioned editions will do, and if I remember correctly, so will
the Professional edition. Check here:
http://msdn.microsoft.com/vstudio/pr...omparison.aspx

--
Carsten Thomsen
Communities - http://community.integratedsolutions.dk

"fnguy" <fn***@discussions.microsoft.com> wrote in message
news:B3**********************************@microsof t.com...
I'm trying to figure which version of vb.net 2003 that I need.

I am a dba that usually develops scripts to talk to all of my SQL servers
and do things such as back them up, etc. I want to start using vb.net
2003
to do this.

Keep in mind that these apps will run from one place and then hit all the
servers....I will not be uploading the application to every server and
running them there.....
Whice version do I need?

Enterprise Developer, Enterprise Architect?

Thanks!!

Oct 14 '05 #2
FnGuy,

You probably needs a very simple version because you are the only one who is
using it. And than use as much as possible the code part.

If I was you I would start with the Beta VB2005 express to check if that
will fits me.

I never have tried yet, however it is the way I would go if I had to set my
first step.
The beta is free to try.

http://lab.msdn.microsoft.com/expres...c/default.aspx

I hope this helps,

Cor
Oct 14 '05 #3
We don't use beta on our production environment. Do you know which version
of 2003.net will work.

Standard won't work, I'm sure. But which of the others allow me to connect
to more than one server that is remote?
"Cor Ligthert [MVP]" wrote:
FnGuy,

You probably needs a very simple version because you are the only one who is
using it. And than use as much as possible the code part.

If I was you I would start with the Beta VB2005 express to check if that
will fits me.

I never have tried yet, however it is the way I would go if I had to set my
first step.
The beta is free to try.

http://lab.msdn.microsoft.com/expres...c/default.aspx

I hope this helps,

Cor

Oct 14 '05 #4
fnguy <fn***@discussions.microsoft.com> wrote:
We don't use beta on our production environment.


In that case, I'd suggest waiting about three weeks until VS2005 is
available. (In fact, I believe the RTM version may be on MSDN much
sooner than that.) From what I've seen, the difference between 2003 and
2005 is *well* worth the short wait.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Oct 14 '05 #5
The new version is not an option for us. .net 2003 only.

Again, since the price differences are significant I need to know which
version is required to run a single application against multiple database
servers...

"Jon Skeet [C# MVP]" wrote:
fnguy <fn***@discussions.microsoft.com> wrote:
We don't use beta on our production environment.


In that case, I'd suggest waiting about three weeks until VS2005 is
available. (In fact, I believe the RTM version may be on MSDN much
sooner than that.) From what I've seen, the difference between 2003 and
2005 is *well* worth the short wait.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too

Oct 14 '05 #6
Ron
The standard might do. All you need is VB or C# and the ADO.Net classes. If
you want an object oriented approach you can use SQLDMO, which has a COM
interface, for which you don't even need VS .NET (VB6 will do).

"fnguy" wrote:
The new version is not an option for us. .net 2003 only.

Again, since the price differences are significant I need to know which
version is required to run a single application against multiple database
servers...

"Jon Skeet [C# MVP]" wrote:
fnguy <fn***@discussions.microsoft.com> wrote:
We don't use beta on our production environment.


In that case, I'd suggest waiting about three weeks until VS2005 is
available. (In fact, I believe the RTM version may be on MSDN much
sooner than that.) From what I've seen, the difference between 2003 and
2005 is *well* worth the short wait.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too

Oct 14 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Mohammed Mazid | last post by:
Can anyone please help me on how to move to the next and previous question? Here is a snippet of my code: Private Sub cmdNext_Click() End Sub Private Sub cmdPrevious_Click() showrecord
3
by: Stevey | last post by:
I have the following XML file... <?xml version="1.0"?> <animals> <animal> <name>Tiger</name> <questions> <question index="0">true</question> <question index="1">true</question> </questions>
7
by: nospam | last post by:
Ok, 3rd or is it the 4th time I have asked this question on Partial Types, so, since it seems to me that Partial Types is still in the design or development stages at Microsoft, I am going to ask...
3
by: Ekqvist Marko | last post by:
Hi, I have one Access database table including questions and answers. Now I need to give answer id automatically to questionID column. But I don't know how it is best (fastest) to do? table...
10
by: glenn | last post by:
I am use to programming in php and the way session and post vars are past from fields on one page through to the post page automatically where I can get to their values easily to write to a...
10
by: Rider | last post by:
Hi, simple(?) question about asp.net configuration.. I've installed ASP.NET 2.0 QuickStart Sample successfully. But, When I'm first start application the follow message shown. ========= Server...
53
by: Jeff | last post by:
In the function below, can size ever be 0 (zero)? char *clc_strdup(const char * CLC_RESTRICT s) { size_t size; char *p; clc_assert_not_null(clc_strdup, s); size = strlen(s) + 1;
56
by: spibou | last post by:
In the statement "a *= expression" is expression assumed to be parenthesized ? For example if I write "a *= b+c" is this the same as "a = a * (b+c)" or "a = a * b+c" ?
2
by: Allan Ebdrup | last post by:
Hi, I'm trying to render a Matrix question in my ASP.Net 2.0 page, A matrix question is a question where you have several options that can all be rated according to several possible ratings (from...
3
by: Zhang Weiwu | last post by:
Hello! I wrote this: ..required-question p:after { content: "*"; } Corresponding HTML: <div class="required-question"><p>Question Text</p><input /></div> <div...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.