0

I want modify settings of my window using VB. For example I want to change the color of File explorer's window title bar, menu bar etc. How to begin with modifying registry using VB and which entries to modify to change the color?

Afaq
  • 1,146
  • 1
  • 13
  • 25
  • Similar to http://stackoverflow.com/questions/491890/how-can-i-edit-a-registry-key-with-vb-net-or-vb6 – Kratz Oct 15 '12 at 17:56

1 Answers1

0

I would recommend saving settings to file, for example app.config is designed for this purpose. If you prefer registry, then take a look into codeproject article Application Settings the .NET way. INI, Registry, or XML

volody
  • 6,946
  • 3
  • 42
  • 54