Auto-updating is software functionality that allows a program to maintain whether it or the supporting data is up-to-date in an automatic fashion.
Questions tagged [auto-update]
1377 questions
0
votes
1 answer
Auto update C# listbox
I want to run a background worker to update a listbox with values from a mssql database. I came out with this :
public frmMain() {
InitializeComponent();
bw.DoWork += new DoWorkEventHandler(bw_DoWork);
}
…

sebastian.roibu
- 2,579
- 7
- 37
- 59
0
votes
1 answer
How to load content from third party site, and from where?
I am developing a jobsite. I like to load career advice from anywhere (like blog, other sites, rss, etc.), and it should be updated automatically if there is a change in source.
How can I achieve this, and from where I can get the required content?

Sensa
- 383
- 3
- 6
- 20
0
votes
1 answer
Update several Eclipse-RCP applications using p2
I have to prepare PCs for offline use.
I'm looking for a solution to update several different Eclipse-RCP applications on a PC from a central p2 repository without starting each application manually.
The idea is to provide a tool similar to "Apple…

Marc
- 37
- 4
0
votes
2 answers
Google Maps Marker Icon Auto Changing
I need to automatically change Google Maps marker icons based on the inner content of an automatically updating DOM element.
I've looked at the documentation for addListener and addDomListener, but it's all mouseovers and clicks and stuff. I need it…

InterfaceGuy
- 139
- 2
- 14
0
votes
1 answer
VB.Net - Automatic Update to the User
I am designing an Windows application in Vb.net. When ever I run the application it needs to check the current time and remind me some tasks which I have defined. In what way can I do this.

Harish
- 169
- 3
- 5
- 11
0
votes
1 answer
PHP / MySQL stand-alone installer/updater script?
I'm looking for a script that will quickly implement package install/update functionality for my framework. It should be able to do the following things:
Must be PHP 5 compatible.
Should be able to install and update components' files and database…

Beanow
- 1,089
- 9
- 16
0
votes
1 answer
How to Implement a Homogeneous Tool Update System?
My task is to define and implement a homogeneous update system for all tools of a big organization.
The various tools have grown over many years and are implemented in many different technologies and languages.
For the Eclipse/RCP based tools the…

Marc
- 37
- 4
-1
votes
1 answer
Search query> Populate Dropdown field
I had a search field for searching some client list from database. I had implemented auto complete in that search. Now i need to remove this auto complete and replace it with one drop down box. when i pass a search query in search field; the result…

spider
- 320
- 1
- 2
- 10
-1
votes
1 answer
Auto-update feature for wpf application
I am trying to do auto-update process. I having my updated version exe in my GitHub When I start the lower version exe from my local machine. It really want me ask me for update. That updated should be check from the GitHub updated exe. Consider my…

Bruse
- 7
- 3
-1
votes
1 answer
Python "do...until" iteration until a condition is met with function updating
I have a general question about the "do...until" iteration until a condition is met.
Let's say that I have a variable x, y and z, where:
x0 = function(y0)
I ran the code, and from the function, I got a value x0 from an inputted variable value…

bennu777
- 3
- 1
-1
votes
1 answer
Need to share a copy of my functioning Google Sheet file, which auto updates every 4 hours via an API source, but the copy fails to auto update
I currently have a perfectly operational Google Sheet file which auto-updates from an online source via an API every 4 hours and I'm very happy with its current operation.
However I need to move the Sheet to a different Google Workspace account in…

Splash
- 1
- 1
-1
votes
1 answer
how to block "microsoft edge webview2 runtime" auto updates
I have a program that installs "microsoft edge webview2 runtime" for proper functionality.
If i uninstall it, program stop working.
The problem is: sometimes "microsoft edge webview2 runtime" updates it self and some times it crushed while PC.
The…

rm1991
- 33
- 1
- 7
-1
votes
1 answer
Value if condition is met in SQL
In SQL server, how can I affect a value to an attribute given a condition, and check the condition everyday?
Let's say an order was recorded on a certain date. According to my business rule the delivery should be made no later than 10 days after the…
-1
votes
2 answers
How to update UI in a Flutter app with new daily content?
It is a simple app with a few pages. I just need to update one page daily with new content(text to be precise).
In a way that the user does not need to update the app on the Play Store, but simply when he opens the app to see the new content that i…

stanojkowski
- 21
- 2
-1
votes
1 answer
EDITED: auto update timestamp every second in postgres
I have a column local_date_time (timestamp withhout time zone) in postgres DB and that needs to be auto updated every second based on speed like 1x, 2x(Increment by 2 Seconds for each 1 sec in real time) and so on.
Suggest ways to do it within…

mdharaas
- 1
- 2