Posts

ASP.NET Server Controls Tutorial

Image
In this tutorial, you will learn how to build an ASP.NET server control by creating a Hello World Control. Along the way, we'll review the fundamental process of server control development from scratch. Creating a Custom Control Project First, we need to create a new class library project to hold our custom controls. By creating the custom control in a separate class library, we can compile the project into a separate DLL and use the custom control in any application that requires it. Open your ASP.NET project with Visual Studio or Visual Web Developer. In Solution Explorer, right click the solution name, and select Add New Project from the context menu. In the Add New Project dialog box, choose the project type to be a Web project, and select ASP.NET Server Control as the template, like so:

5 Ways to handle button click event in android

Image
When writing software very rarely is there only one way to do this things,this is true when wiring up View events,five methods are shown here. 1.U sing   Member   Class public   class  main  extends  Activity  {     @Override      public   void  onCreate ( Bundle savedInstanceState )   {          super . onCreate ( savedInstanceState ) ;         setContentView ( R. layout . main ) ;          //attach an instance of HandleClick to the Button         findViewById ( R. id . button1 ) . setOnClickListener ( new  HandleClick ( ) ) ;      }           private   class  HandleClick  implements  OnClickListener {          public   void  onClick ( View  arg0 )   {    ...

Simple File System Watcher in C#

Image
In this article I describe the usage of the FileSystemWatcher controller provided by .Net Framework , using C# More information about FileSystemWatcher In C# is here.. Source Code :

Android Activity Animation Tutorial

Image
In this tutorial you can learn how to animate two activities like android navigation drawer style. Android two activity animation like navigation drawer. First of all create 2 activities. MainActivity SubActivity Then 2 XML Files (simple way two xml enough,but we need another two xml to accomplish reverse animation) slide_in_left.xml slide_out_left.xml

Project IGI -I am going in Free Download

Image
Project IGI:1 I am going in - Free Download Full Rip 229 Mb Download from here size:  229 MB (240,114,579 bytes) password : devoptions.blogspot.com

Difference between PHP isset() vs empty() vs is_null()

isset() - Determine if a variable is set and is not NULL empty() - Determine whether a variable is empty is_null() - Finds whether a variable is NULL PHP has different functions which can be used to test the value of a variable. Three useful functions for this are isset(), empty() and is_null(). All these function return a boolean value. If these functions are not used in correct way they can cause unexpected results. Value of variable ($var) isset($var) empty($var) is_null($var) “” (an empty string) bool(true) bool(true) ” ” (space) bool(true) FALSE bool(true) bool(true) TRUE bool(true) array() (an empty array) bool(true) bool(true) NULL bool(true) bool(true) “0″ (0 as a string) bool(true) bool(true) 0 (0 as an integer) bool(true) bool(true) 0.0 (0 as a float) bool(true) bool(true) var $var;  (a variable declared, but...

MS-DOS And Word Source Code Available To Public

Image
On Tuesday (25-03-2014), First time in the history Microsoft release  MS-DOS and Word for Windows source code for early versions now available in the Computer History Museum . The museum has done an excellent job of curating some of the most significant historical software programs in computing history. As part of this ongoing project, the museum will make available two of the most widely used software programs of the 1980’s, MS DOS 1.1 and 2.0 and Microsoft Word for Windows 1.1a, to help future generations of technologists better understand the roots of personal computing.