Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

C# code to add google captcha in your web site

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

How to hide the selection but still use it in Photoshop?

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 in C

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

How can I get a decimal number in text field?

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 Development Environment Installation

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

Sort alphanumeric string with awareness of number using Java comparator

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

Convert NSString to NSDate and vice versa

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

How to make Touch Listener Image in Android.

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

How to convert CIImage to NSImage

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

How to convert NSImage to CIImage

To convert NSImage to CIImage following function can be used. -(CIImage*)fromNSImage:(NSImage*)image { NSData * tiffData = [image TIFFRepresentation]; NSBitmapImageRep * bitmap; bitmap = [NSBitmapImageRep imageRepWithData:tiffData];

1 39 320
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: