melissa
04-25-2007, 07:40 AM
hi everyone
i asked you last time about script window
http://img45.imageshack.us/img45/9738/scriptexd2.png
and you gave me this code
you could set the disabledebuggerIE to yes (check box) in the registry in the Project-OnStartup by using this code
bIS = Registry.DoesKeyExist(HKEY_CURRENT_USER, "Software\\Microsoft\\Internet Explorer\\Main");
if bIS == true then
Registry.SetValue(HKEY_CURRENT_USER, "Software\\Microsoft\\Internet Explorer\\Main", "DisableScriptDebuggerIE", "yes", REG_SZ);
end
Then, if you want to set it back to default when you leave the app then in Project-On Shutdown use
bIS = Registry.DoesKeyExist(HKEY_CURRENT_USER, "Software\\Microsoft\\Internet Explorer\\Main");
if bIS == true then
Registry.SetValue(HKEY_CURRENT_USER, "Software\\Microsoft\\Internet Explorer\\Main", "DisableScriptDebuggerIE", "", REG_SZ);
end
====================
i tried this code but it`s not working for me
can you help me second time , i really need it
thank you
i asked you last time about script window
http://img45.imageshack.us/img45/9738/scriptexd2.png
and you gave me this code
you could set the disabledebuggerIE to yes (check box) in the registry in the Project-OnStartup by using this code
bIS = Registry.DoesKeyExist(HKEY_CURRENT_USER, "Software\\Microsoft\\Internet Explorer\\Main");
if bIS == true then
Registry.SetValue(HKEY_CURRENT_USER, "Software\\Microsoft\\Internet Explorer\\Main", "DisableScriptDebuggerIE", "yes", REG_SZ);
end
Then, if you want to set it back to default when you leave the app then in Project-On Shutdown use
bIS = Registry.DoesKeyExist(HKEY_CURRENT_USER, "Software\\Microsoft\\Internet Explorer\\Main");
if bIS == true then
Registry.SetValue(HKEY_CURRENT_USER, "Software\\Microsoft\\Internet Explorer\\Main", "DisableScriptDebuggerIE", "", REG_SZ);
end
====================
i tried this code but it`s not working for me
can you help me second time , i really need it
thank you