Tagged Questions
Saving is the operation where a resource (document, game state, etc.) is persisted (written to the disk, sent to the cloud, etc.) for later use.
7
votes
2answers
180 views
Saving DataGridView
I open two files into 2 seperate DGVs.. Once opened and the button "Format" is clicked, it matches all of the lines in the two seperate DGVs and copies it into a new DGV.
The first DGV looks like ...
7
votes
3answers
190 views
Image to browser without saving
How can I put image from the memory to the browser, without saving.
For example:
function getImage()
{
$imageFile = imagecreatefromjpeg('Map.jpg');
$imageObject = ...
7
votes
12answers
513 views
Why is the save button needed?
Software like OneNote has shown that auto-save can be implemented, and it works just as well (or better) as the manual save button / CTRL+S.
Anyways everything that you work on you want saved. Its ...
5
votes
1answer
815 views
How to set up default encoding in Visual Studio 2010
We're using Visual Studio 2010 professional to develop and maintain our company ASP (classic ASP, not ASP.NET) e-commerce web site, and I'm having file encoding issues every time I create a new page.
...
5
votes
5answers
10k views
How do I enable saving of filled-in fields on a PDF form?
Some PDF forms can be saved, including all filled-in field data:
Some others can not be saved, and all filled-in field data are lost:
How do I enable saving of filled-in fields on my PDF form?
...
4
votes
2answers
81 views
How to know where on the SD card the images are being stored, DCIM/Camera, DCIM/100MEDIA?
I have a method in my application which retrieves the last saved image in my DCIM/Camera folder and copies it to another location on the SD card. I've just tested it on another phone and found that it ...
4
votes
4answers
538 views
IOS Saving State For Complex Apps
I'm building a fairly complex business application on the iPad IOS 4.2: 4 tabs, with potentially deep navigational paths on each tab.
In the opinion of some of your more experienced IOS developers, ...
4
votes
1answer
517 views
WPF MVVM: Saving Data automatically
In my WPF MVVM app, I'd like changes to my Entity Framework entity classes automatically persisted back to the database. I've had a few ideas about implementing this functionality, but none of them ...
4
votes
6answers
449 views
How do I save files to hard disk in a separate thread?
Hi
Ive a camera and Im reading the images in real time into an array.
Im applying some algortihm to the image and displaying it. Then I get the next image and display it as well. So Im streaming ...
4
votes
2answers
773 views
How can I save all the variables in the current python session?
I want to save all the variables in my current python environment. It seems one option is to use the 'pickle' module. However, I don't want to do this for 2 reasons:
1) I have to call pickle.dump() ...
3
votes
1answer
98 views
What are some good ways to Save/Load files in AS3?
I am writing a game in ActionScript3 using Flixel as a base. I have been unable to find a good method for saving and loading files from the player's local hard drive. I know Flixel has a way to save ...
3
votes
1answer
152 views
Ruby on Rails+PostgreSQL: usage of custom sequences
Say I have a model called Transaction which has a :transaction_code attribute.
I want that attribute to be automatically filled with a sequence number which may differ from id (e.g. Transaction with ...
3
votes
2answers
309 views
jQuery webcam: Save mode results in: ''error: No save mode compiled in."
I am currently implementing a photo snapshot function to allow users to set their profile photo via webcam. To accomplish this, I am using jQuery Webcam Plugin.
The problem arises in that I would ...
3
votes
3answers
81 views
How can I save a custom type as binary data in .NET?
I'm creating something that has save files. For the most part, it's just saving objects with 4 values.
x
y
id
layer
I've been saving this as XML for a while, the problem is, the files are ...
3
votes
1answer
378 views
Output file to specific folder C++ Windows 7
I am using C++ and trying to output a file to a specific place, a folder with a specified name in the same directory as the executable. Couldn't find a great resource on an easy way to do this but I ...
3
votes
2answers
92 views
associated folder when saving an html file
When you save an html file "completely"(as opposite to "just html"), the html file and an associated resource folder will be saved. The interesting thing is that when you delete the html file, the ...
2
votes
5answers
78 views
Saving from List<T> to txt
I want my program to read from two text files into one List<T>.
The List<T> is sorting and cleaning duplicates.
I want the List<T> to save (after sorting and cleaning) to a txt ...
2
votes
1answer
42 views
What is the proper way to save information from a .db file?
As it stands right now, I have a TableLayout that I am populating based on certain columns and every row from a .db file. The table is populated based upon a single .db file which I will call x from ...
2
votes
2answers
87 views
How to save files to Android /system directory?
I am writing an application that will copy files from its assets directory to the Android's /system directory.
I feel that I am getting close to achieving this, but I am not quite there. Here is the ...
2
votes
2answers
49 views
matlab: how to save TIFF series?
Lets say I have a 3D array 'img' (x, y, frame) and want to save it as a TIFF. So far I was doing it by saving one-by-one like this:
for K=1:length(img(1, 1, :))
outputFileName = ...
2
votes
1answer
57 views
Save the view of a UIScrollView
I am building an app where part of it allows you to scroll through different images to overlay. I have a segmented control to make a sort of layering system where each segment allows you to scroll ...
2
votes
1answer
35 views
Cakephp 1.3 Save Multiple Model rows, some with an id and some without an id
Is it possible to update existing data and save new data at the same time without having to loop through the array? I would like the array with the id to update and the array without an id to create a ...
2
votes
2answers
66 views
Auto-loading file on program startup
Ok, so here's a bit of code. I'm having an issue where I want to save to a pre-defined location, and I want to have a pre-defined name for a file. Neither FileStream nor StreamWriter allows you to set ...
2
votes
1answer
502 views
Fluent NHibernate Composite ID table problem
I'm kinda new to nhibernate and i ran into a problem.
I have the following tables:
Table 1:
Table Name: Users,
Column 1: ID,
Column 2: Name
Table 2:
Table Name: Missions,
Column 1: ID,
Column 2: ...
2
votes
4answers
59 views
Java help saving applications
I have a program where i need to save a running application to be able to go back to it later
I know that i can write/read from a text file to achieve this but the program is pretty prodigious so it's ...
2
votes
1answer
76 views
Saving a Matrix on disc for later use in Matlab
I want to save several big matrices (1024x1024) on the disk and use them later on, so that I won't have to calculate them every time from the start.
How do I do it? and how do I read them for use ...
2
votes
1answer
391 views
Android HashMap Serialization / Deserialization
Hello I have a Hasmap of bitmaps which I need to store on the Android device to be used when next the application starts.
My hashmap looks like this, and contains up to 1000 Bitmaps:
private static ...
2
votes
0answers
90 views
how to save the spinner position?
Hai, in my app i have a spinner with set of units, if i select a value from the spinner & change the position from portrait to land scape, value is as it is, but the problem is when i am changing ...
2
votes
1answer
126 views
Efficient and safe storage of string pairs C++
I am making a volume (voxel) based terrain generation engine using polyvox, and will be need to store lots of volume information. The Polyvox library makes it easy to pull out the values. However the ...
2
votes
1answer
282 views
Saving Variables Prolog
Is it possible to save variables in Prolog?
I would like to save and edit a list as the program runs but I cannot find anyway of saving the list between edits.
2
votes
2answers
611 views
How to save 2 strings on an android app?
I'm a relatively new programmer, and I haven't really worked with xml before other than writing layouts for android applications.
I want to be able to have a user save an int value (figured it'd be ...
2
votes
2answers
279 views
Where to save program data on win xp Vista and Windows 7
HI
I am developing one application and I wish to save xml data files on Windows XP, Windows 7 And Windows Vista Can any one tell which folder I have use so it will work for all these three OS so user ...
2
votes
3answers
84 views
Store a global counter in DB? Whats another option?
I need to store 2 values (counters) for my ASP.NET web app. The counters always grow, they should never return to 0. So one option would be to save them in DB, what other options do I have, because ...
2
votes
3answers
11k views
saving data in iOS
I'd like to serialize a bunch of data and save it to a file, then be able to load it (naturally) and play it back with a feature I have written. (Sorry if my terminology is off, I am a novice with ...
2
votes
1answer
64 views
How do I get the non-maximised window size of a form?
I'm trying to save my the state of a System::Windows::Forms::Form when my application shuts down. I can record the window's size, position and window state without any issues but if the window was ...
2
votes
1answer
707 views
saving figure to eps format without using imshow
There have been some posts here regarding image processing but I don't think that this question has been asked here. I have Matlab but not the image processing toolbox. I've tried to compress a figure ...
2
votes
3answers
2k views
Silverlight stop page closing before being saved
Here's a question for all you Silverlight guys.
In the old days for WinForms, if your user was creating/editing some information in a DialogBox, it was easy to detect the Window closing and if the ...
2
votes
1answer
532 views
Saved EPS image different than plotted chart
I'm creating some plots in matlab and then saving it as EPS images.
What is important, I create sets of 4 images, take the 'YLim' value from the first image, and then set it to the other 3 images. I ...
2
votes
2answers
234 views
Objective-c saving raw text
I implemented saving and loading methods in my document-based application. In the saving method, I have
[NSArchiver archivedDataWithRootObject:[self string]];
Where [self string] is a NSString.
...
2
votes
1answer
1k views
Saving Drawable to Disk and retrieving - Android
how would I save a drawable to the SDcard (custom folder) and later retrieve it assuming im keeping track of the path of the saved item.
Thanks,
Faisal
2
votes
1answer
103 views
Extracting visual studio theme?
I want to save my theme out of visual studio so that if(when) i need to reformat my computer my theme is available for use. How can i do that?
2
votes
4answers
914 views
Best way to save/load pictures with .Net & SQL Server 2005?
What is the typical way to handle product pictures in a web-page selling products? Say I had a database with books or computer components etc, all of which have their own sample pictures for ...
1
vote
1answer
30 views
Error when saving data in iPhone SDK 4.2
Here is some code that I'm trying to make save some UITextView text. When I run it and change the text and click the save button it works but when I take it from the multitasking bar it and open it ...
1
vote
1answer
32 views
Turnbased gamecenter game: when is persistence needed?
I'm working on an ios turnbased game (gamecenter). Question is : when do i have to save the gamedata ? Ofcourse when it's the players turn and the app goes to the background or terminates before the ...
1
vote
2answers
52 views
Writing a new set of data to Plist instead of overwriting it
I'm trying to get a plist to store multiple sets of data, but each time I save (using a button from an ActionSheet), it overwrites the previous set. I want to add multiple 'friends' and their data. ...
1
vote
2answers
117 views
saving file after passing parameter
Here is the parent question: save string to file
I want to pass the parameter which will be saved in file(.csv) after clicking button.
@bigtable is a table with strings in each row.
Here is the code ...
1
vote
1answer
81 views
Where can I find a generic game state singleton for Objective C?
I'm wanting to use, and store a game state singleton inside NSCoder, but I am finding it quite difficult to find a generic state management that saves and loads its data using the ...
1
vote
5answers
175 views
AS3 - Simple text scramble encode/decoder?
I am working on the saving/loading functionality of my AS3 game. I plan to let the player save their game to their hard drive from a browser-run game. I want to scramble the text I'm saving so a human ...
1
vote
3answers
42 views
Store data from several classes in central object
I have an app that relies heavily on JSON responses from a webservice. All parts of the app contain objects build from these responses meaning this data is very important for the app to run properly.
...
1
vote
4answers
148 views
Which design pattern is better for saving/deleting data and why?
I cannot decide between the following two patterns for eg. saving a dataObject (bean in my case). The two options are:
1st
abstract class DataService {
protected void save(Object data){
...