Hi, I have internet connection to my desktop PC. I want to share internet from my desktop pc to Laptop using Bluetooth devices programatically. Thanks, Venky.
venki
Hi, I have internet connection to my desktop PC. I want to share internet from my desktop pc to Laptop using Bluetooth devices programatically. Thanks, Venky.
venki
Thnaks, But it gives only our system workgroup but i want all workgroups available on LAN
venki
Hi, How can we get all workgroups on LAN also computers in that workgroup. Thanks, Venky.
venki
I mean getting all IP addresses in Default Gateway in LAN...
venki
Take One Textbox anb Button........ Write the following code for Button click.... SqlConnection cn = new SqlConnection("server=ms08; uid=sa; pwd=;"); string Qry ="SELECT Count(*) FROM master.dbo.sysdatabases WHERE name = '" + TextBox1.Text + "'"; SqlDataAdapter da = new SqlDataAdapter(Qry,cn); DataSet ds =new DataSet(); da.Fill(ds); DataRow dr=ds.Tables[0].Rows[0]; if(dr[0].ToString() == "1") MessageBox.Show(Exists..") else MessageBox.Show("Does not exists....");
venki
First You should take 2 textboxes and one button.. then write the following code Globally.... static DataSet ds = new DataSet(); static DataTable dt=new DataTable(); and in pageload event you should paste this code if(!IsPostBack) { dt.Columns.Clear(); ds.Clear(); dt.Rows.Clear(); dt.Columns.Add("Name"); dt.Columns.Add("Number"); ds.Tables.Clear(); ds.Tables.Add(dt); DataGrid1.DataSource =ds; DataGrid1.DataBind(); } and Write code for button1.. DataRow r=dt.NewRow(); r[0]=TextBox1.Text; r[1]=TextBox2.Text; ds.Tables[0].Rows.Add(r);// dt.Rows.Add(r); DataGrid1.DataSource =ds; DataGrid1.DataBind();
venki
How to disable the Automatic ToolTip Of TreeView in C# (2003)
venki
thanx.. but in 2003 i am not getting ShowNodeToolTips property.... help me.....
venki
Disable the automatic tooltip of treeview nodes in C# plz...
venki
How to get the location of BookMark in Table of Word Document.. i.e Row And Column plzzzzzzzzzzzzzzzz help me
venki