Wisej.NET Migration
  • Introduction
  • WinForms to Wisej.NET
    • WinForms Migration First Steps
    • Advanced Topics
      • Statics vs. Session Variables
      • Reporting
      • Office Automation
      • Modal Dialogs
      • Registry Access
      • File Access
    • Optimizations After Migration
      • Alert Boxes
      • Watermarks
      • Tool Buttons
      • Enhanced TabControl
      • Enhanced DataGridView
      • AllowHtml
      • Label Wrapper
      • VirtualScroll
      • Theming
      • Responsive Properties
  • VB6 to Wisej.NET
    • VB6 Migration First Steps
  • Gupta to Wisej.NET
    • SAL Migration First Steps
  • Visual WebGUI to Wisej.NET
    • VWG Migration First Steps
    • VWG Advanced Migration
Powered by GitBook
On this page

Was this helpful?

  1. WinForms to Wisej.NET
  2. Advanced Topics

Registry Access

PreviousModal DialogsNextFile Access

Last updated 2 years ago

Was this helpful?

Registry access is commonly used in WinForms applications. After migration all registry access is executed on the server´s registry only which certainly requires changing it. There are several different implementation strategies. They all start with encapsulating the registry access into method(s) and changing the target where the registry values are now stored and read from. This can be

  • A database table where you store each users relevants keys and values

  • A file per user on the server

  • Utilize to store user settings etc.

Browser Storage