Tagged Questions

6
votes
12answers
312 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 …
2
votes
4answers
166 views

Best way to save/load pictures with .Net & SQL Server 2005?

Hey, 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 …
2
votes
3answers
660 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? …
1
vote
1answer
25 views

Create webpart saving its data on leaving article page

I have one custom article page layout which has a multiple lookup field called Tags refered to Tag list. In this layout, I put a webpart which do the task edit Tags for me. When I create a page from …
1
vote
1answer
58 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
1
vote
1answer
33 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?
1
vote
5answers
126 views

How to save contacts in an address book and list them?

I am working on making an address book in C# 2008. I need to be able to save the contacts and then later display them when the user asked for it. I also need to handle an exception when someone enters …
1
vote
2answers
345 views

Saving videos to photo library when taken from camera in IPhone

Hello, I was wondering if there is a method similar to UIImageWriteToSavedPhotosAlbum(UIImage *image, id completionTarget, SEL completionSelector, void *contextInfo), that saves Videos taken from …
1
vote
4answers
877 views

Updating/Saving to a SQL Database using C#?

I can't find how to do this on google anywhere. How do you save to a SQL DB using just C# code? Is it possible? The save method that comes default when you create a DB using the wizard dosen't …
0
votes
1answer
90 views

Objective-C creating a text file with a string.

I'm trying to create a text file with the contents of a string to my desktop. I'm not sure if I'm doing it right, I don't get errors but it doesn't work either... NSArray *paths = …
0
votes
3answers
63 views

How to save default context settings in c#?

Hello, could somebody tell me why I can not save dynamic data in Settings.Default.Context? My code: Settings.Default.Context.Add("myKey", "myValue"); Settings.Default.Save(); …
0
votes
2answers
40 views

writing text in textfile and saving it using saveDialog

hi , i have a little confusion.. i want to write a string in a text file which should be dynamically saved by the saveDialog i have done this task statically.. means file with specified file name is …
0
votes
2answers
113 views

Save a picture from the user on the iPhone?

Hi, I was wondering whether the following scenario is possible; let's say a user draws his own drawing (including text and lines) over another, could the result be saved and then uploaded? Thanks in …
0
votes
3answers
205 views

How do i save code changes to an Excel VBA add-in?

I've made an add-in for Excel in VBA and now I need to make changes to the code, but the file won't save. I open the .xlam file, I make the changes, ctrl-S to save with no errors popping up, close …
0
votes
1answer
157 views

Overwriting an image file (bitmap)

Hello I am trying to save a bitmap image in a basic image editor program. Here's the code: // then save it ImageBoxInApp.Image.Save(filename); [EDIT] And I am opening the image …