Hello,
I have an input box that I want to get to input data into then get that data and write to registry. I can get other data to work from RichText but not from input. What did I do wrong? Thanks
This does not work
Code:pserver = Input.GetText("Input2"); Registry.SetValue(HKEY_CURRENT_USER,"Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings", "ProxyServer", pserver, REG_SZ);
This works!
Code:proxyoveride= RichText.GetText("RichText1", false); Registry.SetValue(HKEY_CURRENT_USER, "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\", "ProxyOverride", proxyoveride, REG_SZ); Registry.SetValue(HKEY_CURRENT_USER, "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\", "ProxyEnable", "1", REG_DWORD); Dialog.Message("Notice", "Your Local Bypass is set to: "..proxyoveride..".");

