473,398 Members | 2,812 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,398 software developers and data experts.

Missing DLL and deployment issue

Bob
I know 'C', Java and Perl. I was looking for a newer generation language
to learn and apply so I took a course in VB.NET. The course went well
and I continued learning the material. I wrote a utility program in
Visual Basic.NET at home for work. I went to execute the program at
work on someone else's computer and it said I was missing a DLL. I've
seen those type of messages before so I thought, no big deal, until I
researched the matter on the Internet.

According to what I read, each computer running VB.NET (or any .NET
language) must have the entire (and huge) .NET environment on each
computer. Please tell me that I'm misunderstood. There's no way I can
install .NET on hundreds of computers at work.

When I took the course, the instructor and the book never mentioned this
huge limitation. I was hoping to learn VB.NET and C++.NET but if I
can't readily deploy the programs, it doesn't make sense to continue to
learn any of the .NET languages.

Did I misunderstand what I've read? If not, how do you deploy your
projects?

Thank you.
Nov 20 '05 #1
5 1278
Bob,

When I took the course, the instructor and the book never mentioned this
huge limitation.


I assume your own very private opinion. For me it is an advantage not every
time to have to deploy those runtimers and DLL as in past. This makes
deployment by instance over internet much easier.

However that is my private opinion.

Cor
Nov 20 '05 #2
* Bob <Bob> scripsit:
I know 'C', Java and Perl. I was looking for a newer generation
language to learn and apply so I took a course in VB.NET. The course
went well and I continued learning the material. I wrote a utility
program in Visual Basic.NET at home for work. I went to execute the
program at work on someone else's computer and it said I was missing a
DLL. I've seen those type of messages before so I thought, no big
deal, until I researched the matter on the Internet.

According to what I read, each computer running VB.NET (or any .NET
language) must have the entire (and huge) .NET environment on each
computer.
That's true, and that's an advantage, because /all/ .NET applications
will use this framework.
Please tell me that I'm misunderstood. There's no way I
can install .NET on hundreds of computers at work.
There are ways to silently install the .NET Framework over a network, or
to download it using Windows Update. And there is no way around that
(sure, there are tools available that pretend to be able to do that, but
most of them are very expensive and from a technical point of view,
don't make much sense).

The .NET Framework is not only a huge class library, it's includes the
CLR which is the execution engine for .NET applications.
Did I misunderstand what I've read? If not, how do you deploy your
projects?


You can include the .NET Framework's setup in your project's setup
package:

My FAQ:

Using Visual Studio .NET 2003 to Redistribute the .NET Framework
<URL:http://msdn.microsoft.com/library/en-us/dnnetdep/html/vsredistdeploy1_1.asp>

Plug-In:

<URL:http://groups.google.com/groups?selm=z2an4EnoDHA.2012%40cpmsftngxa06.phx.gb l>

Bootstrapper:

<URL:http://msdn.microsoft.com/vstudio/downloads/tools/bootstrapper/>

Microsoft Visual Studio .NET 2003 Bootstrapper Plug-In
<URL:http://www.microsoft.com/downloads/details.aspx?FamilyID=627921a0-d9e7-43d6-a293-72f9c370bd19>

<URL:http://workspaces.gotdotnet.com/vsboot/> (old URL)

Download
<URL:http://www.gotdotnet.com/community/workspaces/newsitem.aspx?id=2f8f0a23-f529-4158-8e0a-d187d16f41f1&newsId=1981>

Framework 1.1:

Redistributing the .NET Framework 1.1
<URL:http://msdn.microsoft.com/library/en-us/dnnetdep/html/redistdeploy1_1.asp>

..NET Framework 1.1 Deployment Guide
<URL:http://msdn.microsoft.com/library/en-us/dnnetdep/html/dotnetframedepguid1_1.asp>

..NET Framework 1.1 Redistributable Prerequisites
<URL:http://msdn.microsoft.com/library/en-us/dnnetdep/html/NETFx1Redistreq1_1.asp>

..NET Framework Redistributable Package 1.1 Technical Reference
<URL:http://msdn.microsoft.com/library/en-us/dnnetdep/html/dotnetfxref1_1.asp>

Framework 1.0:

..NET Framework Deployment Guide
<URL:http://msdn.microsoft.com/library/en-us/dnnetdep/html/dotnetframedepguid.asp>

Using Visual Studio .NET to Redistribute the .NET Framework
<URL:http://msdn.microsoft.com/library/en-us/dnnetdep/html/vsredistdeploy.asp>

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
Nov 20 '05 #3

http://thinstall.com/demos/dotnet.php

Atara
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 20 '05 #4
At this stage, I find that writing .NET apps is really only good in
tightly controlled situations as not enough people have the .NET
framework installed. And at 20MB, it is not a simple download for
clients, nor do I expect it to be in high (public) usage until the
next OS release from MS. Personally, we use WTL for most of our work,
and I don't think you will find anything else that is easier to
distribute to client computers (WTL does not require any additional
distributes on top of the executable).
Simon Hayden
http://www.AutoUpdatePlus.com
Get software updates to your clients the Quick and Easy way!
Latest Version ==========>>> Client Computer
Nov 20 '05 #5
Bob
Simon wrote:
At this stage, I find that writing .NET apps is really only good in
tightly controlled situations as not enough people have the .NET
framework installed. And at 20MB, it is not a simple download for
clients, nor do I expect it to be in high (public) usage until the
next OS release from MS. Personally, we use WTL for most of our work,
and I don't think you will find anything else that is easier to
distribute to client computers (WTL does not require any additional
distributes on top of the executable).
Simon Hayden
http://www.AutoUpdatePlus.com
Get software updates to your clients the Quick and Easy way!
Latest Version ==========>>> Client Computer


Thank you very much for your feedback. I kind of guessed that if a 20MB
file had to be downloaded and installed, then .NET would only work in a
corporate environment.

Sigh. I was really hoping to learn the .NET languages as it seems that
nearly every job offer requires C++, VB, C# and I liked the .NET
environment (except for the 'help' system). Where I'm currently
working, installing .NET on every company computer would be pretty much
out of the question.
Nov 20 '05 #6

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

Similar topics

2
by: Bob | last post by:
I know 'C', Java and Perl. I was looking for a newer generation language to learn and apply so I took a course in VB.NET. The course went well and I continued learning the material. I wrote a...
1
by: Sunny | last post by:
Hi I have a Database Application that i am trying to install on the Clients machine, the application uses three custom Ms access Databases. Those database i added in the correct folder in the SETUP...
1
by: Steve | last post by:
I am having an issue deploying an ActiveX control. This is a .NET project in C#. The ActiveX control is written in VB6. I use the PDW (Package and Deployment Wizard) to create a .CAB for the...
2
by: Mark | last post by:
Hi, I've been having problems with the validation controls not working on my deployment server. Initially it was a security issue with the anonymous account not having permissions to access...
5
by: DEWright_CA | last post by:
I have a app that I built for a client. I was able to deploy it to a test server without any real issue. I copied the bin folder to my server, copied over the aspx pages and made the virtual...
1
by: Marty Cruise | last post by:
My application is run within an intranet environment and is installed on client machines. Each time the application is executed, it checks to see if a newer version is availble. If there is, it...
3
by: Jeff G | last post by:
When I build the deployment project for an application everything works. However, the two files instmsia.exe and instmsiw.exe do not appear with the setup files. I may be installing this on...
6
by: andrewbb | last post by:
I want to deploy a service with a windows app and the setup program must conform to the Vista certification requirements. Can that be done with the standard .net setup project? Assuming cost is...
0
by: Tifer | last post by:
Hello, I am building my first .Net Application. The first couple of Publish and Installs I did went fine. But after a couple of builds, I get a modal dialogue box error every time upon trying...
1
by: mrpetegroups | last post by:
Hi - Problem: The file below has become zero length \winnt\assembly\GAC_MSIL\system.deployment\2.0.0.0_b03f5f7f11d50a3a \system.deployment.dll Details follow ... I've been programming...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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
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.