|
Here is a scenario: User installs .NET application that you have made. After some time, you find a security issue in it and create a patch for it. When pathc is ready, you post it "somewhere", and when next Windows update is run on user's machine (automatically...
Started by vucetica on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
YouAs far as I know, the Windows Update feature is only for Microsoft supplied software and updates on Microsoft update....
You can't, as others said.
NET Reflector implemented their auto-update feature.
Paint .NET or.
|
|
How to auto scroll down in ListView control when update new item?
listView1.Focus(); listView1.Items[listView1.Items.Count - 1].Selected = true;
?
but this not working.
Started by monkey_boys on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Try
listView1.Items[listView1.Items.Count - 1].EnsureVisible();
maybe
listView1.Items[listView1.Items.Count - 1].Selected = false; listView1.Items[listView1.Items.Count - 1].Selected = true; .
|
|
Hello,
I am trying to auto update my current application to new application in windows desktop using win32 api . And my application is running in background. so is there any api Microsoft providing for auto updating application or is there any procedure...
Started by KamalBhr on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Alternative, download the update packet to a directory.
To overwrite it whilst the application is running.
|
Ask your Facebook Friends
|
When creating an auto updating feature for a .net winforms application, how does it update the .dll's and not effect the currently running application? Since the application is running during the update process, won't their be a lock on the .dll's (because...
Started by AnonymousCow on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Always keeping a last known working version on the side so that the user can revert to something that ... .
Then shutdown and restart and at startup you look for and use the new files if found .
Usually you would download the new files into a separate area .
|
|
We are in a process of developing a really complex system consisting of several WCF services, ASP.NET MVC applications, administration tools (Windows Forms apps)... Some of those, will have instances running on several servers. We are looking for a good...
Started by vucetica on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
AppLife Update can quickly and easily add auto update functionality for your .NET apps but is also a handful of....
Of auto-update:
Have an installer Check the new version (simple WebClient and compare numbers with your.
|
|
I am re-writing and/or consolidating a bunch of my "app framework" classes (basic mainform, about box, locking routines & purchase linking, auto-update, datamodule initializer, etc) -- Basically, I have a number of small potential shareware apps that ...
Started by Jamo on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
So there's some.
The update builder tool isn't really good for that.
TMS libraries, text files, etc.
Of the auto-update issue is the tools that you will need to create the update "package" at your end.
|
|
I've created an auto-updating application which is distributed to 100s of users.
The auto-update utility is being flagged by 55% of antiviruses on virustotal ( link ).
My application was created in Delphi 7. Most of the flags are saying that this is Generic...
Started by Mikey on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
A) Submit your auto-update program as a false positive to all those companies, (and do so for any new.
|
|
We need to distribute documents to our partners on a USB key. I've been asked to develop a piece of software that will check if some documents have been updated on the server and proceed with the synchronization of files on the memory stick.
The software...
Started by Max on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
The auto-update feature will be a pain no matter what language you use, given that a running EXE file can't be updated on the fly, but you're still....
Otherwise I'd use Delphi, which can create native executables easily .
Net installed.
|
|
Hi gents, I've been thinking of rolling my own code for enabling my Delphi application to update seamlessly as I'll be going for "release often, release early" mentality furthermore. There are various Delphi solutions both freeware or paid out there and...
Started by utku_karatas on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
You can no longer simply....
If newer files directories.
So I've added a routine to clear the auto-update server address from cache first to ensure solution, which was pretty standard:
Get xml (or any other format) with update info.
|
|
I've decided to add auto-update functionality to one of my applications and was looking for any existing solutions that compare the current running version with the latest version that is then downloaded from the web.
I know Sparkle on Mac OSX which is...
Started by fhe on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
AbstractSpoon uses "Software Update Wizard" from here for their awesome ToDoList MFC.
For a solution....
|