Updating can refer to the modification of data or configuration by an application, process, or service, or can refer to the modification of software by a process.
Questions tagged [updating]
1058 questions
0
votes
2 answers
Java updating large binary file
So im developing Android app, sort of a book reader. The books are stored as a 500mb+ binary files with certain objects stored in it, and in a tiny binary file that contains mappings to particular objects in the big file. I need to find most…

Maciej Boguta
- 1,354
- 1
- 12
- 15
0
votes
1 answer
return back to latest opened activity and update it
is there any way to return back to latest opened activity and update it
I use this code to return back :
super.onBackPressed();
but I want to update it, for example adding new elements dynamicaly
I saw the log but I think it doesn't run…

begiPass
- 2,124
- 6
- 36
- 57
0
votes
2 answers
How to update with a button
hi i have a form in my xml with all infos and i wanna create a button to update some elements (one button for one element....)
my code is :
private int id;
private String surnom;
public int getid()
{ return id; }
public void setId(int…

Lapetole
- 1
- 2
0
votes
2 answers
How to receive an app update from Play Store
I have an app that i used to host on a private server and send the link to the new version by using GCM.
I now host the app on the Play Store. When i have an updated version, i increment the version code and publish it to production.
Can anyone…

turtleboy
- 8,210
- 27
- 100
- 199
0
votes
0 answers
mysql update adding row instead of updating
i have a shell script that issues a sql query that will replace a filename in the database with another filename. it also will replace the full path by concatenating the name of the file with the name of the directory stored in a different table. it…

Bobbin Threadbare
- 77
- 3
- 10
0
votes
1 answer
Update user profile picture after upload
I'm using uploadifive to upload picture at user profile page. User opens up the profile page with a photo and upload button. Once user uploads the picture it gets resized and moved to an avatars folders. The pictures are stored as user_id.jpg. If…

user164863
- 580
- 1
- 12
- 29
0
votes
3 answers
Doing an atomic update of the first instance in a QuerySet
I'm working on a system which has to handle a number of race-conditions when serving jobs to a number of worker-machines.
The clients would query the system for jobs with status='0' (ToDo), then, in an atomic way, update the 'oldest' row with…

Paddie
- 611
- 1
- 8
- 15
0
votes
1 answer
Refreshing existing notifications automatically
I try to make my notification(from Service) updating or refreshing in every five minutes. How can I do this? This is, what i want to update.
if (...){
int icon = R.drawable.updatedImage1;
long when =…

Borys Zielonka
- 287
- 2
- 6
- 20
0
votes
1 answer
Dependency Property not updating
I'm trying to add parameters to my custom validation rule. For this I defined a dependency object like this:
public class SettingsValueValidationDependencyObject : DependencyObject
{
public Custom.ValueType ValueTypeForValidation
{
…
user2968128
0
votes
3 answers
Looking for an HTML editor/workflow that updates as you code
Just type in the editor and the browsers update as you go. No need to save or switch to the browsers and back.
Any suggestions?
Thanx

user1933275
- 481
- 1
- 5
- 9
0
votes
1 answer
Can't get TextBox to update OnPropertyChanged from string
After having used this site for a long time I finally decided a problem I keep encountering and that drives me crazy. I have been using a WPF TextBox to display progress for the program I'm writing, and as such I have bound it to a custom Log.…

Voidpaw
- 910
- 1
- 5
- 18
0
votes
0 answers
Update a nth field in collection(Mongodb)
I seach a way to update a field(nth) from a document in my collection.
HERE IS MY COLLECTION FORMAT:
{
"_id" : ObjectId("526d498270c68c341b000000"),
"login" : "testLogin",
"name" : "testname",
"email" :…

user222914
- 75
- 1
- 10
0
votes
1 answer
Knockout.js computed value not updating the UI
I have a loop that changes a Knockout observable variable which is used in a computed variable. I have a span that's binded to that computed variable. When I run it, the UI of that span doesn't change. Integer values are being posted to the console,…

user2653364
- 115
- 2
- 8
0
votes
1 answer
Custom Django Form Not Saving
I am trying to use customize the output of my form by this method. For example:
{{ form.message.errors }}
{{ form.message }}
If I render the form as…
Nick B
- 9,267
- 17
- 64
- 105
0
votes
2 answers
Why isn't update the file?
I got this function:
def restapuntos(precio, usuario ,saladondeocurre):
print("Function started")
data = []
with open("listas\estadisticas\Trivial-"+saladondeocurre+".txt", "r+") as f:
for line in f:
data_line =…

Saelyth
- 1,694
- 2
- 25
- 42