is a piece of software designed to update a computer program or its supporting data

learn more… | top users | synonyms

0
votes
0answers
6 views

automatic update of google calendar

I want to automatically update my google calendar using spreadsheet. This is my program function onOpen() { var ss = SpreadsheetApp.getActiveSpreadsheet(); var menuEntries = [ {name: "Update", ...
0
votes
0answers
23 views

How to make hibernate not to update XMLType column after query

When I use hibernate to query a ORM mapping object, It always update the object to database immediately.I've check this problem, and find it was caused by a mapping property 'appliedTestConfig'. When ...
0
votes
0answers
9 views

Real time memcache update

I need to update memcache on real time. My database is MySQL. Currently I am using cron to do this. Time interval to run cron is 5 mins, due to server constraints I can not decrease its timing. One ...
0
votes
3answers
60 views

C++ background update

It's way to call update function on background? I need update collection every 5 seconds. In C# I create timer set start stop and delegate and it work. Exist any way do it in C++?
1
vote
1answer
40 views

How to restart java web start application programatically

I am trying to achieve the automatic update for my java web-start applicaiton. Logic: I am fetching the jnlp file from the server and comparing the timestamp with the current one. if there is ...
-1
votes
2answers
61 views

How can I create an updater for java desktop application [closed]

I want to add a function to my java desktop application(Swing application) which checks for the update from remote location and if it has an update available, my application should update itself ...
0
votes
2answers
24 views

Propagate auto updates to multiple joomla sites

This is the idea: I have multiple sites done in Joomla 2.5.9, then I looking for a way to automatically update all sites at one time. So, I will test in my dev machine if the update runs well, then I ...
0
votes
0answers
12 views

Doctrine object autoupdate triggered on calling its getter - what's “legal” to do?

In a table A I have a coulumn A.count that counts entries in table B that are related to a particular A's row. A.updateDate keeps timestamp of last A.count update. The idea of A's entity's getCount ...
0
votes
0answers
22 views

ajax update a div content which contains a php code include rss.php file

am creating a php website and iam geeting the rss of another website i want to update the rss every second with an ajax codee here is my website example code : <?php $rss = new DOMDocument(); ...
0
votes
2answers
33 views

I'm going to be auto aupdating info from mysql. How do i get the past info to keep displaying along with the new info submitted into the database?

I've figured out how to display info submitted into mysql, but I haven't figured out how to keep the past info there. It's going to show the current post on top and keep adding on top everytime new ...
0
votes
2answers
24 views

Add librarys to jar

I have made a program and I want to release it but I have 5-6 HTTP librarys(.jar) for update checks how can I get them together to a single file? Ive tried eclipse fat jar maker but it doesnt work ...
1
vote
1answer
30 views

install4j - file with update placed in my local directory

Could you please help me with next problem. I have stanalone GUI application and in the local directory I have file with update. How I can configure my install4j updater, that it do not download ...
0
votes
2answers
63 views

Automatically drag formula in Google spreadsheet columns

I've a Google spreadsheet to which data is added from a fusion table using the script given in this github link. I added two more columns at the right end of the spreadsheet in which one is filled ...
-4
votes
1answer
33 views

how to update multple rows in mysql with php [closed]

i have a table like this id | website | ping | online | ------------------------------- 1 |xxxx.com | 30 | 1 ------------------------------- 4 |xxxx.com | 46 | 1 ...
0
votes
0answers
27 views

Auto Update my WPF application using System Center 2012 Configuration Manager

Has anyone used System Center 2012 Configuration Manager for implementing version Auto Update functionality into your .NET application? Is it easy to use? I've looked into clickonce as well but it ...
-1
votes
2answers
50 views

Updating a variable without page refresh (JavaScript)

Okay, I'm pretty new to the JavaScript stuff, and I would like some help. The variable that needs to be auto-refreshed: var width = document.body.clientWidth; So basically, I want to do different ...
-1
votes
1answer
71 views

java.lang.NullPointerException on fast update of JList

This would be my first question on StackOverflow, but certainly not the first time it's been helpful. However I didn't get any further trying the different possible solutions I found until now. I'm ...
0
votes
1answer
91 views

Auto update java application

I am building Java application that will be downloaded for free from the web. I want to add an auto update feature in case of fixing bugs or enhancing the application. For auto update I split my ...
1
vote
3answers
101 views

C# Check if textbox == textbox

Why does this not work : if (This_Ver.Text == New_Ver.Text) { MAIN_PANEL.Visible = true; } else if (This_Ver.Text != New_Ver.Text) ...
0
votes
1answer
23 views

Is there a way to force install4j auto updater to update the current version?

I've been iterating versions of my application trough beta and install4j auto-updater was updating successfully trough versions (2.1 -> 3.0b0 -> 3.0b1 -> 3.0b2). Now I've published version 3.0 and ...
0
votes
1answer
74 views

Android: Toggle button doesnt update

I'm having some problems trying to set togglebutton (LeftLightButton) state and text after receiving value 1 at novo.charAt(0) for example. The main idea is, i click the button, it makes ...
4
votes
2answers
224 views

Phonegap Android app trigger update programmatically

I am building an Android app that is hosted on a server outside Google Play. I need the app to check for new version and prompt user to update when the app starts. I built a mechanism to check for ...
0
votes
0answers
61 views

Auto update in Spring mvc

I am working on one project where I need to implement auto update feature. When new message are added in the DB, the client for which the message is, should get that message. Here is my project ...
1
vote
2answers
85 views

adding jtextfield automatically record from corresponding jtextfield value [closed]

my question is when i insert the first name in jtextfield then corresponding last name of this record show automatically in another jtextfield? it means i dont want insert same data again and ...
0
votes
1answer
38 views

How to AutoUpdate as each day passes a conditional format based on date?

I'm new to writing VBA code but have managed to struggle along for the past couple of weeks. I have created a code for a worksheet change event that highlights certain dates input within particular ...
0
votes
1answer
64 views

Button that update my application without play store

i've make an application with 10 fragment with tableLayout.. I would like a button that update all the layout without having to update the application each time the play store.. is it possible? thanks ...
9
votes
5answers
149 views

Apply update without restarting application [closed]

Recently I had an interview for a .NET position. Out of questions asked, I was having real trouble in answering one question. I hope someone can help me on this. Scenario (Question): The first ...
0
votes
0answers
55 views

Hi I am trying to create a time stamp when a Google spreadsheet cell is automatically populated from a different program

I am running a program that integrates with Google spreadsheets and automatically updates columns with information. It updates the cell fine, but I need to add a date stamp once (and only after) the ...
0
votes
0answers
29 views

Avoid virus warning while updating VB.net application from website

I have a desktop application (VB.net) which checks for updates while starting and if an updated file is available on my website, it downloads to the user's computer (of course if user has turned on ...
1
vote
2answers
140 views

Auto-restart app after market update

Anytime I publish a new version of my app in the Market, if the user had enabled the "auto update" option, the app will be updated automatically. The app contains a service that runs constantly. But ...
0
votes
2answers
300 views

AJAX update for Spring <form:select> element

I'm using Spring MVC for a project. In it, on a particular page, I'm using the Spring form tags to display an ArrayList added to the model in the controller as below: <form:select ...
1
vote
1answer
35 views

How to realize the “cp -u” function in a clearcase vob?

We have two vobs which are "voba" and "vobb". And there is a directory "abc" in both vob and contains the same .h / .cpp files. Usually, the files in "abc" dir in "voba" are updated quite frequently. ...
0
votes
2answers
76 views

C# - ClickOnce - Auto update feature in a local file.

I have a click-once application. The output of this application is a file (with custom extension. for example .xyz). Auto-update facility is available only when I access this application thru the ...
0
votes
1answer
107 views

Downloading a file over HTTP or FTP on Windows Mobile 5.0 and Windows CE 6.0

What kind of library or namespace provides an ability to download a file over HTTP or FTP on Windows Mobile (WM) 5.0 and Windows CE (Win CE) 6.0? I am planning to develop an auto-updater within WM ...
-2
votes
1answer
20 views

Create a batch to update a file - right click to update [closed]

I'd like to create a batch file to make automatically the following action: right-click on a file and then select update. This is a file that needs to be updated daily and someday you could forget... ...
0
votes
2answers
103 views

Is it possible to update an android app while it is running and then reload it again

This question might have been asked earlier, but could not get any clear answer. I basically do not want and client interactions with the updates and other stuff, all they can see is the app running ...
2
votes
3answers
132 views

Updating App Resources from server in iOS

I am developing an application which have some pre loaded app resources that can be changed dynamically by user or admin, I have to put these app resources in document directory of my app so that it ...
0
votes
1answer
213 views

Java 7 JDK auto update [closed]

Is there a way to set Java 7 so it will update automatically? I using JDK Standard edition on windows 7, 64bit. Java 6 would check for updates automatically and prompt you to install them. However, ...
0
votes
2answers
84 views

How to update a jLabel in a while loop

How do i update a jLabel in a while loop? My understanding is to use a javax.swing.timer however i dont quite understand it because i need an action performed as well, now this is in a while loop that ...
0
votes
0answers
39 views

Update own application from FTP [closed]

I have an android application that should some way update itself from FTP-server. Please, give me an advice where to look about: 1-working with ftp, 2-uploading files from it, 3 (main thing)-update ...
2
votes
1answer
202 views

Why isn't my Greasemonkey script updating?

I've got a Greasemonkey script for Firefox. The script includes this meta-block and some lines of code. I want to update my script on the server and then automatically update the browser's scripts. ...
0
votes
0answers
11 views

Example of using AppLifeUpdate WebUpdateController to update an asp.net silently?

I have an asp.net site which has to be auto-updated silently, without user interaction. We (the developers) must not have any access to the production machine We (the developers) will build an ...
0
votes
1answer
15 views

Unified technology for software update

It is cumbersome to update different kinds of software one by one. In my case, For the Ubuntu Linux OS, I periodically do apt-get update and apt-get upgrade or apt-get dist-upgrade (this part can be ...
0
votes
2answers
40 views

Install4j - Batch updating

By default, install4j auto-update functionality allows to download updates one-by-one. I want the user to be able to download all available updates in the background and batch-install all of them in ...
0
votes
1answer
46 views

Name Not Found Even if Exists in the JSON file Updated

There is a runtime error which keeps telling me that the name have not been found. Take a look at this error: Exception in thread "LWJGL Application" com.badlogic.gdx.utils.GdxRuntimeException: ...
1
vote
2answers
223 views

game client updater

I'm a MMORPG Private Server dev and I'm looking forward to create an all in one updater for the user's clients because it is very annoying and lame to use patches that must be manually downloaded. ...
0
votes
0answers
81 views

Count number of updated likes on a URL

It seems that FB Graph API only allows you to get the number of Likes + Shares + Comments for a particular URL. Also it appears that this number is not updated - so if someone clicked Like and then ...
3
votes
1answer
178 views

MS Access Form field with sum control source on update

I have a form in MS Access which has 3 input fields ([Day1], [Day2], and [Day3]), and one field ([Total]) which shows the total of these three fields, by using ControlSource=[Day1]+[Day2]+[Day3]. ...
0
votes
1answer
88 views

Auto-Update table cell based on user input in Javascript

I'm trying to auto-update a table cell based on changes in another table cell. The user has a firstname, lastname and username. The username consists of first initial + lastname. My current code is: ...
-3
votes
1answer
60 views

Check for software updates in Java [closed]

I want to know how does a program or software built in Java check for updates on the internet. Can anyone help this? Give an example if possible! I want to know the Java code for checking updates ...

1 2 3 4 5 8