POST
|
I am attempting to make an add-in for ArcMap that uses an embedded Chrome browser using CefSharp. The project builds successfully but when I try to open the form with the browser I get error: An unhandled exception of type 'System.IO.FileNotFoundException' Could not load file or assembly 'CefSharp.Core.dll' or one of its dependencies. From the CefSharp documentation I have made sure of following: -set to build x86 rather than AnyCPU -Visual Studio C++ redistributables are installed and up to date -using frameword 4.5.2 -checked that all required CefSharp files are in bin The only other discussion I can find on this is here I am not familiar with the Assembly.GetManifestResourceStream method or creating a wrapper to preload files. Before going down that rabbit hole wondering if someone else already had a simple solution.
... View more
03-01-2017
06:44 PM
|
0
|
0
|
571
|
POST
|
Michael thanks - please keep us posted on what you learn. If I can think of any other possible causes, I'll get back to you. One note, it sounds like you're managing some large datasets, so if you aren't familiar with our Image Management Workflows, you may find helpful information here: http://esriurl.com/ImageManagement . Specifically re: these preprocessed orthophotos from 2012 and 2015, we've published some scripts that you may want to consider using to automate your build/maintenance process - see here http://www.arcgis.com/home/group.html?id=b65f2601e0084e32afab3eb488fa8a67&q=preprocessed%20orthos&t=group&focus=group&st… (These scripts are in the AGOL Group referenced from the Image Management Workflows landing page) Cody B
... View more
05-17-2016
09:32 AM
|
1
|
0
|
70
|
POST
|
Thank you for posting this. I reinstalled my entire dev environment trying to fix this error and of course I still had the error. This fixed it. I am sure this needs added to a help page on ESRI's documentation. There is nothing in there that would help you find out how to do this. Did you find this out from customer support?
... View more
09-10-2015
09:57 AM
|
0
|
0
|
10
|
POST
|
Good call. I tried that today and it is now doing the update. I had not been always changing version number. Not the best practice but was just for in-house use.
... View more
10-10-2012
07:20 AM
|
0
|
0
|
2
|
POST
|
I have answered my own question. Need to use IEnumFeatureSetup to setup what fields are returned with selection Dim enumFeat As IEnumFeature = Nothing Dim selFeat As IFeature Dim enumFeatSet As IEnumFeatureSetup enumFeat = My.ArcMap.Document.FocusMap.FeatureSelection enumFeatSet = enumFeat enumFeatSet.AllFields = True selFeat = enumFeat.Next Do Until selFeat Is Nothing MsgBox(selFeat.OID) selFeat = enumFeat.Next Loop
... View more
09-27-2012
08:45 AM
|
0
|
0
|
1
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:23 AM
|