473,769 Members | 8,267 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Tangent Vb.net best ways of doing runtime updates.

Just wanted to get a post out there to get some information on best way to
do .net updates at runtime.

Throw any and all ideas out there please

Thanks

Chris
Nov 21 '05 #1
6 1346
It's probably just me but I'm not at all sure what you are asking. What do
you mean by "do .net updates at runtime"? Could you be a little more
specific? What exactly are you trying to accomplish? Perhaps an example
problem?

"Chris Calzaretta" wrote:
Just wanted to get a post out there to get some information on best way to
do .net updates at runtime.

Throw any and all ideas out there please

Thanks

Chris

Nov 21 '05 #2
No problem at all just doing some application development and need to come
up with a solution to do real time updates.
From what I understand I can do a realtime update whilee running the
application.

Just looking for ideas and expences with doing real time updpates.

"ocertain" <oc******@discu ssions.microsof t.com> wrote in message
news:DE******** *************** ***********@mic rosoft.com...
It's probably just me but I'm not at all sure what you are asking. What
do
you mean by "do .net updates at runtime"? Could you be a little more
specific? What exactly are you trying to accomplish? Perhaps an example
problem?

"Chris Calzaretta" wrote:
Just wanted to get a post out there to get some information on best way
to
do .net updates at runtime.

Throw any and all ideas out there please

Thanks

Chris

Nov 21 '05 #3
A realtime update could be something like this:

Me.Button1.Text = "Click Me Again"

Is this what you have in mind?

"Chris Calzaretta" wrote:
No problem at all just doing some application development and need to come
up with a solution to do real time updates.
From what I understand I can do a realtime update whilee running the
application.

Just looking for ideas and expences with doing real time updpates.

"ocertain" <oc******@discu ssions.microsof t.com> wrote in message
news:DE******** *************** ***********@mic rosoft.com...
It's probably just me but I'm not at all sure what you are asking. What
do
you mean by "do .net updates at runtime"? Could you be a little more
specific? What exactly are you trying to accomplish? Perhaps an example
problem?

"Chris Calzaretta" wrote:
Just wanted to get a post out there to get some information on best way
to
do .net updates at runtime.

Throw any and all ideas out there please

Thanks

Chris


Nov 21 '05 #4
No i have an
dim obj as object <--- object that i have created<-- windows control
Now a realtime update

obj = new object.<-- the object was just downloaded and recompiled

"ocertain" <oc******@discu ssions.microsof t.com> wrote in message
news:D9******** *************** ***********@mic rosoft.com...
A realtime update could be something like this:

Me.Button1.Text = "Click Me Again"

Is this what you have in mind?

"Chris Calzaretta" wrote:
No problem at all just doing some application development and need to
come
up with a solution to do real time updates.
From what I understand I can do a realtime update whilee running the
application.

Just looking for ideas and expences with doing real time updpates.

"ocertain" <oc******@discu ssions.microsof t.com> wrote in message
news:DE******** *************** ***********@mic rosoft.com...
> It's probably just me but I'm not at all sure what you are asking.
> What
> do
> you mean by "do .net updates at runtime"? Could you be a little more
> specific? What exactly are you trying to accomplish? Perhaps an example
> problem?
>
> "Chris Calzaretta" wrote:
>
>> Just wanted to get a post out there to get some information on best
>> way
>> to
>> do .net updates at runtime.
>>
>> Throw any and all ideas out there please
>>
>> Thanks
>>
>> Chris
>>
>>
>>


Nov 21 '05 #5
Are you looking for how to instantiate the object you just downloaded?
Or are you looking for a way to actually do the download?

Brian Swanson

"Chris Calzaretta" <cc*********@ho tmail.com> wrote in message
news:cc******** *@hotmail.com:
No i have an
dim obj as object <--- object that i have created<-- windows control
Now a realtime update

obj = new object.<-- the object was just downloaded and recompiled


Nov 21 '05 #6
"Chris Calzaretta" <cc*********@ho tmail.com> wrote in message
news:eL******** ******@TK2MSFTN GP10.phx.gbl...
No i have an
dim obj as object <--- object that i have created<-- windows control

Now a realtime update
obj = new object.<-- the object was just downloaded and recompiled


I /think/ you need to [manually] load the Assembly that contains your
new control(s), then use

Activator.Creat eInstance

to create an instance of one of your classes.

Never tried it and, to be honest, it sounds pretty /scary/ ...

Regards,
Phill W.
Nov 21 '05 #7

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

Similar topics

6
2237
by: a-ok | last post by:
Hi, My client has a product database od around 20000 items. And it is updated every few days when he gets a catalog from the supplier. It's supposed to work like this: if there already is a product in the database with that ID (primary key), just UPDATE the price, and if there is no product with that ID it should do an INSERT for that item. Now I've tried it in several ways and I can't seem to get it to execute
2
11110
by: Hal Vaughan | last post by:
My program can, when directed, check a floppy for updates, verify the MD5 sums from another source, then copy the new Java classes to its own directory tree. Once it does this, I'd like to restart the program so the changes take effect. What's the best way to do this? I figure if I call the program's main class, it will run, but then I'll have 2 instances (the original and the one that's upgraded) running -- plus I'm not sure if the...
136
9447
by: Matt Kruse | last post by:
http://www.JavascriptToolbox.com/bestpractices/ I started writing this up as a guide for some people who were looking for general tips on how to do things the 'right way' with Javascript. Their code was littered with document.all and eval, for example, and I wanted to create a practical list of best practices that they could easily put to use. The above URL is version 1.0 (draft) that resulted. IMO, it is not a replacement for the FAQ,...
10
2810
by: DaveDiego | last post by:
I've had a user delete one of the client records, I do have a version of the DB with all records intact before the deletion occured. Whats the best approach to getting all the related records in each of the tables? I have about 12 tables to put data back into and multiple records for each. Would I need to make an append or update query for each table?
2
1327
by: j.mandala | last post by:
Various versions of my app have been in use for the last 5 years or so (in Access 97, 2K and XP editions). To upgrade the back end for people I have to add fields to some tables, some new indexes, and a few tables. I have been looking at the dbUpgrader demo (the ActiveX device), but have not been able to get it to work. Before I spend a lot of time on this I was wondering if anyone had any suggestions on whether this is worthwhile or if...
1
2488
by: msnews.microsoft.com | last post by:
I'd like to hear your thoughts on best methods for populating drop down list controls. I have states and countries drop down lists that don't change often, so naturally I "hard code" them in the aspx page. But the problem is these tend to really slow the development -- it takes up to 15 seconds for the page to come up in VS.NET design environment, so I'm thinking about taking these out and populating the controls dynamically using the...
10
3482
by: jojobar | last post by:
Hello, I am trying to use vs.net 2005 to migrate a project originally in vs.net 2003. I started with creation of a "web site", and then created folders for each component of the site. I read somewhere that each folder under the "web site" is compiled in separate assembly. I however, did not find that the "web site" creation in vs.net 2005 created any AssemblyInfo.cs file.
5
1736
by: csgraham74 | last post by:
Hi guys, Basically i have been developing in dotnet for a couple of years but ive had a few issues in regards to error handling. For example - I have a class that i call passing in a stored procedure and connection string as a path. My method returns a dataset. In my SP i have an output parameter which tells me whether the SP select is successful or not. If i get a error code passed back then i throw an exception this then returns...
2
2668
by: Ashley | last post by:
hey, what's up............................. "Neil" <nospam@nospam.netwrote in message news:8YFwj.10509$0o7.1113@newssvr13.news.prodigy.net...
0
9589
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
9423
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
10216
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
9865
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
6675
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();...
0
5310
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
5448
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3965
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
3565
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.