Valuater Posted October 6, 2006 Share Posted October 6, 2006 I was able to create the FileSelectFolder "Object" and it worked fine... However, when i implemented GUICtrlCreateObj() to create the embeded object, i ran into a problemusing IE error handler, i get....$IEComErrorScriptline = 34----> $IEComErrorNumberHex = 80004002----> $IEComErrorNumber = -2147467262----> $IEComErrorWinDescription = No such interface supported----> $IEComErrorDescription = ----> $IEComErrorSource = ----> $IEComErrorHelpFile = ----> $IEComErrorHelpContext = ----> $IEComErrorLastDllError = 0the important part is " No such interface supported "is it possible to embed a ObjCreate("Shell.Application") into a GUI???thx8) Link to comment Share on other sites More sharing options...
SvenP Posted October 18, 2006 Share Posted October 18, 2006 I seems that no one answered this one since October 6. Well, I can make it short: Inside a GUI you can only embed ActiveX controls or hybrid COM Objects that have additional ActiveX functions. The 'Shell.Application' object does not have ActiveX functions. You can check if an object could be used inside a GUI by using the 'Oleview' utility. The object should at least have the IOleControl and IOleInPlaceObject interfaces listed. But that's even no guarantee that it will work inside a GUI. Regards, -Sven Link to comment Share on other sites More sharing options...
Valuater Posted October 18, 2006 Author Share Posted October 18, 2006 I seems that no one answered this one since October 6. Well, I can make it short: Inside a GUI you can only embed ActiveX controls or hybrid COM Objects that have additional ActiveX functions. The 'Shell.Application' object does not have ActiveX functions. You can check if an object could be used inside a GUI by using the 'Oleview' utility. The object should at least have the IOleControl and IOleInPlaceObject interfaces listed. But that's even no guarantee that it will work inside a GUI.Regards,-SvenThanks Sven... its appreciatedValuater8) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now