This is default featured slide 1 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured slide 2 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured slide 3 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured slide 4 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured slide 5 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
Thursday, 9 May 2013
CREATE DIGITAL CLOCK IN C#
In my last post we are learn about analog clock but now we are going to creating digital clock.
Monday, 6 May 2013
HOW TO STOP COPY PASTING
Welcome Back !!!!
Now we are creating a very simple but very use full application through ADO.NET. As we see our heading is "how to stop copy pasting" .For this application we are using c# language which is .net saturated language.
very simply i am using a form from visual studio and take text box.
like this image :
Now, we are using a event like mouse-down and key-down event.
c# code :
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication4
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void textBox1_MouseDown(object sender, MouseEventArgs e)
{
textBox1.SelectionLength = 0;
}
private void textBox1_KeyDown(object sender, KeyEventArgs e)
{
textBox1.SelectionLength = 0;
}
}
}
and the ouput come like this image :
HOW TO CREATE ANALOG CLOCK IN JAVA
Saturday, 4 May 2013
How to auto generate id in ado.net
Now let’s create database using SQL2008 :
This is the image after the query was executed successfully:
I give a snapshot of visual studio design path:
I am using c# language for this framework but you can also us the another .NET
Output come like this image:
If we click on the save button then error generated like this image
And if we fulfill all the text then student ID will be auto generated like this image:
Friday, 3 May 2013
How to move an image in ADO.NET
//the output comes like football move around the earth.