Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
V

Venki56

@Venki56
About
Posts
10
Topics
6
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Sharing Internet using bluetooth devices
    V Venki56

    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

    C#

  • How can we get all workgroups on LAN using C#
    V Venki56

    Thnaks, But it gives only our system workgroup but i want all workgroups available on LAN

    venki

    C# csharp

  • How can we get all workgroups on LAN using C#
    V Venki56

    Hi, How can we get all workgroups on LAN also computers in that workgroup. Thanks, Venky.

    venki

    C# csharp

  • How to get all IPs in Network
    V Venki56

    I mean getting all IP addresses in Default Gateway in LAN...

    venki

    C# sysadmin tutorial

  • Check database if exist
    V Venki56

    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

    C# csharp database sysadmin tutorial question

  • How to insert text in GridView ?
    V Venki56

    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

    C# tutorial question

  • How to disable the Automatic ToolTip Of TreeView
    V Venki56

    How to disable the Automatic ToolTip Of TreeView in C# (2003)

    venki

    C# csharp tutorial

  • Disable the Automatic ToolTip Of Treeview
    V Venki56

    thanx.. but in 2003 i am not getting ShowNodeToolTips property.... help me.....

    venki

    C# csharp

  • Disable the Automatic ToolTip Of Treeview
    V Venki56

    Disable the automatic tooltip of treeview nodes in C# plz...

    venki

    C# csharp

  • Book Marks Ok Word Document Using C#
    V Venki56

    How to get the location of BookMark in Table of Word Document.. i.e Row And Column plzzzzzzzzzzzzzzzz help me

    venki

    C# csharp help tutorial learning
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups