Sunday, June 2, 2013

C# Tutorial In Urdu - Introduction to Visual C#

19 comments:

  1. ya vidio download nai ho rhai plz help me how to download

    ReplyDelete
    Replies
    1. Hi, try to download directly from dailymotion.

      Delete
  2. yr isko Download kasa Karin ga???

    ReplyDelete
    Replies
    1. You are not the only one to download it. I prefer you watch it online so that i earn some money as well. These videos requires a lot of hard work and time and to get something out of it, I use adsense that's why you see ads on the videos. So that I calm some money back from google.

      Delete
  3. can i have this complete series please i want to purchase.

    ReplyDelete
    Replies
    1. All the videos are on Youtube. This course is free and no purchasing is required.

      link below.

      https://www.youtube.com/playlist?list=PLUyYwyJA_WfQd5zeCU890TDFQAqboekyc

      Delete
  4. AOA!
    Sir, I hope you will be alright. I have a problem about installing Visual studio Professional 2010. Where can I get free setup VS Pro 2010.

    Thanks!

    ReplyDelete
    Replies
    1. Go to the link below.
      http://stackoverflow.com/questions/8894654/where-can-i-download-visual-studio-2010-trial-version

      Delete
  5. private void button4_Click(object sender, EventArgs e)
    {
    con.Open();
    sqlCommand cmd= con.CreateCommand();
    cmd.CommandType=CommandType.Text;
    cmd.CommandText = "INSERT INTO NEW_DATABASE12(name,city,country) Value('" + textBox1 + "','" + textBox2 + "','" + textBox3 + "','" + textBox4 + "')";
    cmd.ExecuteNonQuery();
    con.Close();
    MessageBOx.Show("data insert succes fully ");
    }
    please ap bata sakty han es ma eeror q arah ha

    ReplyDelete
    Replies
    1. Write it like (Problem is that you have 3 columns but providing 4 values plus you are using textBox1 instead of textBox1.Text)

      private void button4_Click(object sender, EventArgs e)
      {
      con.Open();
      sqlCommand cmd= con.CreateCommand();
      cmd.CommandType=CommandType.Text;
      cmd.CommandText = "INSERT INTO NEW_DATABASE12(name,city,country) Value(@name, @city,@country)";

      cmd.Parameter.AddWithValue("@name",textBox1.Text);
      cmd.Parameter.AddWithValue("@city",textBox2.Text);
      cmd.Parameter.AddWithValue("@country",textBox3.Text);
      cmd.ExecuteNonQuery();
      con.Close();
      MessageBOx.Show("data insert succes fully ");
      }

      Delete
  6. Bhai Ali Asad Sahab, Really Thankful ............... to you .......
    But Bhai Pls Eak bat aur ....... Aapne Website par Bahut acche se arrange Kiya huya hain... So pls Your Chennel par bhe apnee website ka add zaroor kare........... Muzhe Bhe Do mahine baad pata chala hain ke aapke website hain ..... Maine Dhyan he nahi diya ..... Pls Prefer Website ..

    ReplyDelete
  7. Bhai kya ye calculator properly kam krega ya wsy hi design bna hy

    ReplyDelete