
Search In
Hi Reader !
From this blog we can learn how to add google captcha in your web site using c# .
To use a Google Captcha(or reCaptcha) in your web application, you first have to follow below steps :
1) Open url ‘https://www.google.com/recaptcha/int
I am doing some painting work and it involves creating complex selection and that selection highlight distracts me. If there is any way to hide that please let me know. Thanks
Structure is basically a user defined datatype which is a collection of heterogeneous elements.
Each element of a structure is called a member.
It works like a template in C++ and class in Java.
It is used to store student information, employee
Currently I am using this code:
InputAmount = System.Int32.Parse(GameObject.FindGameObjectsWithTag("Amount")[0].GetComponent().text);
Declare with float but how can I get a decimal number from the text field? Because I am doing a calculator with it
Java Is a platform Independent Language, but the JDK Java Development Kit is used to developed wide range of applications. Java Development Kit includes some other like JRE and JVM for the complete development.
JRE Java Runtime Environment as a Part
The java by default sorting is based on either number or string. If we try to sort a alphaneumeric it will be treated as an string so the sorting will come something like:
1abc
11abc
2abc
instead of
1abc
2abc
11abc
So in such cases we can use our
HI all,
If you want to convert NSString to NSDate ,then you must use NSDateFormatter to convert please follow this code .
NSString to NSDate
In Objective-C :-
NSString *dateString = @"11-11-2015";
NSDateFormatter *dateFormatter = [[NSDateFormatt
Here I have created and example of Touch Listener Image. In this example a image can pull left, right, up and down easily. It can be used to shift your mobile app icon left and right. For this in below code I have used MotionEvent() method. Below exa
You can convert CIImage to NSImage by using the following function:
-(NSImage*)fromCIImage:(CIImage*)ciImage
{
NSCIImageRep *imageRep = [NSCIImageRep imageRepWithCIImage:ciImage];
NSImage *_image = [[NSImage alloc] initWithSize:[imag
To convert NSImage to CIImage following function can be used.
-(CIImage*)fromNSImage:(NSImage*)image
{
NSData * tiffData = [image TIFFRepresentation];
NSBitmapImageRep * bitmap;
bitmap = [NSBitmapImageRep imageRepWithData:tiffData];
