I have a C# web service that is calling COM objects to access a FileNet imaging system. The service is occasionally encountering the following error when making a call to the FileNet COM objects: System.Runtime.InteropServices.COMException (0x80040005): Need to run the object to perform this operation (Exception from HRESULT: 0x80040005 (OLE_E_NOTRUNNING)) [...] read more
I am attempting to raise an event in .NET and have it picked up through COM by a VBA application. This answer has been quite helpful in getting my events to show up properly in the type library. On the VBA side, everything looks legit. I have an object variable [...] read more
I want to save in image to other folder but it throw this Exception system.runtime.interopservices.externalexception (0x80040005) this is my code : pictureBox1.Image.Save(@"" + Application.StartupPath + "\\Image" + "".ToString() + @"\" + @"personeli_" + textBox4.Text + ".jpg"); This program works when I run it in visual studio but when I create [...] read more
I am trying to start mysqld on one of my data nodes in NDBCluster. The node connects to the management server correctly, but when trying to start mysqld, the start fails when it encounters an old InnoDB table I have. I have edited my.cnf to include [mysqld] innodb=OFF default-storage-engine=ndbcluster and [...] read more