Silver Light Printing and Image Generations

Wednesday, August 18, 2010














Silverlight Element To Element Binding

Asp.net translation

Tuesday, August 3, 2010



DownLoad Source Code

By Usama Wahab Khan

Computer users..... know about CARPAL TUNNEL SYNDROME‏

For everyone who works daily on a computer. The mistakes daily mouse and keyboard usage will result in Carpal Tunnel Syndrome ! Use the mouse and keyboard correctly . View below for the surgery of a patient suffering from Carpal Tunnel Syndrome followed by the RIGHT TECHNIQUES for usage....









Correct way to work on the Computer













Hand Exercises for Carpal Tunnel Syndrome :











KINDLY SEND THIS TO EVERYONE YOU DON'T WANT TO SUFFER FROM THIS!

Silverlight Drag and Drop TreeView

Wednesday, July 7, 2010



Update From Dataset ADO.Net

Sunday, July 4, 2010


he System.Data namespace consists mostly of the classes that constitute the ADO.NET architecture. The ADO.NET architecture enables you to build components that efficiently manage data from multiple data sources. In a disconnected scenario (such as the Internet), ADO.NET provides the tools to request, update, and reconcile data in multiple tier systems.

//Initialize Connection from database

SqlConnection cn = new SqlConnection("connectionString");

//add this Query command with connectionstring parameters to data adopter to get schema form database

SqlDataAdapter da = new SqlDataAdapter("Select * from tablename",cn);

// Dataset Object

DataSet ds = new DataSet();

//fill database schema to dataset

da.FillSchema(ds, SchemaType.Mapped);


DataRow dRow1 = ds.Tables["workers"].NewRow();

dRow1[1] = "Value1"; //textBox1.Text;

dRow1[2] ="Value2"; //textBox2.Text;

dRow1[3] ="Value3";///textBox3.Text;

dRow1[4] = "Value4";///textBox4.Text;

dRow1[5] = "Value5";//textBox5.Text;

ds.Tables["workers"].Rows.Add(dRow1);

SqlCommandBuilder builder = new SqlCommandBuilder(da);

da.Update(ds);

ds.AcceptChanges();

Thank Microsoft for Send me Lovely Gifts Thank

Thursday, July 1, 2010

Few Days ago Microsoft Pakistan send a gift hamper with lots writing pad and in the morning i get big gift pack for Microsoft USA THANK FOR GIFTS I LOVE THE I LOVE THE SHIRTS THANK YOU