Tagged Questions
The save tag has no wiki summary.
45
votes
8answers
57k views
Android : Bitmap save to location
I am working on a function to download an image from a web server, redisplay it on the screen, and if the user wishes to keep the image, save it on the SD card in a certain folder. Is there an easy ...
12
votes
1answer
10k views
Disable Save button in WPF if Validation fails
I've adopted what appears to be the standard way of validating textboxes in WPF using the IDataErrorInfo interface and styles as shown below. However, how can I disable the Save button when the page ...
11
votes
2answers
3k views
vim save as file and keep working on original
Whenever I use the :sav command, it saves the file with a new name and keeps the new file open in vim. Is it possible to save the file with a new name but keep the original open for editing?
8
votes
2answers
350 views
Organizing Notebooks & Saving Results in Mathematica
As of now I use 3 Notebook :
Functions
Where I have all the functions I created and call in the other Notebooks.
Transformation
Based on the original data, I compute transformations and add ...
8
votes
2answers
142 views
Is it possible to have vim prevent the saving of a php file that has a parse error?
I use vim and would like it to prevent me from saving php files that has parse errors. If I would like to use for instance "php -l <file>" to achieve this, how would the autocmd in .vimrc look ...
8
votes
2answers
2k views
Determine what attributes were changed in Rails after_save callback?
I'm setting up an after_save callback in my model observer to send a notification only if the model's published attribute was changed from false to true. Since methods such as changed? are only useful ...
8
votes
7answers
2k views
Generate some xml in javascript, prompt user to save it
I'd like to make an XML document in JavaScript then have a save dialog appear.
It's OK if they have to click before the save can occur.
It's *not* OK if I *have* to use IE to achieve this (I don't ...
8
votes
6answers
14k views
Image, saved to sdcard, doesn't appear in Android's Gallery app
I save an image to the sdcard and it doesn't appear in the Gallery application until I pull off the sdcard and return it back.
Do you have any idea why is it so?
Seems like the Gallery application ...
8
votes
7answers
2k views
Saving a TObject to a File
How can one save an Object, in its current state, to a file? So that it can immediately be read and restored with all its variables.
7
votes
1answer
77 views
Script to save matlab figures to a specified directory
Suppose I have several figures open in matlab. I would like some function I can call, e.g save_all_figures_to_directory('dir_name'), that would iterate over all figures and save them to the specified ...
7
votes
3answers
3k views
How To Update EF 4 Entity In ASP.NET MVC 3?
I have 2 projects - a class library containing an EDM Entity Framework model and a seperate ASP.NET MVC project.
I'm having problems with how your suppose to edit and save changes to an entity using ...
7
votes
1answer
415 views
Longevity of using the Delphi text DFM format for my own store and retrieve
Over time I've rolled my own formats for saving and loading object properties but on having to revisit this I'm wondering about using Delphi's own text DFM format. I know tha this is really an ...
7
votes
3answers
3k views
How to store CLLocation using Core Data (iPhone)?
I'm trying to save a location and retrieve the location on a map afterward using Core Location, MapKit and Core Data frameworks.
What I've done is I just made entity named POI and added properties ...
7
votes
8answers
3k views
How to save svg canvas to local filesystem
Is there a way to allow a user, after he has created a vector graph on a javascript svg canvas using a browser, to download this file to their local filesystem?
SVG is a total new field for me so ...
7
votes
7answers
3k views
How to save data with Python?
I am working on a program in Python and want users to be able to save data they are working on. I have looked into cPickle; it seems like it would be a fast and easy way to save data, it seems ...
6
votes
9answers
1k views
Is it possible to intercept a matlab save() bytestream
In matlab it is possible to write matlab objects, or even the entire workspace, to a file using the matlab save() call. I would like to intercept the bytestream and postprocess it before it goes to a ...
6
votes
1answer
464 views
How can I move variables into and out of a structure akin to LOAD and SAVE in MATLAB?
Is there a quick way (i.e. one line) to dump a collection of variables "in" a structure, using the variable names as the structure fields? The "load" function basically does this but saving and ...
6
votes
1answer
2k views
Save UIView's representation to file
What is the easiest way to save UIView's representation to file?
My solution is,
UIGraphicsBeginImageContext(someView.frame.size);
[someView drawRect:someView.frame];
UIImage *image = ...
6
votes
3answers
2k views
Browser event when downloaded file is saved to disk
I have sensitive files to download to users, and each user is permitted to download a given file exactly once. If the download fails, I want to permit the re-download, but not otherwise.
It's not ...
6
votes
3answers
2k views
6
votes
4answers
5k views
save (postgre) sql output to csv file
what is the easiest way to save PL/pgSQL output from a PostgreSQL database to a csv file? I'm using PostgreSQL 8.4 with pgAdmin III and psql plugin where I run queries from...
thanks!
martin
6
votes
2answers
2k views
.NET Saving jpeg with the same quality as it was loaded
I have a cannon digital camera and I set it to take pictures with superfine quality and it outputs a .jpg file 3 mega in size.
If I load it like this in ASP.NET(this is useful to change it's dpi ...
5
votes
1answer
121 views
How to bookmark a webpage in an Android application?
I am developing a Newspaper like application. I'm wondering how to save webpages with the click of a button and display it at a later point in time.
I googled for this in vain. If anyone knows how to ...
5
votes
1answer
67 views
Why does MATLAB save() call saveobj() twice?
I define a MATLAB object class_save_test:
classdef class_save_test
methods
function b=saveobj(a)
fprintf('saveobj called.\n');
b=a;
end
end
end
When ...
5
votes
2answers
110 views
How to save a bitmap after setting interpolation with graphics class
This code resizes an image and saves it to disk.
using (var medBitmap = new Bitmap(fullSizeImage, newImageW, newImageH))
{
...
5
votes
1answer
555 views
Save Icon File To Hard Drive
I know that this must be incredibly easy - It's unbelievable how long I have searched for an answer to this question based on how simple it is in VB6. I simply want to extract an Icon from an EXE File ...
5
votes
5answers
1k views
Problem with Eclipse while programming for android - “Refreshing external folders”
I have set up Eclipse to run as smoothly as possible because I was having a lot of problems with it running out of memory in my last machine. One of the configurations was to have it automatically ...
5
votes
3answers
211 views
Have some way to save the REPL state of Common Lisp or Scheme?
Have some way to save the REPL state of Common Lisp or Scheme?
Thanks
5
votes
5answers
4k views
Problems saving a photo to a file
Man, I am still not able to save a picture when I send an intent asking for a photo to be taken. Here's what I am doing:
Make a URI representing the pathname
android.content.Context c = ...
5
votes
2answers
2k views
JFileChooser - multiple file filters?
I have a question about the JFileChooser in Swing. I'm trying to get multiple file extensions in the drop-down box, but have no idea how to do it.
There is the method
extFilter = ...
5
votes
4answers
591 views
NHibernate will save, but won´t load an entity
I´m receiving a very strange error with NHibernate 2.1.2.4000 GA and latest version of FluentNHibernate. I can save an entity but can´t load it back after a call to Flush() and Clear().
This is my ...
5
votes
1answer
3k views
Save Matlab invisible plot under terminal as an image with same size
I am ssh connecting to a linux server and do some Matlab programming. I would like to save invisible plot as
figH = figure('visible','off') ;
% Plot something
% save the plot as an image with ...
5
votes
2answers
11k views
The easiest way to write NSData to a file
NSData *data;
data = [self fillInSomeStrangeBytes];
My question is now how I can write this data on the easiest way to an file.
(I've already an NSURL ...
5
votes
7answers
2k views
What's the way to implement Save / Load functionality?
I'm trying to implement a Load / Save function for a Windows Forms applications.
I've got following components:
A tree view
A couple of list views
A couple of text boxes
A couple of objects (which ...
4
votes
2answers
41 views
Verify .mat file exists and is not Corrupt - Matlab
I have 2 independent Matlab workers, with FIRST getting/saving data and SECOND reading it (and doing some calculations etc).
FIRST saves data as .mat file on the hard-disk while SECOND reads it from ...
4
votes
5answers
168 views
Save content dynamically with Javascript
I want to allow my clients to be able to have a save-dialogue come up to save data that I've stored in Javascript. I can't direct them to an existing file because you can't modify the file system ...
4
votes
2answers
325 views
How to save a png file with transparency?
I am using Barcode Studio 2011 to paint a QR Code into a Graphics32 - TImage32 Component and I want to save it in png format but with the white colour as transparent this I have specified in the ...
4
votes
2answers
156 views
Saving change is not permitted in SQL Server
When I create a table in SQL Server and save it, if I try to edit the table design, like change a column type from int to real, I get this error:
Saving change is nor permitted. The change ...
4
votes
2answers
591 views
Override Eclipse File > Save Action
I am trying to override the Eclipse File > Save menu action to add some functionality.
I have tried the following things
a) Create a new action and add it to the global action handler
...
4
votes
3answers
600 views
Simple read/write record .dat file
For some reason my OpenID account no longer exists even when I used it yesterday. But anyway.
I need to save record data into a .dat file. I tried a lot of searching, but it was all related to ...
4
votes
3answers
611 views
Best way to save changes in MVVM/Knockoutjs Web App?
I've been playing with KnockoutJS and absolutely love how much it simplifies the design from every angle by keeping stuff from falling through the cracks. My question is what is the recommended "best ...
4
votes
2answers
214 views
Android - Saving state of dynamically changed layout
I have a layout where users can add buttons and place them where they want.
I want to allow the user to save their layout so that it is loaded the next time they open the app.
Does anyone know if I ...
4
votes
2answers
1k views
Doctrine - insert multiple rows with just one save()
How do I insert multiple rows to table calling save() once in Doctrine?
4
votes
2answers
556 views
Open and edit file in .jar with Java?
How would you go about opening an .xml file that is within a .jar and edit it?
I know that you can do...
InputStream myStream = this.getClass().getResourceAsStream("xmlData.xml");
But how would ...
4
votes
9answers
584 views
c++ save and load game with pointers in structs
I know I can use:
MyGame game; // the game object
//
ofstream out("mygame.bin", ios::binary);
out.write((char *)&game, sizeof(MyGame));
to save and load the game, but what if I have pointers ...
4
votes
5answers
952 views
VB.net : How can I prompt a user if they are about to close their program with unsaved data?
I working working with Visual Basic 2010 Express. I have a DataGridView that is linked up with a local SQL database I've created. I have it currently where the user can click a button to save their ...
4
votes
4answers
358 views
How to force Emacs to save even if it thinks (no changes need to be saved)
This happens to me all the time:
I have a file open in emacs,
I save it ('save-buffer),
the file changes on disk (or get's deleted, moved, etc.)
but I want it back, so I try to save again in emacs ...
4
votes
2answers
153 views
How do I update a node (book or Page) before saving it without touching the module code in Drupal?
I would like to set some values in the node before actually writing the data to the DB. I already have it working by modifying book_nodeapi but I would like to do it from outside the code, some _alter ...
4
votes
2answers
3k views
save images in webbrowser control without redownloading them from the internet
Is it possible to save images in a webbroswer control directly to hard disk, without needing to download them again from the internet?
Let's say I navigate to a website that has 15 images. They are ...
4
votes
3answers
6k views
How to save HTML5 canvas?
Currently I am using Canvas2Image to save the content of my HTML5 canvas. It doesn't appear to work in Google Chrome, however. Any ideas on how to work around the issue are welcome. :)