Computer Learning Zone CLZ Access Excel Word Windows

We are stardust brought to life, then empowered by the universe to figure itself out - and we have only just begun.

-Neil deGrasse Tyson
 
Home   Courses   TechHelp   Forums   Help   Contact   Merch   Join   Order   Logon  
 
Back to Visual Basic Forum    Comments List
Upload Images   @Reply   Bookmark    Link   Email   Next Unseen 
Working with the Registry
Kevin Robertson 
          
15 months ago
Sharing an example of how to work with the Registry in VB.NET.

In this example I am setting and retrieving the default folder
to be used with the OpenFileDialog to set the initial folder.

defaultFolder is a Public variable.

    Public Sub SaveSettingsToRegistry()
        Dim regKey As Microsoft.Win32.RegistryKey
        regKey = Microsoft.Win32.Registry.CurrentUser.CreateSubKey("Software\YourAppName")
        regKey.SetValue("DefaultFolder", defaultFolder)
        regKey.Close()
    End Sub


    Public Sub LoadSettingsFromRegistry()
        Dim regKey As Microsoft.Win32.RegistryKey
        Dim defaultVal As String = My.Computer.FileSystem.SpecialDirectories.MyDocuments
        regKey = Microsoft.Win32.Registry.CurrentUser.OpenSubKey("Software\YourAppName")
        If regKey Is Nothing Then
            defaultFolder = defaultVal
        Else
            defaultFolder = regKey.GetValue("DefaultFolder", defaultVal)
            regKey.Close()
        End If
    End Sub

This thread is now CLOSED. If you wish to comment, start a NEW discussion in Visual Basic Forum.
 

Next Unseen

 
New Feature: Comment Live View
 
 

The following is a paid advertisement
Computer Learning Zone is not responsible for any content shown or offers made by these ads.
 

Learn
 
Access - index
Excel - index
Word - index
Windows - index
PowerPoint - index
Photoshop - index
Visual Basic - index
ASP - index
Seminars
More...
Customers
 
Login
My Account
My Courses
Lost Password
Memberships
Student Databases
Change Email
Info
 
Latest News
New Releases
User Forums
Topic Glossary
Tips & Tricks
Search The Site
Code Vault
Collapse Menus
Help
 
Customer Support
Web Site Tour
FAQs
TechHelp
Consulting Services
About
 
Background
Testimonials
Jobs
Affiliate Program
Richard Rost
Free Lessons
Mailing List
PCResale.NET
Order
 
Video Tutorials
Handbooks
Memberships
Learning Connection
Idiot's Guide to Excel
Volume Discounts
Payment Info
Shipping
Terms of Sale
Contact
 
Contact Info
Support Policy
Mailing Address
Phone Number
Fax Number
Course Survey
Email Richard
[email protected]
Blog RSS Feed    YouTube Channel

LinkedIn
Copyright 2026 by Computer Learning Zone, Amicron, and Richard Rost. All Rights Reserved. Current Time: 6/14/2026 9:34:18 AM. PLT: 1s