Create IsolatedStorageFile : IsolatedStorageFile « Stream File « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.Stream File
13.GUI
14.GUI Applications
15.2D Graphics
16.I18N Internationlization
17.Reflection
18.Regular Expressions
19.Security
20.Socket Network
21.Thread
22.Windows
23.XML
24.Database ADO.net
25.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Stream File » IsolatedStorageFile 
12.28.2.Create IsolatedStorageFile
Imports System.IO.IsolatedStorage
        
Public Class Tester
    Public Shared Sub Main

        Dim myIsoStore As IsolatedStorageFile

        Dim myISS As IsolatedStorageScope
        Try
            myISS = IsolatedStorageScope.Domain Or IsolatedStorageScope.Assembly Or IsolatedStorageScope.User
            myIsoStore = IsolatedStorageFile.GetStore(myISS, Nothing, Nothing)

        Catch ex As IsolatedStorageException
            Console.WriteLine(ex.Message)
        End Try
    End Sub
End Class
12.28.IsolatedStorageFile
12.28.1.Create IsolatedStorageFileStream
12.28.2.Create IsolatedStorageFile
12.28.3.Get Directory and Files in an IsolatedStorageFile
12.28.4.Use IsolatedStorageFile.DeleteFile, DeleteDirectory
ww_w._ja__va__2___s.___c_o__m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.