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

Home Posts Topics Members FAQ

Managing without .NET for runtime applications

My company produces IP Surviellance softwrae (CCTV, Access control etc) and
one of the features of our software is the ability to produce a CD with all
the images, together with a run time version of the viewer. The intention is
that anyone (the police) can insert the CD into any PC and see the video
sequence.

This all worked OK (ish) in VB6, but we always suffered from data access
components, DLL hell etc. We have now upgraded to VB2005 using .NET 2.0.

The problem is that our CD Viewer requires .NET to be installed on the
target machine and we can't rely on the end user having Internet access, or
Administrator rights, or the ability to pre-install .NET. I was wondering if
there was a way of producing a package with just the elements of .NET that
was being used, so that these could be written to the CD. Any other
thoughts?

-Jerry
Nov 23 '06 #1
6 1079

I have a similar issue ... but the problem is ... once you choose to use
..Net, you are at the mercy of the host PC ... and it MUST have the latest
..Net framework (or relavent .Net framework) installed. Or the user must
have access to and security rights for installing the necessary .Net
Framework.

I have yet to find a work around! >Net works for a controlled environment,
but stinks when you have not control over a target PC ...

"Jerry Spence1" <je**********@s omewhere.comwro te in message
news:45******** **************@ ptn-nntp-reader02.plus.n et...
My company produces IP Surviellance softwrae (CCTV, Access control etc)
and one of the features of our software is the ability to produce a CD
with all the images, together with a run time version of the viewer. The
intention is that anyone (the police) can insert the CD into any PC and
see the video sequence.

This all worked OK (ish) in VB6, but we always suffered from data access
components, DLL hell etc. We have now upgraded to VB2005 using .NET 2.0.

The problem is that our CD Viewer requires .NET to be installed on the
target machine and we can't rely on the end user having Internet access,
or Administrator rights, or the ability to pre-install .NET. I was
wondering if there was a way of producing a package with just the elements
of .NET that was being used, so that these could be written to the CD. Any
other thoughts?

-Jerry

Nov 23 '06 #2

"Jerry Spence1" <je**********@s omewhere.comwro te in message
news:45******** **************@ ptn-nntp-reader02.plus.n et...
My company produces IP Surviellance softwrae (CCTV, Access control etc)
and one of the features of our software is the ability to produce a CD
with all the images, together with a run time version of the viewer. The
intention is that anyone (the police) can insert the CD into any PC and
see the video sequence.

This all worked OK (ish) in VB6, but we always suffered from data access
components, DLL hell etc. We have now upgraded to VB2005 using .NET 2.0.

The problem is that our CD Viewer requires .NET to be installed on the
target machine and we can't rely on the end user having Internet access,
or Administrator rights, or the ability to pre-install .NET. I was
wondering if there was a way of producing a package with just the elements
of .NET that was being used, so that these could be written to the CD. Any
other thoughts?
You can run a little stub program to detect if .NET is installed, if it is
you run as normal, if it isn't you prompt the user to install it (ship the
runtime installer on your CD). If the user is motivated enough to run your
program, he will call his system administrator or make other suitable
arrangements - it takes 5 minutes to install and it's a 1-time thing. Note
that the .NET framework has been available for ages on Windows Update and a
lot of corporates have it installed in one form or another by default.

You might also consider another technology for this, such as a Flash
presentation (if it's just an image viewer) or simple web page.
Nov 23 '06 #3

"Robinson" <to************ ******@myinboxt oomuchtoooften. comwrote in
message news:ek******** ***********@new s.demon.co.uk.. .
>
"Jerry Spence1" <je**********@s omewhere.comwro te in message
news:45******** **************@ ptn-nntp-reader02.plus.n et...
>My company produces IP Surviellance softwrae (CCTV, Access control etc)
and one of the features of our software is the ability to produce a CD
with all the images, together with a run time version of the viewer. The
intention is that anyone (the police) can insert the CD into any PC and
see the video sequence.

This all worked OK (ish) in VB6, but we always suffered from data access
components, DLL hell etc. We have now upgraded to VB2005 using .NET 2.0.

The problem is that our CD Viewer requires .NET to be installed on the
target machine and we can't rely on the end user having Internet access,
or Administrator rights, or the ability to pre-install .NET. I was
wondering if there was a way of producing a package with just the
elements of .NET that was being used, so that these could be written to
the CD. Any other thoughts?

You can run a little stub program to detect if .NET is installed, if it is
you run as normal, if it isn't you prompt the user to install it (ship the
runtime installer on your CD). If the user is motivated enough to run
your program, he will call his system administrator or make other suitable
arrangements - it takes 5 minutes to install and it's a 1-time thing.
Note that the .NET framework has been available for ages on Windows Update
and a lot of corporates have it installed in one form or another by
default.

You might also consider another technology for this, such as a Flash
presentation (if it's just an image viewer) or simple web page.
Bearing in mind the CD could be used on a courtroom PC with no prior notice,
I can not require .NET to be installed. I am starting to find products that
extract the various bits you need from the framework. Typing deploying .net
without framework into google seems to have produced some results.

-Jerry
Nov 23 '06 #4
>
Bearing in mind the CD could be used on a courtroom PC with no prior
notice, I can not require .NET to be installed. I am starting to find
products that extract the various bits you need from the framework. Typing
deploying .net without framework into google seems to have produced some
results.

-Jerry
Sounds rather dodgy to me and not supportable through future versions (I
would assume) if you take it apart DLL by DLL and dump them onto your CD,
not forgetting potentially having to register components..... .. There is a
difference between a framework and a library and .NET is not really a
library in that sense. I would be inclined to use another technology.
Something instantly available, of which there are many possibilities,
including sticking with VB 6, using VC++, Flash, HTML etc. But if you want
to hack .NET apart as the best solution, I would say someone made a bad
decision to build the software with .NET in the first place.

Nov 23 '06 #5
Hey Jerry,

Take a look at Thinstall
http://www.thinstall.com/solutions/net_virtual.php

This might be exactly what you company needs

On Thu, 23 Nov 2006 13:05:12 -0000, "Jerry Spence1"
<je**********@s omewhere.comwro te:
>My company produces IP Surviellance softwrae (CCTV, Access control etc) and
one of the features of our software is the ability to produce a CD with all
the images, together with a run time version of the viewer. The intention is
that anyone (the police) can insert the CD into any PC and see the video
sequence.

This all worked OK (ish) in VB6, but we always suffered from data access
components, DLL hell etc. We have now upgraded to VB2005 using .NET 2.0.

The problem is that our CD Viewer requires .NET to be installed on the
target machine and we can't rely on the end user having Internet access, or
Administrato r rights, or the ability to pre-install .NET. I was wondering if
there was a way of producing a package with just the elements of .NET that
was being used, so that these could be written to the CD. Any other
thoughts?

-Jerry
--

Bits.Bytes.
http://bytes.thinkersroom.com
Nov 23 '06 #6
Yes it is exactily what is needed. However at $4,995 + $39 that can wait!

It did get me searching though and I found www.xenocode.com . I have
evaluated Xenocode Postbuild 2007 Professional and it works a treat. And it
is only $399.

Well happy.

-Jerry

"Rad [Visual C# MVP]" <no****@nospam. comwrote in message
news:v0******** *************** *********@4ax.c om...
Hey Jerry,

Take a look at Thinstall
http://www.thinstall.com/solutions/net_virtual.php

This might be exactly what you company needs

On Thu, 23 Nov 2006 13:05:12 -0000, "Jerry Spence1"
<je**********@s omewhere.comwro te:
>>My company produces IP Surviellance softwrae (CCTV, Access control etc)
and
one of the features of our software is the ability to produce a CD with
all
the images, together with a run time version of the viewer. The intention
is
that anyone (the police) can insert the CD into any PC and see the video
sequence.

This all worked OK (ish) in VB6, but we always suffered from data access
components, DLL hell etc. We have now upgraded to VB2005 using .NET 2.0.

The problem is that our CD Viewer requires .NET to be installed on the
target machine and we can't rely on the end user having Internet access,
or
Administrat or rights, or the ability to pre-install .NET. I was wondering
if
there was a way of producing a package with just the elements of .NET that
was being used, so that these could be written to the CD. Any other
thoughts?

-Jerry
--

Bits.Bytes.
http://bytes.thinkersroom.com

Jan 10 '07 #7

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

Similar topics

5
1737
by: MLH | last post by:
I have little or no knowledge as to how a runtime Access database application might be distributed from a website. I am sure that I'm about to find out. I do have one question for you wizards though... My experience has shown that when I have installed applications from the web, my browser generally asks what I want to do with the file... Do I wanna save it? or Do I wanna run it? The browser generally warns about the dangers of executing...
3
6774
by: Simple Man | last post by:
We have a citrix server that users will be signing into from a remote location. One application is an Access database. Right now, lan users are using the Access 2003 runtime to run these applications. Installing the runtime on the citrix server(s) isn't a big deal. The catch is, I want to install a copy of the full version of Access so that I can sign in and do some developing if I have to. Is it possible to have both the runtime...
8
34623
by: Subra Mallampalli | last post by:
Hi, I am trying to use <runtime> section within the web.config file. However, the contents of the <runtime> section seem to be ignored. What am i missing here? Is <runtime> section not used by web apps? Any help is greatly appreciated. Thanks,
5
1774
by: cyberstrike | last post by:
Hi guys, my company was wondering if it's possible to develop ASP.NET/Webservices easily using a IIS installed on a server instead of installing IIS locally on the development boxes. Can you develop for ASP.NET/Webservices without IIS installed on your local box without having to resort to more difficult debugging or using notepad for development? Thanks for the help!!
1
11128
by: Screenbert | last post by:
After finding nothing anywhere in google I am posting this so everyone can benefit by it. The formating is not pretty since I copied it from my word document, but you should benefit by it. Managing DHCP Servers using C# They said it was impossible. It couldn't be done. But you can in fact manage DHCP servers using C#. This includes creating and deleting Scopes, SuperScopes, Reservations, Exclusions, Options and so forth. Since the dll...
0
12349
by: screenbert | last post by:
Managing DHCP Servers using C# They said it was impossible. It couldn't be done. But you can in fact manage DHCP servers using C#. This includes creating and deleting Scopes, SuperScopes, Reservations, Exclusions, Options and so forth. Since the dll that is used was written several years ago by Microsoft, you cannot manage things on the DNS tab when looking at a reservation and few things such as that however it gives you main things you...
18
22089
by: eliss.carmine | last post by:
Is it possible to simulate a mouse click in the window I made (it's a Form), but not give it focus? I tried using WinAPI's mouseevent and SendMessage of WM_LBUTTONDOWN/WM_LBUTTONUP as suggested by the folks in #winapi on EFnet, but I think those require the window to have focus. Either that, or I'm doing something else wrong. The click actually seems to work once, and then stops working... I have no idea what is the problem actually....
6
4225
by: SMcK | last post by:
I have a PDA-based (Syware Visual CE) database which I need to sync to an Access database. The Access database contains three tables: 1 is the data itself, 2 is a linked table that prefills several fields in the main data table based on the value of one of it's fields, and 3 is table the PDA database creates to sync cases. I've been using Access 2003 until now. I need to be able to distribute the Access database and PDA database to...
2
992
by: PhilTheGap | last post by:
Hi, Is Web Site Administration Tool able to manage web applications remotely? By the way, can we start the WSAT without VS 2008 ? Best regards Philippe
0
8394
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
8306
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
8825
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
8605
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
7327
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...
1
6164
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5632
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
2726
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
2
1955
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.