using (Process me = Process.GetCurrentProcess()) { pGinaSettings = new pGinaDynamicSettings(Tools.SimpleUuid); pGinaSettings.SetDefault("ShowDescription", true); pGinaSettings.setDefault("onlyBluetoothLogin", true); }
Also, i tried writing directly to registry myself and then get the data using Settings.Store.variable and succeed. However, when i try to change the value instead of just accessing it, nothing happens.
chkOnlyBluetooth.Checked = Settings.Store.onlyBluetoothLogin;
Settings.Store.onlyBluetoothLogin = chkOnlyBluetooth.Checked;