Script error with gmlib 1.5.3 & 1.5.0 in C++ Builder XE2 - gmlib

I used Webbrowser, GMMap, GMMarker, GMPolyline in my C++ project to show the route that I had walked through and the realtime position.
At the beginning,I had used the version of 1.5.0 GMlib without any errors before. However, there were a lot of script errors when the project begin to execute.
As a result, I have tried the newest version 1.5.3 GMlib in my C++ builder. And I had solved the problems temporarily. The next day, all the script errors problems come back again. So, it seems that this problem can not be solved by setup newest version of GMlib. Is there any other way to solve this problem ?
Thanks for the people who would like to help me solve the problem!
The script error is like the following picture:

Related

Google Map using Ionic

What went wrong:
Execution failed for task ':compileDebugJavaWithJavac'.
Compilation failed; see the compiler error output for details.
I was trying to use ionic native google maps for an application using ionic 3. I did follow the steps mentioned in ionicframework site and when i took product build it shows lot of error with the following comments along with it. Also when i run 'ionic serve' the area where is to be displayed is blank.
I didnt get what is this error. I searched and went through many opinions and options but nothing did help. I hope anyone could help me to get solve this error.
the errors displayed are the syntax errors of some java files related to the plugin

error CS2001: Helpers.deps.json could not be found

I create a new ASP.NET Core Web Application project. I have not made any changes to the code. I click on Run and I get the following error:
~\documents\visual studio 2015\Projects\Tag Helpers\src\Tag Helpers\error CS2001: Source file '~\documents\visual studio 2015\Projects\Tag Helpers\src\Tag Helpers\Helpers.deps.json' could not be found. Tag Helpers C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\DotNet\Microsoft.DotNet.Common.Targets 262
File: Microsoft.DotNet.Common.Targets
I am using Visual Studio 2015 for Web. All of my previous projects are running fine. It's just that whenever I try to create a new project, I am getting this error. I have no idea why this error is coming. I also don't know what else to put here which could help get more idea on the problem.
This might seem silly, but what I did was to completely close this solution/project and open a new one. I think the files had not loaded properly the first time I created the project.
I can be wrong, but this worked for me.

adt error - "... is not part of a Mac OS X Native Extensions framework"

I'm trying to package some code up as an ANE, something we've done before in house. However we're currently stuck on an ADT error which I can't seem to wrap my head around.
When running the following from a sh file, I'm getting an error.
Shell script:
ADT="/Applications/air/bin/adt"
NAME="VideoRoll"
AFILE="libVideoRollANE.a"
$ADT -package -target ane $NAME.ane extension.xml -swc $NAME.swc -platform iPhone-ARM -platformoptions platformoptions.xml library.swf $AFILE
Error:
platformoptions.xml is not part of a Mac OS X Native Extensions
framework
All of the files are in the correct place and being clearly picked up by adt, as I'd assume there would be something else I'd be getting back. If you're after the source code, it's an open source library on bitbucket that I've forked and made a couple of changes to. I'm trying to compile it with Adobe AIR SDK 20 to try and fix an issue we're getting but I'm struggling to just build it from the base source right now. The source can be found here: https://bitbucket.org/lostirc/videoroll/src .
Any suggestions would be great, I'm up for trying anything now. I've modified nearly everything I can think of and tried various different orders for the command, it seems if I remove the platformoptions flag and value, then it gives the same error about library.swf, so I'm not sure it's directly related to the platformoptions.xml.
I worked around the problem by running the same command on Windows. This isn't really a solution but a potential workaround for anyone having the same issue. If anyone can post a good answer then I'll accept that, but for now this is the best answer I've got.

Problems including comdef.h

I'm trying to port some existing code to WP8 and have come across a problem.
The code i am porting uses a smart pointer thats is defined in comdef.h but for some reason when I try and include comdef.h I get the following error.
comdef.h(25): fatal error C1083: Cannot open include file: 'olectl.h'
I understand what the error means and it seems there is no trace of "olectl.h" in the WP8 SDK include paths on my machine. Is anyone else having this problem, I've tried "repairing" my installation of "Visual studio 2012 Express for Windows Phone"
I have found some code that appears to include comdef.h and has gotten around the missing macro problem the link at the end of this post is talking about by not using the macro at all and explicitly using the code that the macro would expand to.
(Here is the code that does what I want to: https://devel.nuclex.org/framework/browser/graphics/Nuclex.Graphics.Native/trunk/Source/Rasterization/Direct3D11/Direct3D11Api.h?rev=1782)
Has anyone else experienced this, or could someone with the SDK installed try including comdef.h somewhere to see if it works for them.
The missing macro link:
http://connect.microsoft.com/VisualStudio/feedback/details/751127/com-smartptr-typedef-causes-errors-when-used-in-winrt-build
Thanks.
Yes, I see this too, so it appears this is "by-design".
Basically if the API isn't listed on MSDN in the list of supported COM/Win32 APIs, then it isn't a supported API on Windows Phone 8. It looks like only the combaseapi.h header is supported.
_com_ptr_t<T> and it's friends aren't on the list...

Configuring xUnit for CUnit in Hudson CI

I want to use Hudson CI for my c-project, which also uses CUnit. However I've also come to understand that there is currently no plugin that supports CUnit. So I read on the internets that this might be possible using the xUnit plugin by translating between CUnit and JUnit, but using the supplied file yields an error.
[xUnit] [ERROR] - The plugin hasn't been performed correctly: Conversion error Error to convert the input XML document
So my question is; has anyone successfully run CUnit tests in hudson. And, in that case, how?
#Nubsis: Did you by any chance copy & paste from the listing? The downloadable file seems to work just fine.
If you found errors in it let me know so I can fix them and put an updated version on my blog so others don't run into the same problems you had.
As it turns out, there were some syntax errors in the xslt-file provided in the link. After correcting this and some identifiers it worked out well.