Questions tagged [updating]

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.

1058 questions
3
votes
1 answer

Send user to App Store to update OS X Version

Possible Duplicate: Programmatically open Mac App Store I'm developing a 10.8.0+ OSX App and I need to programmatically show the App Store for the user to update his OS in order to use the Facebook Integration (only if he's not on 10.8.2). How…
Pedro Vieira
  • 3,330
  • 3
  • 41
  • 76
3
votes
3 answers

Alternative way to update status asynchronously than BackgroundWorker

I am working on some software that is making calculations on the server side. I have tried using BackgroundWorker and it was working perfectly fine until I tried switching from fat client to a web service. The error (which I was already expecting…
3
votes
1 answer

How to create Chrome-style program self-updating in Windows?

Google's Chrome browser has a super-slick updating system on Windows. It doesn't require administrative privileges, and it updates in place without requiring user interaction. I'm trying to create something similar to this, and would appreciate any…
3
votes
2 answers

Django syncdb exception after updating to 1.4

So I was developing an app in Django and needed a function from the 1.4 version so I decided to update. But then a weird error appeared when I wanted to do syncdb I am using the new manage.py and as You can see it makes some of the tables but then…
2
votes
1 answer

UIPickerView updating from UISegmentedControl

I'm attempting to update a single UIPickerView with a different NSArray of data based on which Index is selected from a UISegmentedControl. Currently when I change the control the numberOfRowsInComponent does not update, and the titleForRow will…
jcouser
  • 23
  • 4
2
votes
0 answers

HTML5 seekBar not updating after clicked despite updating its value

I've been digging around for a while looking for why the seekBar is not updating after being clicked, and no luck so far. I've been doing this in Chrome because Firefox doesn't natively support the HTML5 audio tag. Here's basically what I've…
David
  • 23
  • 4
2
votes
3 answers

Best way to update multi-gigabyte program (DVD fulfillment? Updater software?)

Two years ago, we shipped a multi-gigabyte Windows application, with lots of video files. Now we're looking to release a significant update, with approximately 1 gigabyte of new and changed data. We're currently looking at DVD fulfillment houses…
emk
  • 60,150
  • 6
  • 45
  • 50
2
votes
2 answers

Objective-C: Redrawing objects on screen

I've got a GameScreen.m file like (this is a simplified piece of the code): - (IBAction) onCellClick:(id) sender { points +=1; self.myScore.text = [[NSNumber numberWithInt: points] stringValue]; //myScore is a label in GameScreenViewController…
Mario
  • 55
  • 8
2
votes
1 answer

OTA data partition

I would like to better understand how OTA works on ESP32. I have read the datasheet but I still have some questions about the OTA data partition: it has a size of 0x2000 bytes being 2 sectors of 4K, my question is how are these bytes filled? The…
2
votes
0 answers

Updating Angular, Error with my dynamically created components. "error NG1010: template must be a string Value is a reference to '"

I've taken over an old Angular project at my work and I'm tasked with upgrading it from version 6 to 14. I've gone one version at a time as recommended by the Angular Update Guide. But now at version 13 I'm stuck at an issue with some dynamically…
2
votes
1 answer

Problems upgrading React Native from 0.66.5 to 0.71.0: > Task :app:createBundleReleaseJsAndAssets FAILED

I'm facing some problems doing the update of ReactNative from 0.66.5 to 0.71.0. Well, you need to solve some issues that I did little by little but now I am stuck with one related to this Gradle task, that I am not able to solve. > Task…
Juan Antonio
  • 2,451
  • 3
  • 24
  • 34
2
votes
1 answer

Updating to Rails 3.1 fails

I just installed OS X Lion with Xcode 4.1. I'm using Ruby 1.9.2 and gems version 1.5.0. When trying to upgrade from Rails 3.0.9 to 3.1, I get the following error: $ ruby -v ruby 1.9.2p0 (2010-08-18 revision 29036) [i386-darwin9.8.0] $ rails…
fullstackplus
  • 1,061
  • 3
  • 17
  • 31
2
votes
2 answers

Idiomatic way to update a Flutter page after data was edited by another page?

In Flutter let a route /a is displayed. Then I press Edit button what pushes route /b. The route /b changes data in the SQLite DB and then I call Navigator.pop so returning to the route /a. Now route /a displays the old (unedited) version of the…
porton
  • 5,214
  • 11
  • 47
  • 95
2
votes
1 answer

JTreeTable updating

I'm trying to use the example taken from the http://java.sun.com/products/jfc/tsc/articles/treetable2/index.html, in which I've substituted the filesystem model with my model. I initially create a model, I display it in the JTreeTable, but now I'd…
marco
  • 295
  • 3
  • 13
2
votes
1 answer

GridView Updating from code behind throwing exception

I have a GridView with a list of clients and their details bound to a Sq1DataSource. I want to update it from code behind thru the RowUpdating event, by accessing data cell by cell and sending it to an Update function in my Client BLL. This is the…
Dov Miller
  • 1,958
  • 5
  • 34
  • 46