luddet Posted February 7, 2006 Posted February 7, 2006 (edited) I'm developing an application which makes use of the AutoitX dll. In my Visual Studio 2005 C# project I add a reference to the AutoItX3.dll and all is fine and dandy. Everything works on my development machine where I also have AutoIt installed. Now I create a Visual Studio setup project and it detects the dependency of AutoItX3.dll and Interop.AutoItX3Lib.dll. And this is where I get the problem. How should I set the settings for the reference and dependencies? The defaults are: Reference in main project->AutoItXLib - Isolated: False Dependency in setup->AutoItX3.dll - Register: vsdrfDoNotRegister Dependency in setup->Interop.AutoItX3Libb.dll - Register: vsdraDoNotRegister If I leave them at the default values the application doesn't work on a computer that doesn't have autoit installed. I get this error message: "Retrieving the COM class factory for component with CLSID {1A671297-FA74-4422-80FA-6C5D8CE4DE04} failed due to the following error: 80040154." Now I change the settings to: Dependency in setup->AutoItX3.dll - Register: vsdrfCOMSelfReg Dependency in setup->Interop.AutoItX3Libb.dll - Register: vsdraCOMRelativePath This will work even on a computer that doesn't have autoit installed, but it brings another problem instead. If the computer has autoit installed and I then uninstall it after installing my application, my application stops working. I'm assuming that this is because autoit removes the registration of the specific guid associated with the autoit dll when it is uninstalled without knowing that my application is using the same guid. I hope I have made my problem clear enough. So the big question is of course, how can I prevent this uninstallation problem from happening? thanks /luddet Edited February 7, 2006 by luddet
w0uter Posted February 7, 2006 Posted February 7, 2006 maby you could register it yourself evry time you start the application. My UDF's:;mem stuff_Mem;ftp stuff_FTP ( OLD );inet stuff_INetGetSource ( OLD )_INetGetImage _INetBrowse ( Collection )_EncodeUrl_NetStat_Google;random stuff_iPixelSearch_DiceRoll
luddet Posted February 7, 2006 Author Posted February 7, 2006 maby you could register it yourself evry time you start the application.One would think there must be a simpler way...
Richard Robertson Posted February 8, 2006 Posted February 8, 2006 Maybe you could call it as a DLL, not a COM? Then it wouldn't need to be registered, just in one of Windows' search directories. PATH/currentdir/etc
luddet Posted February 8, 2006 Author Posted February 8, 2006 Maybe you could call it as a DLL, not a COM? Then it wouldn't need to be registered, just in one of Windows' search directories. PATH/currentdir/etcThat would probably work. But I don't know how to do that. Do you? Or anyone else here?
Zach Posted February 8, 2006 Posted February 8, 2006 One would think there must be a simpler way...It is not a bad idea to register you files every time your application starts irregardless - depending on how many external, 3rd party dlls or ocxs you are using (if any other than AutoIt) - some companies/individuals have a bad habit of when they do updates not changing the CLSID - though the component might have breaking changes in it.By re-registering your needed files at run time - you insure that if that situation does happen - you at least have the files you need when the program started
luddet Posted February 21, 2006 Author Posted February 21, 2006 It is not a bad idea to register you files every time your application starts irregardless - depending on how many external, 3rd party dlls or ocxs you are using (if any other than AutoIt) - some companies/individuals have a bad habit of when they do updates not changing the CLSID - though the component might have breaking changes in it. By re-registering your needed files at run time - you insure that if that situation does happen - you at least have the files you need when the program started How would I do this? And could there be any drawbacks? I was also thinking about perhaps using [DllImport("AutoItx3.dll")] in some way, but I don't know how to import a whole class this way.
ramadash Posted March 12, 2006 Posted March 12, 2006 I think you forget to add the reference to the autoit type library. I add the same (or similar) problem when making my .net autoitx wrapper. In your description you are only adding one reference to autoitx, wich if it is true, is not enough. first of all you need to add->reference->projects, the browse to your autoit dll (wich is probably what you already done). Once that is done, vs.net will create Interop.Autoit3x.dll. when this is done your need to add another reference but this time in add->reference->COM, select browse, and reference your newly created Interop.Autoitx.dll file. This worked for me, and once vs.net register it you will see autoit type library on the list when you click on COM.
flaxcrack Posted March 13, 2006 Posted March 13, 2006 I'm developing an application which makes use of the AutoitX dll. In my Visual Studio 2005 C# project I add a reference to the AutoItX3.dll and all is fine and dandy.Everything works on my development machine where I also have AutoIt installed.Now I create a Visual Studio setup project and it detects the dependency of AutoItX3.dll and Interop.AutoItX3Lib.dll.And this is where I get the problem. How should I set the settings for the reference and dependencies?The defaults are:Reference in main project->AutoItXLib - Isolated: FalseDependency in setup->AutoItX3.dll - Register: vsdrfDoNotRegisterDependency in setup->Interop.AutoItX3Libb.dll - Register: vsdraDoNotRegisterIf I leave them at the default values the application doesn't work on a computer that doesn't have autoit installed. I get this error message: "Retrieving the COM class factory for component with CLSID {1A671297-FA74-4422-80FA-6C5D8CE4DE04} failed due to the following error: 80040154."Now I change the settings to:Dependency in setup->AutoItX3.dll - Register: vsdrfCOMSelfRegDependency in setup->Interop.AutoItX3Libb.dll - Register: vsdraCOMRelativePathThis will work even on a computer that doesn't have autoit installed, but it brings another problem instead.If the computer has autoit installed and I then uninstall it after installing my application, my application stops working.I'm assuming that this is because autoit removes the registration of the specific guid associated with the autoit dll when it is uninstalled without knowing that my application is using the same guid.I hope I have made my problem clear enough.So the big question is of course, how can I prevent this uninstallation problem from happening?thanks/luddetDid you make sure that the property of the Local Copy of the Reference read as true. I have gotten it to work. See my screen shot. [quote] Gilbertson's Law: Nothing is foolproof to a sufficiently talented fool.Sandro Alvares: Flaxcrack is please not noob! i can report you is stop stupid. The Post[/quote]I made this: FWD & MD5PWD()
flaxcrack Posted March 13, 2006 Posted March 13, 2006 Did you make sure that the property of the Local Copy of the Reference read as true. I have gotten it to work. See my screen shot.I'm sure you also want it to be bundeled for deployment sake too. What is your method of deployment? [quote] Gilbertson's Law: Nothing is foolproof to a sufficiently talented fool.Sandro Alvares: Flaxcrack is please not noob! i can report you is stop stupid. The Post[/quote]I made this: FWD & MD5PWD()
darkxiii_ndp Posted May 1, 2006 Posted May 1, 2006 Using RegFree COM, you can deploy an application that uses a COM component without registering it on the user's machine, thus avoiding the notorius collection of problems commonly referred to as "DLL Hell." RegFree COM even allows you to run multiple versions of a COM component on the same machine.RegFree COM works by automatically generating a manifest from the COM component's type library and component registration on the developer's machine. Therefore, while it is not required to install the component on the end users' machines, a copy must be registered on the developer's machine.To enable use of RegFree COM, all COM components referenced in Visual Studio 2005 now have a new Isolated property. If you set Isolated to true, the component can be deployed through ClickOnce, and Visual Studio 2005 will automatically do all the work to deploy the COM component onto the target machine (without needing to register it on the target machine).
Insolence Posted December 10, 2006 Posted December 10, 2006 (edited) When I try to set "Isolated" to true, I get this exception: "System.ArgumentNullException was unhandled Message="Value cannot be null.\r\nParameter name: activationContext" Source="mscorlib" ParamName="activationContext" StackTrace: at System.Runtime.Hosting.ApplicationActivator.CreateInstance(ActivationContext activationContext, String[]activationCustomData) at System.Runtime.Hosting.ApplicationActivator.CreateInstance(ActivationContext activationContext) at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssemblyDebugInZone() at System.Threading.ThreadHelper.ThreadStart_Context(Object state) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading.ThreadHelper.ThreadStart()" EDIT: I don't know what I changed, but now it at least runs fine with debugging, but when I release and execute it without a I get an unhandled exception. Edited December 10, 2006 by Insolence "I thoroughly disapprove of duels. If a man should challenge me, I would take him kindly and forgivingly by the hand and lead him to a quiet place and kill him." - Mark TwainPatient: "It hurts when I do $var_"Doctor: "Don't do $var_" - Lar.
daluu Posted September 15, 2008 Posted September 15, 2008 (edited) See also related post on how to use AutoIt as C++ DLL and not a COM DLLhttp://www.autoitscript.com/forum/index.php?showtopic=72905 Edited September 15, 2008 by daluu
jcddcjjcd Posted September 29, 2008 Posted September 29, 2008 The previous link refers to a post of mine. I can see where you are coming from, the use of the Autoit COM object is very appealing but I never got it to work in a satisfactory way when deploying to other machines. The RegFree approach does not work well for AutoIt and when you read all the MS documentation about RegFree you can see that is not a solution for every case. That is why I took the trouble to provide the examples of using all of the dll functions via C# calls. Thanks to AutoIt for providing the dll version and I hope that always will be so. Regards, John.
amokoura Posted September 29, 2008 Posted September 29, 2008 ...The RegFree approach does not work well for AutoIt.....Does this help at all?: RegFreeCOM Au3X Example, Use RegFree to Solve DLL Hell, Even With COM Clients
jcddcjjcd Posted September 30, 2008 Posted September 30, 2008 Does this help at all?: RegFreeCOM Au3X Example, Use RegFree to Solve DLL Hell, Even With COM ClientsIt is true that the example above does work, I tried it way back and again today. It would be great if the source files were made available so we can see how it was done. I spent a couple of days with settings in VS but never got it to work reliably in my apps. The source may provide the answer. Perhaps the manifest was made manually rather than using the MS suggestion of letting VS do the work.Regards,John.
jcddcjjcd Posted October 1, 2008 Posted October 1, 2008 Well I looked at the source and it just shows the standard way of doing it. Very simple really. I still get problems though when I use it in my own ClickOnce deployments. Particularly errors stating that the assemblies need to be strong signed. Using the dll with dllImport still gives the same functionality but with no deployment issues. Regards, John.
amokoura Posted October 1, 2008 Posted October 1, 2008 Thank you for sharing your experiences. I was really attracted to the regree solution and was about to use it. Seems that the best approach is to use the plain dll. At least then I wouldn't have to struggle with the same problems as you have been fighting with..
evlo Posted July 11, 2011 Posted July 11, 2011 (edited) Can you please help me how to make app work without need to register the dll usin regsvr32? When i tried to set isolated=true and enable interop types = false i get this error: Unable to cast COM object of type 'AutoItX3Lib.AutoItX3Class' to interface type 'AutoItX3Lib.IAutoItX3'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{3D54C6B8-D283-40E0-8FAB-C97F05947EE8}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)). When i tried to set isolated=true and enable interop types = true i get this error: Unable to cast COM object of type 'System.__ComObject' to interface type 'AutoItX3Lib.AutoItX3'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{3D54C6B8-D283-40E0-8FAB-C97F05947EE8}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)). With isolted=false i get classic Retrieving the COM class factory for component with CLSID {1A671297-FA74-4422-80FA-6C5D8CE4DE04} failed due to the following error: 80040154 Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)). Edited July 11, 2011 by evlo
JohnOne Posted July 11, 2011 Posted July 11, 2011 You couls always use the dll directly instead of using COM. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
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