Questions tagged [application-data]
54 questions
0
votes
1 answer
applicationData.current.localFolder.CreateFileQueryWithOptions(queryOptions); don't work
I excerpt from windows 8.1 sample of StorageDataSource and GetVirtualizedFilesVector sample a piece of code in my project can run successfully, but I changed to this: From ApplicationData.current.localFolder the deposit into my pictures do not show…

user3382560
- 1
- 1
0
votes
2 answers
Saving a list - Windows 8
I'm developing the Windows 8 equivalent of my app.
I'm trying to save simple list of strings to ApplicationDataContainer, as I would with IsolatedStorage for Windows Phone 8.
In Windows Phone 8 I would do it like this:
List myList;
myList=…

Erik
- 799
- 2
- 15
- 27
0
votes
1 answer
AppData\Roaming\ Folder absent on Vista
The application I am working with writes to the User\Application Data folder on XP and the AppData\Roaming folder on Vista. On one of the Vista machines the AppData\Roaming folder is not present. As a result some of the features of the application…

jbsp72
- 1
- 2
- 2
0
votes
1 answer
How do you save a string containing a newline character under the RoamingSettings in Windows Store Apps?
I've noticed that this...
void MyTextBox_TextChanged(object sender, TextChangedEventArgs e)
{
ApplicationData.Current.RoamingSettings.Values["Text"] = Text;
}
...is unreliable in Windows 8.1 Store Apps when the Text of your TextBox contains a…

Alexandru
- 12,264
- 17
- 113
- 208
0
votes
1 answer
Unhandled Exception when trying to save data in Win Mobile 8 c#
I'm using the code below to try and save to the local setting in Windows Mobile 8 using c#.
public void SaveInfo(string key, string value)
{
if (ApplicationData.Current.LocalSettings.Values.ContainsKey(key))
{
…

Dan
- 2,304
- 6
- 42
- 69
0
votes
1 answer
Application Data c# win mobile 8 not working as described
I'm trying to set up local settings so I can store data in my Windows Mobile 8 app. The first step I'm trying is:
ApplicationDataContainer localSettings = ApplicationData.Current.LocalSettings;
Just having that in my code causes the app to fail…

Dan
- 2,304
- 6
- 42
- 69
0
votes
1 answer
Windows 8 Application Data
For my Windows 8 application I require some data files (probably xml) which contain the content of the app, these are the same for each user and should only be updated with as new versions are released.
What is the appropriate mechanism/location to…

Liath
- 9,913
- 9
- 51
- 81
0
votes
0 answers
In android how to programmatically clear web cache without clearing database
I m developing an android app in which i'm integrating facebook functionality as suggested in this blog http://www.androidhive.info/2012/03/android-facebook-connect-tutorial/
as i'm able to login first time but after logout i cannot able to login…

Vivek Singh
- 1,201
- 3
- 17
- 39
-4
votes
1 answer
Where is Safe to Save My Important Files?
I work on C# project.
In first run of my application SQL Server 2008 wants to create a database, and I wanted SQL Server 2008 to create the MDF file in Programs Files. But Windows(XP) doesn't let me (or SQL) create the file and shows "Access is…

mehdi
- 59
- 4
- 10