0
votes
0answers
1 views
UIImageView: Rotated and Scaled. How do I save the results ??
Hi All,
I am trying to save a rotated and scaled UIImageView as an UIImage in the position and with the zoom scale that the user edited too. But I can only manage to save the original image as it was …
1
vote
4answers
74 views
“Remember password” option [C#]
Hi, i need to implement a "Remember password" option in my program, it works with client-server protocols that REQUIRE the entire password to be passed in the loggin process, not only Hashes, so i …
0
votes
3answers
56 views
Django Dynamic Forms Save
I am using James Bennetts code (link text) to create a dynamic form. Everything is working ok but I have now come to the point where I need to save the data and have become a bit stuck. I know I can …
0
votes
3answers
36 views
How to save data in NSUserDefaults even if app will be deleted?
I save some strings and numbers to NSUSerDefault,
but when I uninstall and reinstall the app the data is ereased.
Is there a possibility to store data some where else? Maybe in keychain?
0
votes
2answers
16 views
Hibernate saveOrUpdate fails when I execute it on empty table.
I'm try to insert or update db record with following code:
Category category = new Category();
category.setName('catName');
category.setId(1L);
categoryDao.saveOrUpdate(category);
When there is a …
0
votes
3answers
27 views
Save/Load Properties to file or databse provider
I need to save and load properties of a Class dynamicly,
but what is the best practis for this ?
I have for now, two classes that I need to save.
public abstract class BaseComponent {
protected …
0
votes
1answer
39 views
HABTM data not saving (cakephp).
Hello,
I have two models related HABTM (documents and people).
class Person extends AppModel {
var $name = 'Person';
var $hasAndBelongsToMany = array(
'Document' => array(
…
0
votes
2answers
18 views
Flash - Why doesn’t my SharedObject get saved on disk when closing IE?
I have a Flash application that uses SharedObject to save and read some data locally. As it is said everywhere Flash saves the data from the shared object to disk when the application is closed. And …
0
votes
1answer
30 views
ModelForm save fails
Hi,
I am trying to save a modelform that represents a bank account but I keep getting a ValueError even though the form appears to validate. The models I have to use are:
class Person(models.Model):
…
0
votes
1answer
15 views
stop 2nd question after save to XML format?
How can i get my Excel xls file that is password protected to stop asking me if i want to convert it to an XML file format?
0
votes
1answer
44 views
How can I tell if I’m in beforeSave from an edit or a create? CakePHP
Hello,
I have a model where I need to do some processing before saving (or in certain cases with an edit) but not usually when simply editing. In fact, if I do the processing on most edits, the …
0
votes
1answer
33 views
flash write ByteArray to file on the disk
Hi!
I need to write a ByteArray to a file on local disk with Flash AS3. The flashapplication is run locally (it's a projector exe).
I found the FileReference class with the save() function which …
2
votes
4answers
57 views
save variable as txt but not in the server
how can i save some variables in a txt file for the user?
dont want to generate and store in my server, just want to generate and then the user save on his pc, nothing changes on the server
btw, is …
2
votes
3answers
78 views
How do I save a web page, programatically?
I would like to save a web page programmatically.
I don't mean merely save the HTML. I would also like automatically to store all associated files (images, CSS files, maybe embedded SWF, etc), and …
0
votes
1answer
37 views
Rails botches the SQL on a complex save
Hi, I am doing something seemingly pretty easy, but Rails is messing up the SQL. I could just execute my own SQL, but the framework should be able to handle this.
Here is the save I am trying to …
