|
Rank: Newbie Groups: Member
Joined: 8/14/2018 Posts: 2
|
Dear Team,
I have downloaded latest version of EO total 23.2.14.0 version and tested sample tabbedbrowser.exe and it is working. but when i compile CS sample project and run exe on production then it is giving attached image manager loaded error. Same error is coming in 20.xxx. version. Error : "Failed to start Image Manager".
Kindly help.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,217
|
Hi, Please try to place eowp.exe inside the same directory as EO.Base.dll. See here for more details: https://www.essentialobjects.com/doc/common/eowp.htmlThanks!
|
|
Rank: Newbie Groups: Member
Joined: 8/14/2018 Posts: 2
|
Dear Sir, thanks for the quick reply The provided solution not worked by keeping exe on the same path. Kindly help.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,217
|
Hi, Please try to collect runtime logs and send the logs to us. First you would need to modify your code to something like this:
Code: C#
try
{
//run code that causes the image manager error
}
catch
{
string s = EO.Base.Runtime.GetLogs();
//Save s into a file and send the file to us here in zip format
}
See here for more details on how to send test file for us. https://www.essentialobjects.com/forum/test_project.aspxThanks!
|
|