473,657 Members | 2,493 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Deployment without Framework?

I am thinking of buying a copy of VB, and wanted to make sure I could make
use of it before I spend the money. Is there any way to create an
application that would work without needing the .NET framework? Or an app
that could run without itself being installed? I would like to offer some
small (mostly graphic utility) apps on the 'Net, but if the user requires
the .NET framework the software will be useless, people won't want to
download such a huge system just to run my small application.

Mar 27 '06 #1
8 1936
I believe that anything written in VB.net will require the .Net Framework to
run--version 2.0 for applications written with VB 2005.

Things are not as they used to be. Almost everyone I deal with has a high
speed Internet connection now, so a 22 MB download does not take all that
long. I just went to Microsoft to test how long it took to download, and it
was 45 seconds on my cable connection. I think I have gotten it faster in
the past.
"Stoll" <Noone@home> wrote in message
news:eh******** ******@TK2MSFTN GP10.phx.gbl...
I am thinking of buying a copy of VB, and wanted to make sure I could make
use of it before I spend the money. Is there any way to create an
application that would work without needing the .NET framework? Or an app
that could run without itself being installed? I would like to offer some
small (mostly graphic utility) apps on the 'Net, but if the user requires
the .NET framework the software will be useless, people won't want to
download such a huge system just to run my small application.

Mar 27 '06 #2
Yes it is possible to integrate parts of the CLR into your application.

However you can't do it easily. There are 3rd party tools that will do
it for you and they cost a lot (so I have heard).

The .NET framework is part of windows update and most user's should
have it by now.
If not, when you create your installer, it will provide them a quick
link to downloading it.

I use to have the same beef with needing the CLR. But I think it might
even be packaged in the next OS.

SN

Mar 27 '06 #3

"Stoll" <Noone@home> wrote in message
news:eh******** ******@TK2MSFTN GP10.phx.gbl...
I am thinking of buying a copy of VB, and wanted to make sure I could make
use of it before I spend the money. Is there any way to create an
application that would work without needing the .NET framework?


Only with VB6 AFAIK.

Mar 27 '06 #4
I found this on the very same page as this thread in google groups, a
sponsored link to running .NET apps without .NET (so to speak).
http://www.xenocode.com/

I've seen this question come and go a fair few times to you will no
doubt find some comprehensive discussions on it if you just search.
(Mostly in the C# forum)

SN

Mar 27 '06 #5

"Stoll" <Noone@home> wrote in message
news:eh******** ******@TK2MSFTN GP10.phx.gbl...
I am thinking of buying a copy of VB, and wanted to make sure I could make
use of it before I spend the money. Is there any way to create an
application that would work without needing the .NET framework? Or an app
that could run without itself being installed? I would like to offer some
small (mostly graphic utility) apps on the 'Net, but if the user requires
the .NET framework the software will be useless, people won't want to
download such a huge system just to run my small application.

Many of them will already have it, and if they don't, the download and
install is a one time thing, no matter how many .NET apps they use.
Instead of buying it, why not download a free copy of VB 2005 Express and
see how it goes?

http://msdn.microsoft.com/vstudio/express/vb/
Mar 27 '06 #6
Stoll,

Your conclusion is the same as in the pre Operating System time.

..Net is just an extra layer on that.

If you want to run without OS than use an Assembler language.

Just my thought,

Cor
Mar 27 '06 #7
Hi Stoll,

..NET applications require the .NET Framework run-time (about 20 MB). There
are 3rd party tools that allow you to virtualize that
(http://www.thinstall.com/solutions/net_virtual.php) but maybe they are
overkill for your project.

..NET applications don´t necessarily require a setup. Since no registration
is involved, simple apps can run directly from the .exe.

Finally, something that you need to understand from the sales/downloads
point of view: not everybody has a broadband Internet connection, there are
lots of countries and lots of end users still using dialup connections (with
flat rates, but 56 Kbps dialup connections). Even if everybody had a
broadband connection, most end users don´t know what the heck the .NET
Framework is or what a run-time is. Forcing them to download (or even to
locate) separately the (localized) run-time DLLs for your app, maybe a
reboot, etc. will cause a bad first impression (there is no chance for a
second "first impression"), and it will hurt strongly your download ratio
and your sales ratio. Simply put, end users expect a single setup that runs
fast and smoothly. Period. If you distribute your app in a CD then .NET is a
suitable option for you. If the web is your only distribution medium, then
think twice about your options (VB6 has a much smaller run-time requirement,
for example). The bottom line is that end-users do not have our developer
mindset...

--

Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio
You can code, design and document much faster:
http://www.mztools.com

"Stoll" <Noone@home> escribió en el mensaje
news:eh******** ******@TK2MSFTN GP10.phx.gbl...
I am thinking of buying a copy of VB, and wanted to make sure I could make
use of it before I spend the money. Is there any way to create an
application that would work without needing the .NET framework? Or an app
that could run without itself being installed? I would like to offer some
small (mostly graphic utility) apps on the 'Net, but if the user requires
the .NET framework the software will be useless, people won't want to
download such a huge system just to run my small application.

Mar 27 '06 #8
"Stoll" <Noone@home> schrieb:
Is there any way to create an application that would work without
needing the .NET framework?
Not with VB.NET, C#, C++/CLI, etc. However, you can use classic VC++ to
create applications which do not depend on the .NET Framework.
Or an app that could run without itself being installed?


Only if the .NET Framework is installed on the target machine.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Mar 27 '06 #9

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

Similar topics

5
1267
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 directory under IIS/5 executable. Everything worked great! Now I am trying to deploy the same app on a Windows 2003 server using the same methodology and I can't get it to function. I followed the same steps above and the basic pages load fine, but...
4
3519
by: James | last post by:
I have a VB windows forms application that accesses a Microsoft Access database that has been secured using user-level security. The application is being deployed using No-Touch deployment. The objective in utilizing this new deployment method is to reduce the maintenance overhead as well as making it easier for my users to setup and run the application initially. I have VS 2002, Windows XP, Access XP(2000 format). He is my problem....
3
2753
by: al | last post by:
Hi, Can someone please tell me what is exactly zero deployment in VB.NET. Is it that .NET doesn't need to deal with the registry? If that is the case, then why MS introduced class registry? MTIA, Grawsha
2
13843
by: Bill Nguyen | last post by:
I ran into this error trying to run an app from Publish.htm. I can't find what is wrong with the deployment. Thanks a million Bill -------- PLATFORM VERSION INFO
1
3791
by: =?Utf-8?B?dmNs?= | last post by:
Short version: IE7 and .NET Framework 2.0 breaks no touch deployment for .NET 1.1 applications. IE6 and .NET Framework 1.1 + 2.0 works fine. IE7 with .NET Framework 1.1 only is fine, once we add .NET Framework 2.0, no touch deployment does not work in a reliable manner. See following table. |.net 1.1 |.net 2.0(while keeping 1.1) -----------------------------------------------
0
8421
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8325
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8844
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8742
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8621
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7354
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
4173
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4330
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2743
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.