Bonjour voici ma configuration :
j'ai un pda motorola symbol modèle MC3090 qui tourne sous windows CE.
J'ai comme navigateur internet explorer et symbol pocket browser.
J'aimerais appeler un active X pour lancer un .exe comme je le fais sur des ordinateurs classiques et où ça marche.
Hello there.
I use activeX Control to launch a local .exe application from a browser (internet explorer for windows CE) on a PDA but does not work.
I end up with an error :
Automation server can't create object.
So I added the url of the application to the trusted sites but does not change.
Code :
- function runipconfig() {
- var oSH = new ActiveXObject("WScript.Shell" );
- oSH.Run("ipconfig.exe" );
- }
- function runvb() {
- var oSH = new ActiveXObject("SymbolBrowser.MicroFlash" );
- oSH.Run("\Application\SCANWEDGE.exe" );
- }
|
Dans options internet , j'ai tout activé les active X et j'ai même ajouté mon application (URL du site) aux sites de confiance.
Le probleme est que rien se lance et un message d'erreur s'affiche :
Code :
- automation server can't create object
|
Comment faire?