Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 4
Application Class
 UserAppDataRegistry Property
Collapse All/Expand All Collapse All
.NET Framework Class Library
Application..::.UserAppDataRegistry Property

Gets the registry key for the application data of a user.

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)
Visual Basic
Public Shared ReadOnly Property UserAppDataRegistry As RegistryKey
C#
public static RegistryKey UserAppDataRegistry { get; }
Visual C++
public:
static property RegistryKey^ UserAppDataRegistry {
    RegistryKey^ get ();
}
F#
static member UserAppDataRegistry : RegistryKey

Property Value

Type: Microsoft.Win32..::.RegistryKey
A RegistryKey representing the registry key for the application data specific to the user.

If the key does not exist, it is created in the following format:

CurrentUser\Software\CompanyName\ProductName\ProductVersion

Data stored in this key is part of user profile that is enabled for roaming. A roaming user works on more than one computer in a network. The user profile for a roaming user is kept on a server on the network and is loaded onto a system when the user logs on. For a user profile to be considered for roaming, the operating system must support roaming profiles and it must be enabled.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
snippet      DougEZ   |   Edit   |   Show History
eg:

string previousImageAquisitionFolder = ""; // System.IO.Path.GetDirectoryName(od.FileName) ?? "");
Application.UserAppDataRegistry.CreateSubKey("previousImageAquisitionFolder");

previousImageAquisitionFolder =(Application.UserAppDataRegistry.GetValue("previousImageAquisitionFolder")?? "").ToString();
Application.UserAppDataRegistry.SetValue("previousImageAquisitionFolder",previousImageAquisitionFolder
Tags What's this?: Add a tag
Flag as ContentBug
Processing
© 2012 Microsoft. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker