Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to run a VB.NET application on Windows 2000

Status
Not open for further replies.

bhavanipodipireddy

Programmer
Jan 13, 2004
7
FR
I have developed an application using VB.NET in Visual Studion.NET 2003 on my computer.. From the VS.NEt 2003 i am able to run the application successfully..

Now i want to runt ha same application in another computer..The operating System for both the computers are same windows 2000 Professional.. On my computer i have installed VS.NET 2003. But on the computer on which i want to run the application there is no VS.NET 2003 installed...

Now my problem is how can i run the VB.NET application developed on one computer on another computer which deosn't have the VS.NET environment...

Can anyone help me in this...

Thank you very much.
 
You have to install the .net redistributable first ... dotnetfx.exe. This can be downloaded from Microsoft. You have the option of using the install package to install the framework before the application installs. Check out this article on Microsoft's site:

"Using Visual Studio .NET to Redistribute the .NET Framework"

KJ
 
This will be true with anything .NET... the Framework has to be installed on the computer (including Microsoft Data Access Controls 2.7 [I think, might be 2.6], Internet Explorer 6, and IIS).

Our plant installs in this order:

1) MDAC
2) Internet Explorer update
3) IIS
4) .NET Framework
5) .NET apps

You may not have to install all those extra components, but you should check to make sure they're in place.

Ben

There's no place like 127.0.0.1.
 
benlinkknilneb,

I haven't used 2003 much yet. Are you sure you have to install IIS on client computers?
 
Whoops... that was for installing Visual Studio itself... sorry 'bout that.

Ben

There's no place like 127.0.0.1.
 
MDAC 2.6 or higher is needed if your application use the SQLClient function of ADO.NET.

The .NET framework is needed on every PC that runs your application.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top