PC Review


Reply
Thread Tools Rate Thread

Distributing .net "Shrink Wrap" Applications

 
 
Marcus Clark
Guest
Posts: n/a
 
      22nd Jan 2004
I am currently in the process of evaluating the C# and VB.NET portions
of the latest release of Visual Studio 2003 .NET (I have already
written a few production apps using VC++ 7 that DOES NOT target the
framework. What I would like to know is if anyone has successfully
(or NOT) written an installable .NET application using either C# or
VB.NET (or both) targeting a variety of OS's (XP, 2000, and possibly
NT4 and 98) without considerable pain. I have search many post and
have only found post discouraging such solutions.

Any success stories??

Any stop signs besides the obvious one of needing to have the
Framework installed on the client machines??

Any Products in any markets currently being developed and sold as a
completely .net solution??

Any comments would be appreciated!!!
 
Reply With Quote
 
 
 
 
Christian Boult
Guest
Posts: n/a
 
      22nd Jan 2004
VB .NET or C# there is not difference in terms of distribution.
We have it on clients running : 2000, XP, Server2003
And here we have it on Win 98 internally in the office in case some client
still is on 98.

No difference what the OS is as long as it's MS.

Our solution is completely .NET and it's a beauty to distribute compared to
what we where using before.

Don't know why those post were discouraging since it's simple XCOPY deploy
(except for the framework which they install from windows update or from the
supplied .NET 1.1 redistributable package).

For us .NET is a great relief.
Hope this helps.

Chris.


"Marcus Clark" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> I am currently in the process of evaluating the C# and VB.NET portions
> of the latest release of Visual Studio 2003 .NET (I have already
> written a few production apps using VC++ 7 that DOES NOT target the
> framework. What I would like to know is if anyone has successfully
> (or NOT) written an installable .NET application using either C# or
> VB.NET (or both) targeting a variety of OS's (XP, 2000, and possibly
> NT4 and 98) without considerable pain. I have search many post and
> have only found post discouraging such solutions.
>
> Any success stories??
>
> Any stop signs besides the obvious one of needing to have the
> Framework installed on the client machines??
>
> Any Products in any markets currently being developed and sold as a
> completely .net solution??
>
> Any comments would be appreciated!!!



 
Reply With Quote
 
Chad Z. Hower aka Kudzu
Guest
Posts: n/a
 
      22nd Jan 2004
(E-Mail Removed) (Marcus Clark) wrote in
news:(E-Mail Removed):
> framework. What I would like to know is if anyone has successfully
> (or NOT) written an installable .NET application using either C# or
> VB.NET (or both) targeting a variety of OS's (XP, 2000, and possibly
> NT4 and 98) without considerable pain. I have search many post and
> have only found post discouraging such solutions.


I dont think the framework works on NT4.


--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"


ELKNews - Get your free copy at http://www.atozedsoftware.com

 
Reply With Quote
 
William Stacey
Guest
Posts: n/a
 
      22nd Jan 2004
If you just use native framework calls and target just 1.1 that will make it
easy. If you require a lot of pinvoke and Win32 native calls, you will need
to check versions to see if os supports that api, and if not, do something
different. However that issue is not new and you had to do that before
..net. If you support targets in different languages, you need to test each
one (as normal). I ran into a user that failed to parse a double (for
example) having something to do with language differences. If you target
just one language (i.e. english version ) then testing should be easier.
XCOPY deploy and go. One issue that is not really easy from user's side, or
your side, is security and .net framework. If you run from network drive,
all clients need higher rights for that assembly to run from network drive.
Other security issues may need rights management. Not a big deal, but
things you need to handle and test before you just point people to a share
or url for download/install. The Setup project seems to work well to roll
everthing up when your done (have not worked with it too much however to
know any issues with it.)

--
William Stacey, MVP

"Marcus Clark" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> I am currently in the process of evaluating the C# and VB.NET portions
> of the latest release of Visual Studio 2003 .NET (I have already
> written a few production apps using VC++ 7 that DOES NOT target the
> framework. What I would like to know is if anyone has successfully
> (or NOT) written an installable .NET application using either C# or
> VB.NET (or both) targeting a variety of OS's (XP, 2000, and possibly
> NT4 and 98) without considerable pain. I have search many post and
> have only found post discouraging such solutions.
>
> Any success stories??
>
> Any stop signs besides the obvious one of needing to have the
> Framework installed on the client machines??
>
> Any Products in any markets currently being developed and sold as a
> completely .net solution??
>
> Any comments would be appreciated!!!



 
Reply With Quote
 
William Stacey
Guest
Posts: n/a
 
      22nd Jan 2004
Does for me. Not sure how well as have not tested apps on it much.

--
William Stacey, MVP

"Chad Z. Hower aka Kudzu" <(E-Mail Removed)> wrote in message
news:Xns9478EE3D0C6E9cpub@127.0.0.1...
> (E-Mail Removed) (Marcus Clark) wrote in
> news:(E-Mail Removed):
> > framework. What I would like to know is if anyone has successfully
> > (or NOT) written an installable .NET application using either C# or
> > VB.NET (or both) targeting a variety of OS's (XP, 2000, and possibly
> > NT4 and 98) without considerable pain. I have search many post and
> > have only found post discouraging such solutions.

>
> I dont think the framework works on NT4.
>
>
> --
> Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
> "Programming is an art form that fights back"
>
>
> ELKNews - Get your free copy at http://www.atozedsoftware.com
>



 
Reply With Quote
 
Chad Z. Hower aka Kudzu
Guest
Posts: n/a
 
      22nd Jan 2004
"William Stacey" <(E-Mail Removed)> wrote in news:O0GqejS4DHA.2612
@tk2msftngp13.phx.gbl:
> Does for me. Not sure how well as have not tested apps on it much.


Thats surprising. I thought I had seen that MS was not supporting NT4 with
it. I would not expect it to continue very long however.


--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"


ELKNews - Get your free copy at http://www.atozedsoftware.com

 
Reply With Quote
 
Christian Boult
Guest
Posts: n/a
 
      22nd Jan 2004
Ho just one thing might be a little of trouble is configuring .NET security
if you are deploying your app on a Web server since you don't get full trust
if your app is coming from the Intranet or Internet. It's not easily done in
an unattended mode. You can use caspol to change these but I don't remember
if you need to be admin on your pc. You can also get the .NET wizards to
generate an .msi that changes security settings but I think it overwrites
any other settings that might have been set in there by the user.

Chris.

"Christian Boult" <(E-Mail Removed)> wrote in message
news:ugX$(E-Mail Removed)...
> VB .NET or C# there is not difference in terms of distribution.
> We have it on clients running : 2000, XP, Server2003
> And here we have it on Win 98 internally in the office in case some client
> still is on 98.
>
> No difference what the OS is as long as it's MS.
>
> Our solution is completely .NET and it's a beauty to distribute compared

to
> what we where using before.
>
> Don't know why those post were discouraging since it's simple XCOPY deploy
> (except for the framework which they install from windows update or from

the
> supplied .NET 1.1 redistributable package).
>
> For us .NET is a great relief.
> Hope this helps.
>
> Chris.
>
>
> "Marcus Clark" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > I am currently in the process of evaluating the C# and VB.NET portions
> > of the latest release of Visual Studio 2003 .NET (I have already
> > written a few production apps using VC++ 7 that DOES NOT target the
> > framework. What I would like to know is if anyone has successfully
> > (or NOT) written an installable .NET application using either C# or
> > VB.NET (or both) targeting a variety of OS's (XP, 2000, and possibly
> > NT4 and 98) without considerable pain. I have search many post and
> > have only found post discouraging such solutions.
> >
> > Any success stories??
> >
> > Any stop signs besides the obvious one of needing to have the
> > Framework installed on the client machines??
> >
> > Any Products in any markets currently being developed and sold as a
> > completely .net solution??
> >
> > Any comments would be appreciated!!!

>
>



 
Reply With Quote
 
Darren Green
Guest
Posts: n/a
 
      22nd Jan 2004
In message <(E-Mail Removed)>, William Stacey
<(E-Mail Removed)> writes
>Does for me. Not sure how well as have not tested apps on it much.
>


Works for me too. There are however limitations, the biggest being no
ASP.Net, but for desktop Apps that should not be an issue. Another area
I know of surrounds the EnterpriseServices namespace since this is
essentially COM+ which only came along in W2K, and was substantially
different to what you had with MTS in NT4..

Anything new in W2K+ at an OS/API level will obviously not work on NT4,
but I haven't found a concise list.

--
Darren Green (SQL Server MVP)
DTS - http://www.sqldts.com

PASS - the definitive, global community for SQL Server professionals
http://www.sqlpass.org

 
Reply With Quote
 
Chris Botha
Guest
Posts: n/a
 
      22nd Jan 2004
Chad, NT4 service pack 6 is required for the framework, however asp.net
won't run on NT, as asp.net requires IIS5 and up.

"Chad Z. Hower aka Kudzu" <(E-Mail Removed)> wrote in message
news:Xns9478F3BFE239Fcpub@127.0.0.1...
> "William Stacey" <(E-Mail Removed)> wrote in news:O0GqejS4DHA.2612
> @tk2msftngp13.phx.gbl:
> > Does for me. Not sure how well as have not tested apps on it much.

>
> Thats surprising. I thought I had seen that MS was not supporting NT4 with
> it. I would not expect it to continue very long however.
>
>
> --
> Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
> "Programming is an art form that fights back"
>
>
> ELKNews - Get your free copy at http://www.atozedsoftware.com
>



 
Reply With Quote
 
Chris Botha
Guest
Posts: n/a
 
      22nd Jan 2004
Markus, we are using it on all operating systems you mentioned. Win98 does
not have all features, like the directory watcher, but that was the only one
I used so far not included (check your documentation for classes not
supported by Win98).

"Marcus Clark" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> I am currently in the process of evaluating the C# and VB.NET portions
> of the latest release of Visual Studio 2003 .NET (I have already
> written a few production apps using VC++ 7 that DOES NOT target the
> framework. What I would like to know is if anyone has successfully
> (or NOT) written an installable .NET application using either C# or
> VB.NET (or both) targeting a variety of OS's (XP, 2000, and possibly
> NT4 and 98) without considerable pain. I have search many post and
> have only found post discouraging such solutions.
>
> Any success stories??
>
> Any stop signs besides the obvious one of needing to have the
> Framework installed on the client machines??
>
> Any Products in any markets currently being developed and sold as a
> completely .net solution??
>
> Any comments would be appreciated!!!



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
In cutom form "To" and "CC" fields get shrink umasgade@gmail.com Microsoft Outlook VBA Programming 0 8th Sep 2008 08:32 AM
Grow/shrink animation - how can I get it something to "shrink"? =?Utf-8?B?bGlsbGllX25fQ0xD?= Microsoft Powerpoint 4 12th May 2006 12:16 AM
Icon for "Wrap" and for "Centre Across Selection" =?Utf-8?B?QmVTbWFydA==?= Microsoft Excel Worksheet Functions 2 16th Nov 2005 06:44 PM
How do I "Wrap Text" & "Autofit" within Merged Cells in Excel? =?Utf-8?B?Ni1zaG9vdGVy?= Microsoft Excel Worksheet Functions 3 31st Oct 2004 12:14 AM
Applications Shutdown with "c0000006 (in page io error)" or "c0000005 (access v" Mike Wolfe Microsoft Windows 2000 Terminal Server Applications 1 16th Dec 2003 09:30 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:35 AM.