You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
873 B
Plaintext
10 lines
873 B
Plaintext
(20:42:45) coderpeter: TO solve one page for both browser, following is the easy way to do it:
|
|
(20:42:57) coderpeter: set this registry key HKEY_CLASSES_ROOT\MIME\\Database\\Content Type\\application/your-plugin-type with your CLSID of your plugin when register your dll in xxxxDllRegister function This will register MIME type for IE, so that you can use this to load plugin: <object type="application/your-plugin-type" width="580" height="400" codebase="your plugin codebase for IE">
|
|
(20:43:45) appriv: ok, will try this
|
|
(20:43:52) appriv: great
|
|
(20:44:11) coderpeter: this is the way we are using to load plugin for both browsers
|
|
(20:44:47) coderpeter: please note: application/xxxx is the key string name for one word
|
|
(20:45:03) coderpeter: also note about '/'
|
|
(20:45:30) appriv: hm.mhm, ok will look in the registry for similar entries
|
|
(20:45:41) coderpeter: great
|