How to create XML document programatically in c# | Error Log Creator using Csharp in XML
While working in .net for some time, i today came up with a requirement in which i had to create a error logging system for an n-tier application. I could…
AbsoluteLayout – Android Layout Tutorial Series-5/5
Introduction of AbsoluteLayout AbsoluteLayout An Absolute Layout lets you specify exact locations (x/y coordinates) of its children. Absolute layouts are less flexible and harder to maintain than other types of layouts without…
TableLayout – Android Layout Tutorial Series-4/5
Introduction of TableLayout TableLayout A layout that arranges its children into rows and columns. Each layout has a set of attributes which define the visual properties of that layout. Among them some…
FrameLayout – Android Layout Tutorial Series-3/5
Introduction to FrameLayout FrameLayout : is designed to block out an area on the screen to display a single item. Generally, FrameLayout should be used to hold a single child view, because…
RelativeLayout – Android Layout Tutorial Series-2/5
Introduction of RelativeLayout Android RelativeLayout enables you to specify how child views are positioned relative to each other or to the parent. Each layout has a set of attributes which define…
LinearLayout – Android Layout Tutorial Series-1/5
Introduction of Android Layout Tutorial : LinearLayout : A Layout that arranges its children in a single column or a single row either Horizontally or Vertically using orientation method. However the Horizontal…
Layouts of Android – Android Layout Tutorial Series
Welcome to Android Application Development !!! From Today, i am going to write the tutorials which will help for the beginners to understand the basic functionality of ANDROID DEVELOPMENT. Here…
Ever wondered why we do not use numeric fields as primary key ?
Each one of us might be familiar that when we create a 'Department' table we surely create a column named 'DeptId' which will end up as our primary key column.…
Create Database and Create Table in MySQL using PHP
In this session of PHP, we will create database and table in MySQL using PHP : You can also create it using PHPMyAdmin. We will use CREATE DATABASE & CREATE…
How To Make A Scrolling Photo Gallery With UIScrollView
This tutorial will guide you through the process of creating a scrolling paged photo gallery using UIScrollView. Specifically you’ll learn how to set up the UIScrollView in programmatically, and how to…