0
votes
2answers
22 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 BaseCompo …
0
votes
1answer
22 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' …
0
votes
2answers
17 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 applicat …
0
votes
1answer
26 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 P …
0
votes
1answer
14 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
39 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 …
0
votes
1answer
23 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( …
2
votes
4answers
55 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 t …
0
votes
1answer
36 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 …
2
votes
3answers
73 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 embedd …
0
votes
3answers
30 views
WPF - Problems overwriting (re-saving) image when it was set as image source.
Good day all,
I am having some trouble with image permissions.
I am loading an image from file, resizing it and then saving it out to another folder.
I am then displaying this li …
1
vote
2answers
56 views
XmlDocument class is removing formatting, c#, .NET
Hi, i was wondering if anyone knows how to stop xmldocument.Save() from reformatting the document.
Its not that the document is not formatted correctly with respect to XML, the pa …
1
vote
4answers
100 views
Python: saving output of a for loop to file
Hi,
I have opened a file with blast results and printed out the hits in fasta format to the screen.
the code looks like this:
result_handle = open("/Users/jonbra/Desktop/my_bla …
1
vote
1answer
22 views
in Django admin how can I know a boolean is set true for the first time only
I have a model that contains a boolean field representing the item's approval or not.
I'd like to send an email when the box is checked.
I understand how to override the save meth …
0
votes
1answer
58 views
cakephp save returns true but does not save
Hi,
CakePHP is driving me nuts!
Here is my code:
if($this->Page->save($datavalue))
{
$this->Session->setFlash('Page content updated successfully.');
}
else
{
$this-& …
