Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
192 views

Setting IsolatedStorage quota for .NET 4 desktop applications

This page about storage quotas says to use the mscorcfg tool. BUT the mscorcfg page says the tool is only for older versions of .NET So... what's the .NET 4 way of setting this value for desktop ...
7
votes
5answers
2k views

Where is isolated storage from WP7 emulator located on PC?

When we use simulator and store files in isolated storage. Where is the file actually stored on computer? I mean the path.
7
votes
1answer
463 views

How to copy access Database file, mdb from program files to Isolated Storage in c#

I am building an IE Addon or Extension using C#. I have created an Access Database MDB file which will be in the Program files. Now at runtime I need to copy this MDB file to Isolated Storage so that ...
7
votes
1answer
376 views

Isolated Storage, OOB, and Removing the App

What happens to the files created by Isolated Storage when the OOB app is removed? Do they remain or are the files also deleted? From what I can deduct the files would be maintained so they can be ...
6
votes
2answers
405 views

Simple Isolated Storage Problem

I am trying to do a simple test with Isolated Storage so I can use it for a Windows Phone 7 application I am making. The test I am creating sets a creates a key and value with one button, and with ...
5
votes
1answer
201 views

Silverlight IsolatedStorage PathTooLongException

I'm getting this exception on 50% of WinXP SP3 machines. I know about 260 characters path length limit, but what can be done? I'm already naming files to only 2 characters, without any ...
5
votes
2answers
119 views

What is the best way for storing non-public configuration data in a .NET 4.0 application

my application uses the standard app.config to store the public configuration data. However, there are still some other data which are not public, but they still must be accessible all the time, ...
5
votes
1answer
901 views

Can an XNA Game use IsolatedStorageSettings for WP7?

I've been trying to port some Windows Phone 7 code between Silverlight to XNA which relies on IsolatedStorageSettings but I can't get Visual Studio to resolve it. When I have a look at what ...
5
votes
3answers
1k views

WP7 - IsolatedStorage Errors

I'm building a Windows Phone 7 application that uses isolated storage. The code works most of the time but I keep getting IsolatedStorageExceptions randomly: {"An error occurred while accessing ...
5
votes
1answer
821 views

WPF: isolated storage file path too long

I'm deploying my WPF app with ClickOnce. When developing locally in Visual Studio, I store files in the isolated storage by calling IsolatedStorageFile.GetUserStoreForDomain(). This works just fine ...
5
votes
3answers
2k views

Isolated storage location for windows phone 7?

I'm building a windows phone 7 application using silverlight 4. I store my data in Isolated storage as outlined here. The program runs with no errors. My question is where I can see the file I have ...
5
votes
2answers
1k views

Is Silverlight isolated storage treated as permanent, or as a cache?

How persistent is isolated storage - does Silverlight treat it like a cache, deleting items when it needs more space, or only when the user or application request it? There also seems to be a wide ...
5
votes
1answer
5k views

Can I get a path for a IsolatedStorage file and read it from external applications?

I want to write a file where an external application can read it, but I want also some of the IsolatedStorage advantages, basically insurance against unexpected exceptions. Can I have it?
4
votes
2answers
204 views

IsolatedStorageFile.GetUserStoreForApplication().AvailableFreeSpace is wrong?

I have recently come across a problem downloading large amounts of data to isolated storage on a WP7 device, when significant amounts of free space are lost during download. More specifically, I ...
4
votes
1answer
145 views

Is there a way to find out how much space in isolated storage you app is using on WP7?

I want to know how many kilobytes/megabytes of isolated storage my app is using on Windows Phone 7. Is there a simple way to find this out?
4
votes
3answers
1k views

Storing a large list in isolatedStorage on WP7

I'm storing a List with around 3,000 objects in Isolatedstorage using Xml serialize. It takes too long to deserialize this and I was wondering if you have any recommendations to speed it up. The time ...
4
votes
1answer
394 views

Is there a “first run” flag in WP7

I would like to know if there is a "first run" flag or similar in WP7. My app takes some stuff out of isolated storage so I would like to determine if this is necessary first time. I am currently ...
4
votes
2answers
616 views

.NET isolated storage file locking throws NRE

So I am trying to lock an isolated storage file in my C# client application, so that multiple copies of my application are not able to access it at the same time. I am using the following syntax: ...
3
votes
3answers
135 views

Silverlight refresh an Image depending on a variable stored in IsolatedStorage

I'm pretty new in silverlight and I have some problems with my application.I keep the application date in database and in IsolatedStorage. I have an Image control on the top of the UI where the user ...
3
votes
1answer
64 views

I want to delete the files stored in Isolated Storage when the OOB app is removed

I want to delete the files stored in Isolated Storage when the OOB app is removed. How can i delete these files? Thanks
3
votes
2answers
167 views

Does anyone use .NET's System.IO.IsolatedStorage?

I was reading about the System.IO.IsolatedStorage namespace in .NET and found that I can use it to store a file to a location unique for my assembly or executable. For example, the following code: ...
3
votes
1answer
137 views

What happens to Isolated Storage stored objects during an update

If I store some serialized objects in isolated storage and then two months down the line create an update for my app. Does the isolated storage get removed during the update procedure?
3
votes
1answer
377 views

Silverlight Isolated Storage Best Practices?

I'm just starting to really get into Silverlight development and I have a certain use case where I need to store a couple collections of objects or strings for a specific user's "sessions". I want ...
3
votes
1answer
270 views

IsolatedStorage Not Working With IE Protected Mode? C#

Using IsolatedStorage with IE Protected Mode. I am building a C# .NET (VS2010) IE8 add-on application but am having some trouble saving data using IsolatedStorage on a Windows 7 64-bit machine, when ...
3
votes
2answers
1k views

Problem opening JPEG from Isolated Storage on Windows Phone 7

Scenario App opens Checks to see if image for background exists in Isolated Storage If not, downloads from web, and saves it to Isolated Storage Loads the image from Isolated Storage and sets it as ...
3
votes
1answer
206 views

pattern matching in .Net consistent with IsolatedStorageFile.GetFileNames() pattern matching

Is the pattern matching logic used by this API exposed for reuse somewhere in the .Net Framework? Something of the form FilePatternMatch( string searchPattern, stringfileNameToTest ) is what I'm ...
3
votes
2answers
979 views

Binding image in Isolated Storage

Hey. I have a list of items that the user can search. The search results are displayed in a listbox. Each animal object has a path to an image in Isolated Storage. What's the quickest way to bind my ...
3
votes
1answer
173 views

What's the fastest way to clear the isolatedstoragestore for a windows phone 7 application?

I'm currently working on an application which writes data to the IsolatedStorageStore. As part of the app, I'd like to implement a "clear all data/reset" button, but enumerating through all the files ...
3
votes
2answers
398 views

Using IsolatedStorage, Is it necessary to check if a directory exists before creating it?

I'm working on a Windows Phone 7 app, and I was wondering whether anyone had a definitive answer on whether or not I have to check if a directory exists before creating one, and what the ...
3
votes
1answer
544 views

How to determine location of IsolatedStorageFile root directory

I'm using IsolatedStorage for persisting objects, but from time to time I need to manually clean out files from this directory. As I persist the files, I want to write the physical location of the ...
3
votes
3answers
992 views

Rename File in IsolatedStorage

I need to rename a file in the IsolatedStorage. How can I do that? Thank you
3
votes
1answer
691 views

Does Windows Installer use Assembly Version or File Version to update dlls

I have a .net (2.0) winforms application that I need to upgrade on client machines. At the moment this is done by incrementing the Assembly Version and File Version on all of the projects and ...
2
votes
1answer
51 views

Encrypting SQL Server CE database

How to encrypt and decrypt the SQL Server CE databases present in the Isolated Storage of WP7 app ? I was able to copy the db from my emulator to the hard disk of my system. Now, How can I need a way ...
2
votes
2answers
103 views

Isolated Storage security exception on windows phone

Im trying to persist some data but im getting an error here. Declaration of isolated storage inside my public partial mainpage class IsolatedStorageSettings settings = ...
2
votes
1answer
215 views

Initialization failed on IsolatedStorage

I am using EPPlus 2.8.0.2 library in my ASP.NET MVC 3 app to generate excel files. This application runs on IIS 6 on Windows Server 2003 R2. The offending line is this: xlsdoc.GetAsByteArray ...
2
votes
3answers
183 views

IsolatedStorageException on first cache access

I am having an issue where I am getting an IsolatedStorageException ('Operation not permitted on IsolatedFileStorageStream') every first time I run an app. Consequent times of running the app, it ...
2
votes
1answer
56 views

I want to Deserialize stream as contact in windows phone 7 c#

I Serialized Contact and Saved it in text file in The Isolated Store I want to Deserialize it back as Contact I tried this Code but I get error : Error 1 The type ...
2
votes
1answer
106 views

Storing a Dictionary<TKey, TValue> in isolated storage

I'm hitting a server and getting some data, am parsing this data and storing it in a Dictionary<TKey, TValue>. I store this Dictionary<TKey, TValue> list in Isolated storage. Now, the ...
2
votes
0answers
143 views

IsolatedStorageFile usage throws AbandonedMutexException

I am maintaining some code with a method in Silverlight 4.0, which threw IsolatedStorageException There is not enough free space to perform the operation. , until I created the directory for it ...
2
votes
4answers
429 views

Grid in windows phone 7

I have a grid view code below which have divided into 3 column. But i have a problem with the code is that. When multiple data is retrieved. All the data in the 3 column is overlapping. How can i ...
2
votes
2answers
556 views

List box item in windows phone 7

I am trying to navigate between 2 pages. For view page there is a list box which i select an item inside it will navigate to "deatils page". When i press on the back key button of the phone it ...
2
votes
2answers
82 views

Silverlight: Sterling Throws Exception

I have a Sterling Service public sealed class SterlingService : IApplicationService, IApplicationLifetimeAware, IDisposable { private SterlingEngine _engine; private static readonly ...
2
votes
2answers
230 views

windows phone 7 - loading a big xml file

I am trying to load a xml file to my app and show it on a ListBox. The problem is that the xml file is about 5 MB, and it takes about 40 seconds on the phone to load. and when the phone locks the ...
2
votes
3answers
975 views

Lazy loading of listbox images from isolated storage

I have lots of images stored in isolated storage and want to display them in a listbox. However, I don't want all images to be loaded right away but lazily. So only when the user scrolls to see new ...
2
votes
4answers
300 views

Opening file outside IsolatedStorage

I would like to know if there is a way to open files which are not located in an IsolatedStorage on a WP7 device ? Internals are not really well documented so...
2
votes
1answer
431 views

How to Use Sync Framework with Silverlight Isolated Storage Options

A google for Sync Framework shows a few blog posts from May 2010 about the possibilities, but I have not seen anyone actually using the Sync Framework + SL Isolated Storage. Has anyone done this? ...
2
votes
3answers
165 views

Saving an enum to IsolatedStorageSettings

I'm developing a Windows Phone 7 app. I have an enum and I want to save a enum value to IsolatedStorageSettings. How can I do that?
2
votes
2answers
427 views

Where to save application data in .NET application

My application is something similar to a Contact Manager. Let's say a user can enter contacts with their addresses. I have the code and technology to save my contacts to a file. But where do I save ...
2
votes
3answers
249 views

How do I check if an IsolatedStorageFile exists?

We have code like: try { streamOptions = new IsolatedStorageFileStream( “FileName”, FileMode.Open, ...
2
votes
1answer
1k views

.NET: IsolatedStorageException

I'm building a Windows Phone 7 app in Silverlight. I'm having difficulty with IsolatedStorage. IsolatedStorageFile storage = IsolatedStorageFile.GetUserStoreForApplication(); if ...

1 2 3 4 5 6