6
votes
7answers
405 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
7answers
388 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.
5
votes
2answers
382 views
.NET Saving jpeg with the same quality as it was loaded
Hello
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 …
5
votes
6answers
757 views
What’s the way to implement Save / Load functionality?
I'm trying to implement a Load / Save function for a winforms applications.
I've got following components :
A Tree View
Couple of List Views
Couple of Textboxes
Couple of objects (which holds a big …
4
votes
4answers
614 views
How can I write to my own app.config using a strongly typed object?
The following code has two flaws, I can't figure out if they are bugs or by design. From what I have seen it should be possible to write back to the app.config file using the Configuration.Save and …
4
votes
2answers
1k 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 …
3
votes
1answer
58 views
Save Matlab invisible plot under terminal as an image with same size
Hi,
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 …
3
votes
5answers
123 views
Saving ‘global’ data as a standard user?
Hello, in my application I need to store settings that are 'global' (i.e. not user specific) in a known and predictable location.
I want the application to be able to be run from anywhere (as a …
3
votes
4answers
2k views
How to force save as dialog box in firefox besides changing headers?
Is there a way to force a save as dialog box for www.example.com/example.pdf in ff? (i can't change the headers)
3
votes
1answer
525 views
save applet from website
how can I save a java applet from a website so I can run it offline?
2
votes
4answers
64 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
93 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 …
2
votes
4answers
124 views
What’s the best way to save data locally in a WPF Application?
I'm building some WPF application to manage my time. I'd like to save time spans for work time on project for a calendar day.
So my question is what's the best choice on how to save the data? I …
2
votes
4answers
101 views
Save Java frame as a Microsoft Word or PDF document?
I am working on a billing program - right now when you click the appropriate button it generates a frame that shows the various charges etc, basically an invoice. Is there a way to give the user an …
2
votes
1answer
121 views
Configuration.Save() in .Net 3.5 does not work in Deploy/Release mode
Hi,
As suggested on msdn social forum,
http://social.msdn.microsoft.com/Forums/en-US/netfxbcl/thread/ab59671a-f0a3-4182-ba5b-7fa17f0a6118?prof=required
I turned off the the Visual Studio hosting …
