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

How widespread is .Net Framework 1.1.4322 ?

We are about to design an application, which will used by 10,000
people world-wide, mainly hospitals, doctors and scientists. There
will be multiple language Versions.

The app will be about 1 MB, it will be distributed via download.
Now we are considering to write it in C#, with .Net 1.1.4322
However, my biggest concern is about how widespread the Framework is.
My concerns are:
- the dotnetfx.exe is 23 MB
- you must use the language version which matches your OS language
- you must have admin rights
I have big concerns that the whole setup procedure will be too
complicated for users and therefore the app will not be accepted.
I'm already tending to go back to VB 6.0 just for these issues.
What are you experiences with distributing the .Net Framework ?
Any opinion is highly appreciated!
Thanks in Advance
Georg Scholz
www.scholz-informatik.at

Sep 28 '07 #1
17 2047
On Sep 28, 3:02 pm, Georg Scholz <georgsch...@gmail.comwrote:
We are about to design an application, which will used by 10,000
people world-wide, mainly hospitals, doctors and scientists. There
will be multiple language Versions.
That sounds like the environments are likely to have a reasonable
network connection - at which point 23MB for the framework shouldn't
be much of an issue even if it's not installed already. If multiple
people within an organisation require the app, you'll only need to
download the framework once.

..NET has been out for about 5 years now, and I believe it's included
in most new system installs.

The best way to find out for *your* users, however, is to write a very
small unmanaged app (e.g. in VB6) which detects whether or not the
framework is present. Collect that information for a representative
sample of users, and you'll be much better informed.

Jon

Sep 28 '07 #2

"Georg Scholz" <ge*********@gmail.comwrote in message
news:11**********************@50g2000hsm.googlegro ups.com...
We are about to design an application, which will used by 10,000
people world-wide, mainly hospitals, doctors and scientists. There
will be multiple language Versions.

The app will be about 1 MB, it will be distributed via download.
Now we are considering to write it in C#, with .Net 1.1.4322
If I were you I would go to 2.0. There are several reasons why, first even
as 1.1 is supported in Vista the preffered is 2.0 besides VS 2003 in vista
is not supported. VS 2005 target only 2.0 . And you like it or not soon all
the machines will be running Vista.
>
My concerns are:
- the dotnetfx.exe is 23 MB
Unless you are on dialup this is not that much. Not only that but the
framework is being pushed by windows update for a while now. Most probably
they will have it installed already.
- you must use the language version which matches your OS language
- you must have admin rights
I'm already tending to go back to VB 6.0 just for these issues.
I do not see how going to use VB6 will solve your languages problems, or not
needed admin rights.
Sep 28 '07 #3

Hospitals tend to have more locked down computers due to security
requirements and privacy concerns so if you're building a commercial
app and depending on ability of direct customers (as opposed to
customer's IT staff) to install the framework, then it could be a
concern.

We deal almost exclusively with hospitals but we ship out app on new
computers with all the software we need pre-installed. :-)

HTH,

Sam
------------------------------------------------------------
We're hiring! B-Line Medical is seeking .NET
Developers for exciting positions in medical product
development in MD/DC. Work with a variety of technologies
in a relaxed team environment. See ads on Dice.com.
On Fri, 28 Sep 2007 07:02:48 -0700, Georg Scholz
<ge*********@gmail.comwrote:
>We are about to design an application, which will used by 10,000
people world-wide, mainly hospitals, doctors and scientists. There
will be multiple language Versions.
....
>
Georg Scholz
www.scholz-informatik.at
Sep 28 '07 #4
You should go track down my posts ranting about this
(http://tinyurl.com/2kk5a8).

We built and shipped a commercial .Net app, and have had nothing but
problems due to the lack of widespread .Net deployment. Nothing has helped,
to be honest.

With that said, I think you would be nuts to go with VB6. It's obsolete, and
has quite a few drawbacks. It's past it's end of lifecycle, and really
doesn't seem a viable option.

To me, there seem to be two legit options:
1 - To me, the current verstion of Delphi looks like the best answer right
now for building widely deployed desktop applications.

2 - Use .Net, then statically link your app using RemoteSoft or one of the
other static .Net linkers.

3 - Use MFC. To me, this is the least attractive of the 3 options.

--
Chris Mullins, MCSD.Net, MCPD:Enterprise, Microsoft C# MVP
http://www.coversant.com/blogs/cmullins

"Georg Scholz" <ge*********@gmail.comwrote in message
news:11**********************@50g2000hsm.googlegro ups.com...
We are about to design an application, which will used by 10,000
people world-wide, mainly hospitals, doctors and scientists. There
will be multiple language Versions.

The app will be about 1 MB, it will be distributed via download.
Now we are considering to write it in C#, with .Net 1.1.4322
However, my biggest concern is about how widespread the Framework is.
My concerns are:
- the dotnetfx.exe is 23 MB
- you must use the language version which matches your OS language
- you must have admin rights
I have big concerns that the whole setup procedure will be too
complicated for users and therefore the app will not be accepted.
I'm already tending to go back to VB 6.0 just for these issues.
What are you experiences with distributing the .Net Framework ?
Any opinion is highly appreciated!
Thanks in Advance
Georg Scholz
www.scholz-informatik.at

Sep 28 '07 #5
Georg,
I have big concerns that the whole setup procedure will be too
complicated for users and therefore the app will not be accepted.
You could use virtualization technology on the application level. Xenocode
Postbuild www.xenocode.com has on option of embedding into the application
the entire .NET run time visible to the application only. This could take
care of admin rights and complexity concerns. Of course, in your case the
setup size would balloon to around 20 MB. I have been burnt by installation
issues more then once. Not every organization has an IT department, and
asking end users if their PC has .NET framework installed is
counter-productive. Most have no clue and get irritated by such questions. I
avoid this embarrassment by making installs with two application
components - one with embedded .NET runtime, another without. At
installation time the setup checks the users machine for .NET framework and
installs the appropriate component without bothering the user. Works on
Windows 2000, XP, Vista with UAC enabled. Besides, Postbuild also obfuscates
the application. This is why I bought it in the first place.

I am not affiliated with Xenocode (the company name is actually Code
Systems Corp.), I am just a happy user of their products.

Michael

"Georg Scholz" <ge*********@gmail.comwrote in message
news:11**********************@50g2000hsm.googlegro ups.com...
We are about to design an application, which will used by 10,000
people world-wide, mainly hospitals, doctors and scientists. There
will be multiple language Versions.

The app will be about 1 MB, it will be distributed via download.
Now we are considering to write it in C#, with .Net 1.1.4322
However, my biggest concern is about how widespread the Framework is.
My concerns are:
- the dotnetfx.exe is 23 MB
- you must use the language version which matches your OS language
- you must have admin rights
I have big concerns that the whole setup procedure will be too
complicated for users and therefore the app will not be accepted.
I'm already tending to go back to VB 6.0 just for these issues.
What are you experiences with distributing the .Net Framework ?
Any opinion is highly appreciated!
Thanks in Advance
Georg Scholz
www.scholz-informatik.at

Sep 28 '07 #6
Thanks a lot Chris,

I also read your other thread - this confirms my concerns, and we will
definitively switch back to VB6.

I'm a long-year expert both on C++ (Win32+MFC) and VB6; I have always
been mixing the best of these two worlds together. For this app I
prefer VB6 as it is more user-interface oriented.

To me, .NET and C# have a GREAT DESIGN; and we have been developing
for more than one year now indivudal software for clients.

However, finally, the end-user does not care about HOW my app was
written - a software needs to be user-friendly, and installing it
should be a pleasant experience, not an annoying one.

Therefore, unfortunately, the framework seems to be unuseable for mass-
distribution of *small* applications.

Best regards
Georg
---
Georg Scholz
www.scholz-informatik.at


On Sep 28, 11:10 pm, "Chris Mullins [MVP - C#]" <cmull...@yahoo.com>
wrote:
You should go track down my posts ranting about this
(http://tinyurl.com/2kk5a8).

We built and shipped a commercial .Net app, and have had nothing but
problems due to the lack of widespread .Net deployment. Nothing has helped,
to be honest.

With that said, I think you would be nuts to go with VB6. It's obsolete, and
has quite a few drawbacks. It's past it's end of lifecycle, and really
doesn't seem a viable option.

To me, there seem to be two legit options:
1 - To me, the current verstion of Delphi looks like the best answer right
now for building widely deployed desktop applications.

2 - Use .Net, then statically link your app using RemoteSoft or one of the
other static .Net linkers.

3 - Use MFC. To me, this is the least attractive of the 3 options.

--
Chris Mullins, MCSD.Net, MCPD:Enterprise, Microsoft C# MVPhttp://www.coversant.com/blogs/cmullins

"Georg Scholz" <georgsch...@gmail.comwrote in message

news:11**********************@50g2000hsm.googlegro ups.com...
We are about to design an application, which will used by 10,000
people world-wide, mainly hospitals, doctors and scientists. There
will be multiple language Versions.
The app will be about 1 MB, it will be distributed via download.
Now we are considering to write it in C#, with .Net 1.1.4322
However, my biggest concern is about how widespread the Framework is.
My concerns are:
- the dotnetfx.exe is 23 MB
- you must use the language version which matches your OS language
- you must have admin rights
I have big concerns that the whole setup procedure will be too
complicated for users and therefore the app will not be accepted.
I'm already tending to go back to VB 6.0 just for these issues.
What are you experiences with distributing the .Net Framework ?
Any opinion is highly appreciated!
Thanks in Advance
Georg Scholz
www.scholz-informatik.at- Hide quoted text -

- Show quoted text -

Sep 29 '07 #7
Hospitals tend to have more locked down computers due to security
requirements and privacy concerns so if you're building a commercial
app and depending on ability of direct customers (as opposed to
customer's IT staff) to install the framework, then it could be a
concern.
Yeah, right; this is also my experience with all big companies: Either
they have rolled out the Framework to ALL computers, or none ...
Sep 29 '07 #8
You could use virtualization technology on the application level. Xenocode
Postbuildwww.xenocode.com has on option of embedding into the application
the entire .NET run time visible to the application only.
This is another very interesting option, I will have a look at this.
However, for our current plans this might not be useful . I want a
small distribution size - small - quick - easy ... that's out goal.

Best regards
Georg

Sep 29 '07 #9
2 - Use .Net, then statically link your app using RemoteSoft or one of the
other static .Net linkers.
I have now been looking onto the RemoteSoft site.
This sounds very very good .. Do you have some experience with it? Is
it really as good as they say? Are apps getting really so small?

Georg
Sep 29 '07 #10
Georg,

How many people are having the security options off. Then you have probably
the same amount as non Net installed computers.

Here in the BeNeLux , a 1.5Mb connections is mostly the minimum somebody
has at home. There is low chance that not almost every professional
organisation here (and in the rest from complete Europe) has an Internet
connection for which 23Mb is nothing. (Often the intern computers are
updated from Internet not even building some intern resource for that).

I don't know of course situation where are no hospitals or electricity or
telephone connections in the world.

Cor

Sep 29 '07 #11
Now we are considering to write it in C#, with .Net 1.1.4322

If I were you I would go to 2.0. There are several reasons why, first even
as 1.1 is supported in Vista the preffered is 2.0 besides VS 2003 in vista
is not supported. VS 2005 target only 2.0 . And you like it or not soon all
the machines will be running Vista.
Well, I'm working with .NET 1.1 for VERY GOOD reason:

Here in Vienna, amongst others, I'm working for four really BIG
international enterprises. All of them have centralized IT, and they
only permit to have "certified" components on their machines.

Well, now guess which OS they are using? THREE (!) of them are still
using Windows 2000 - currently they are in progress to switch to XP.
And ALL of them only have Framework 1.1.4322 certified; NONE has
Framework 2.0 - will come in the next years or so ...

Regarding Vista: In two years, most bugs will be "ironed out", and
then it slowly will begin to drop into business applications. IMHO it
will take at least 4 years until Vista is getting widespread on most
computers.

Georg

---
Georg Scholz
www.scholz-informatik.at

Sep 29 '07 #12
On Sep 29, 8:37 am, Georg Scholz <georgsch...@gmail.comwrote:
I also read your other thread - this confirms my concerns, and we will
definitively switch back to VB6.
Even without finding out roughly what proportion of your users already
have .NET installed? I suspect you'll find that for most people it
won't be an issue, and you'll be less productive on the development
side.

Additionally, you'll then be on a legacy platform - if you need to do
a next version in a few years time, do you really want to face the
choice of a complete rewrite or sticking with a platform which is a
decade out of date?

At least poll your user base before deciding...

Jon

Sep 29 '07 #13
On Sep 29, 11:24 am, "Jon Skeet [C# MVP]" <sk...@pobox.comwrote:
On Sep 29, 8:37 am, Georg Scholz <georgsch...@gmail.comwrote:
I also read your other thread - this confirms my concerns, and we will
definitively switch back to VB6.

Even without finding out roughly what proportion of your users already
have .NET installed? I suspect you'll find that for most people it
won't be an issue, and you'll be less productive on the development
side.

Additionally, you'll then be on a legacy platform - if you need to do
a next version in a few years time, do you really want to face the
choice of a complete rewrite or sticking with a platform which is a
decade out of date?

At least poll your user base before deciding...

Jon
Jon, do you have a reading comprehension problem? Just kidding, but
read Georg's post (I reproduce it below) in its entirety to see why he
in fact de facto has "polled" his users. Maybe it wasn't there when
you replied? SOrry then.

RL
[Sea Sharp MVP &expert, kinda, of sorts]
If I were you I would go to 2.0. There are several reasons why, first even
as 1.1 is supported in Vista the preffered is 2.0 besides VS 2003 in vista
is not supported. VS 2005 target only 2.0 . And you like it or not soon all
the machines will be running Vista.
Well, I'm working with .NET 1.1 for VERY GOOD reason:

Here in Vienna, amongst others, I'm working for four really BIG
international enterprises. All of them have centralized IT, and they
only permit to have "certified" components on their machines.

Well, now guess which OS they are using? THREE (!) of them are still
using Windows 2000 - currently they are in progress to switch to XP.
And ALL of them only have Framework 1.1.4322 certified; NONE has
Framework 2.0 - will come in the next years or so ...

Regarding Vista: In two years, most bugs will be "ironed out", and
then it slowly will begin to drop into business applications. IMHO it
will take at least 4 years until Vista is getting widespread on most
computers.

Georg
Sep 29 '07 #14
raylopez99 <ra********@yahoo.comwrote:
Jon, do you have a reading comprehension problem? Just kidding, but
read Georg's post (I reproduce it below) in its entirety to see why he
in fact de facto has "polled" his users. Maybe it wasn't there when
you replied? SOrry then.
I hadn't seen that post, but in fact it confirms that using VB6 would
be a bad idea:

"And ALL of them only have Framework 1.1.4322 certified"

To me, that answers the initial post - he shouldn't have any problems
using .NET 1.1, as all of his customers have certified, and with
centralized IT there shouldn't be any problem pushing the framework
onto the client machines - the size of the download becomes irrelevant.

I can see why he'd want to use .NET 1.1 rather than 2.0, but using VB6
would definitely be a backward step.

--
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
Sep 30 '07 #15
I can see why he'd want to use .NET 1.1 rather than 2.0, but using VB6
would definitely be a backward step.
(for the list's benefit; I doubt this is news to Jon)

Not just backward, but foolish: this is about to drop off the support
cliff, even for "extended" support; a viewpoint is that this will /
significantly/ diminish it's status as "certified" to many sites,
since there will be no escalation support route, and no comeback if it
suddenly stops working due to some hotfix. That said, in most cases it
will keep on running just fine, but *in particular* in a hospital (or
similar) scenario where life and death is a genuine concern, this
could be important. And yes, I do realise that treatment machines etc
have different rules again, but even availability at a nurses station
could risk life.

http://msdn2.microsoft.com/en-us/vbrun/ms788707.aspx

Marc

Sep 30 '07 #16
"Georg Scholz" <ge*********@gmail.comwrote in message

[.Net is not widly deployed]
I also read your other thread - this confirms my concerns, and
we will definitively switch back to VB6.
I can't help but think that's not such a great idea. As Jon & Mark have
pointed out, VB6 is at the very end of it's lifecycle, and may just "stop
working" at some point in the future. There seems to be a whole can of worms
here...

I would still recommend taking a long look at:
1 - Delphi
2 - MFC
3 - One of the .Net static linkers
Therefore, unfortunately, the framework seems to be unuseable for mass-
distribution of *small* applications.
It's going to depend on your user base. For the general public, I agree with
you. For a corporate IT shop, I disagree.

--
Chris Mullins
Oct 1 '07 #17
Chris Mullins [MVP - C#] wrote:
"raylopez99" <ra********@yahoo.comwrote in message >
>I've coded for about a month in C# (total time) and I practically feel
I can hold my own against Jon and Pete, the resident C# gurus here!

Good luck with that. I've been coding C# a long time, and the two of them
(along with a few others) are enough to give somenome a complex! Some of the
people here are way to smart...
Frankly, I'm a little uncomfortable being called one of "the resident C#
gurus here" (even if I did receive word today that thanks to Jon's
nomination, I'm now a "C# MVP"...and not just "kind of, sort of,
uncertified of"). And I'm especially uncomfortable with the implication
that there are only two such people.

I can think of, just off the top of my head, at least a half-dozen
regular posters here that have much greater claim to "guru-dom" than I
do, especially in (but not limited to) the context of C#. I'd come up
with more names if I spent a few more moments thinking about it.

In fact, one of the amazing things about this newsgroup is the high
number of people who are not only able to answer the mundane, daily
questions that C# newbies are constantly posting, but also those really
weird ones that you can only answer if you've "been there, done that,
ripped your hair out trying to learn it". There's a lot of esoteric
knowledge out there and frankly my own expertise pales in comparison.

Of course, among all those people, not one is Ray. But maybe one day. :)

Pete
Oct 2 '07 #18

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

Similar topics

2
by: j.b.messina | last post by:
This has not yet been published by Microsoft. It will be published within the next few weeks, mainly because I asked them to. I felt this was information badly needed, and I think this is the...
6
by: Joseph Geretz | last post by:
I recently upgraded my server to Windows 2003. The first thing I noticed is that my sample WebService pages no longer worked. The Invoke test button is missing. This is addresed by the following KB...
1
by: Ivan | last post by:
Hi, I have moved an entire solution from .netframework 1.0 to 1.1; also I have migrated the solution to VS2003. After this I have added a new project (Web) to previous solution; I'm referencing...
3
by: Shadow Lynx | last post by:
At the bottom of the default Error page that appears when Unhandled Exceptions occur, what exactly is the difference between the "Microsoft ..Net Framework Version" and the "ASP.NET Version"? I...
13
by: dancer | last post by:
I have made a new post because when I try to respond to another, I get the error, "Article Rejected -- Ill-formed message id" This is in response to the advice of Juan Libre to install Net...
0
by: Georg Scholz | last post by:
We are about to design an application, which will used by 10,000 people world-wide, mainly hospitals, doctors and scientists. There will be multiple language Versions. The app will be about 1...
18
by: Georg Scholz | last post by:
We are about to design an application, which will used by 10,000 people world-wide, mainly hospitals, doctors and scientists. There will be multiple language Versions. The app will be about 1...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...

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.