Friday 24 June 2016

get current location in android example code.

Below demonstration is in Visual Studio 2015, cordova application to get the current location in android. It will give the overview that how you will get your current location in google map. Like Below.


Follow the below steps to get current location in android code.

Sunday 19 June 2016

Issue : procedure entry point __crtCreateSymbolicLinkW could not be located in the dynamic link library MSVCR110.dll.

Issue :

if you are getting below issue while starting the visual studio 2012,

---------------------------
devenv.exe - Entry Point Not Found
---------------------------
The procedure entry point __crtCreateSymbolicLinkW could not be located in the dynamic link library MSVCR110.dll.
---------------------------
OK
---------------------------

Solution

Just install Visual C++ Redistributable for Visual Studio 2012 Update 4 from below link,
Based on requirement download 32bit or 64bit setup.

https://www.microsoft.com/en-in/download/details.aspx?id=30679

Sunday 5 June 2016

Difference between string and String builder

Show below for demonstration of  Difference between string and String builder.

String
String belongs to system namespace. Its commonly use reference type.  If we are not perform any operation string is fast.  We can initialize the string directly like below.

string str = "name";