Closed GoogleCodeExporter closed 9 years ago
The version of the plugin is 6.0.1.2032, date 2010-12-11 08:15
Original comment by stefan.g...@gmail.com
on 28 Feb 2011 at 10:41
Hi, I think this is due to the 64 bit version of IE that you are running. I
believe I may have forgotten to target the correct cpu in the latest build of
the controls :(
Basically the configuration platform should be set to target x86 rather than
AnyCpu.
The issue is that DLLs compiled with the /platform:anycpu will execute on the
same CLR as the
process into which it is being loaded. Because the plug-in DLL is 32bit this
causes errors with the 64bit IE. Hopefully swapping the target platform should
work as assemblies compiled with /platform:x86 will execute on the 32 bit CLR
running under WOW64.
The TestApplication works because the target platform is correct.
If you open the file 'FC.GEPluginCtrls.csproj' and replace any occurrence of
"anycpu" with "x86" and then rebuild it should work.
I will change this myself and do a commit asap.
Original comment by fraser.c...@gmail.com
on 1 Mar 2011 at 1:29
Hi, I am only referencing the DLL included in the bin folder of the
TestApplication solution that can be downloaded here. The source for the
FC.GEPluginCtrls project that I downloaded from here seems to be some previous
version, so I am not including the project in my own solution. I have already
tried to compile my own solution with the projects in it set to x86, but the
outcome remains the same.
Original comment by stefan.g...@gmail.com
on 1 Mar 2011 at 7:12
OK, I had already set the target platform to x64, and after I re-started Visual
Studio, it properly compiled the application, and now the plugin works. :-)
One question: is there a way to display crosshairs in the GEWebBrowser? Right
now I am using a screen overlay placed in the middle...
Original comment by stefan.g...@gmail.com
on 1 Mar 2011 at 5:54
Attachments:
One more question: after I close my application, the geplugin remains as a
process. Is that as purposed?
Original comment by stefan.g...@gmail.com
on 1 Mar 2011 at 10:15
Glad that got it!
"after I close my application, the geplugin remains as a process. Is that as
purposed?"
...Yes the plugin will remain running until it finishes garbage collection.
Once all the objects it uses have been disposed and any memory has been freed
then the plug-in process will end. This is the exact same behavior when the
plugin runs in a normal browser window.
If for any reason you wish to force the termination of the plug-in you can call.
GEWebBrowser.KillAllPluginProcesses()
Which will actively force any plug-in instances to exit. Although it would be
very rare that you would need to call this...
Just to note I will make sure I switch the target platform in the next commit!
Best,
F.
Original comment by fraser.c...@gmail.com
on 1 Mar 2011 at 11:30
I got the same error (line 59, application is null).
I did not installed GoogleEarthPlugin properly. (working on my project
deployment, with NSIS script)
After a new installation (manually) it works, without error.
Regards,
Original comment by decore...@gmail.com
on 2 Mar 2011 at 10:36
@decore Great stuff
Original comment by fraser.c...@gmail.com
on 6 Mar 2011 at 11:30
Original comment by fraser.c...@gmail.com
on 6 Mar 2011 at 11:31
Original comment by fraser.c...@gmail.com
on 6 Mar 2011 at 11:32
I have Problem with FC.GEPluginCtrls.Geo;and Httpsserver so Test_Application-6
it doesnt work. i need ASAP to help.
i developed small software but i am not closing GoogleEarth splash screen, and
background google earth services open but not closed.
I dont find ANY KIND of document related about API.
Help me ASAP Please
Original comment by earslan2...@gmail.com
on 10 Apr 2011 at 5:14
[deleted comment]
@earslan2005
"I dont find ANY KIND of document related about API."
http://code.google.com/p/winforms-geplugin-control-library/w/list
http://code.google.com/apis/earth/documentation/reference/index.html
http://code.google.com/apis/kml/documentation/kmlreference.html
http://code.google.com/apis/earth/documentation/
All on the home page of this project.
Also, please start a new issue if you have a separate problem to the one being
discussed in this thread.
Thanks.
Original comment by fraser.c...@gmail.com
on 5 Feb 2012 at 11:00
Original issue reported on code.google.com by
stefan.g...@gmail.com
on 28 Feb 2011 at 10:38Attachments: