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
N

NK7

@NK7
About
Posts
58
Topics
43
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to convert List to datatable
    N NK7

    Hi I have one Generic List how to convert the list into data table?. Any one help me please?. Regards Kesavan

    kesavan

    C# help tutorial question

  • Getting cell values for selected rows in server side
    N NK7

    hi can you explain with example please regards

    kesavan

    ASP.NET question css database wpf wcf

  • Getting cell values for selected rows in server side
    N NK7

    Hi I have one datagrid i am binding the grid from backend. Data grid has 5 column col1, col2, col3, col4 and col5. I need to select any cell run time and drag only the selected cell into another grid. If I click row[1][3] i have to drag only the cell. Next time i will select row[3][5] in run time. My question is how to find the selected cell value in server side. I tried with selected index. But it will work only if we know the column name for ex row[0][4], but the column selection will change next time. Can any one help me please? regards

    kesavan

    ASP.NET question css database wpf wcf

  • how to make text box mandatory on dropdown change
    N NK7

    Hi I have one dropdown contain status information. Status are 1. Finished 2. Open 3. Progress Also one date textbox. I want to set the text box is editable and mandatory when i select the status as finished in the dropdown. Otherwise it should accept null values(not mandatory) and read only. Can any one help me please. its urgent. It should be in C# or java script Regards K7

    kesavan

    ASP.NET csharp java tools help tutorial

  • How to make textbox mandatory on dropdown change
    N NK7

    Hi I have one dropdown contain status information. Status are 1. Finished 2. Open 3. Progress Also one date textbox. I want to set the text box is editable and mandatory when i select the status as finished in the dropdown. Otherwise it should accept null values(not mandatory) and read only. Can any one help me please. its urgent. It should be in C# or java script Regards K7

    kesavan

    C# csharp java tools help tutorial

  • How to Insert more than one row in a single click using stored procedure
    N NK7

    Hi I have a datatable having 10 records. I want to insert the 10 records to a table in a database using stroed procedure from my front end C#. How to do? can any one help me please? Thanks in advance kesavan

    kesavan

    ASP.NET database csharp help tutorial question

  • How to Insert more than one row in a single click using stored procedure
    N NK7

    Hi I have a datatable having 10 records. I want to insert the 10 records to a table in a database using stroed procedure from my front end C#. How to do? can any one help me please? Thanks in advance kesavan

    kesavan

    C# database csharp help tutorial question

  • DataSet.Clear problem
    N NK7

    First check your dataset have any table. If not no need to clear.

    kesavan

    C# help tutorial question

  • Insert more than one row in a single click using stored procedure
    N NK7

    Hi I have a datatable having 10 records. I want to insert the 10 records to a table in a database using stroed procedure from my front end C#. How to do? can any one help me please? Thanks in advance

    kesavan

    C# database csharp help tutorial question

  • How to list stored procedure parameter list and its return type
    N NK7

    Hi Can anybody help me to list the stored procedure parameters and return type in sql server 2005/2000 for a given stored procedure. For ex: Parameter_Name Data_Type Length --------------------------------- kesavan

    Database database sql-server sysadmin help tutorial

  • How to find the current user domain
    N NK7

    Hi Can any one help me to find the current user domain. I am using the follwing code: WindowsIdentity wIdentity= WindowsIdentity.GetCurrent(); Its listing only the current system connected domain. For ex: I belongs to domain retail, if i log in using my userid and domain("retail") from other machine belongs to other domain, its giving that system domain instead of my domain. Help me please. kesavan

    C# help tutorial

  • How to find a exact word using regular expression
    N NK7

    No guffa I have a situation to use regular expression kesavan

    C# database regex tutorial

  • How to find a exact word using regular expression
    N NK7

    Hi all I have a doubt how to find a word exactly using regular expression. Ex:- While supplying some query "select * from tablename" how to find "select" word alone using regular expression kesavan

    C# database regex tutorial

  • How to create windows custom control in c#.net
    N NK7

    Hi Any body help me to how to create a windows custom control(not usercontrol) having one combobox, label and button Like below [Lable]Connect [combobox]ServersList below one button Click to connect its urgent help me plz kesavan

    C# csharp help tutorial

  • Object moved error - Urgent
    N NK7

    Hi I have a windows application i am calling webserivce, the first webservice calling another webservice there i am getting an error The request failed with the error message: -- Object moved

    Object moved to here.

    --. kesavan

    ASP.NET help question

  • Object moved error
    N NK7

    Hi I have a windows application i am calling webserivce, the first webservice calling another webservice there i am getting an error The request failed with the error message: -- Object moved

    Object moved to here.

    --. kesavan

    C# help question

  • How to find xml attributes in c#.net
    N NK7

    Hi I have a problem of finding and adding the attributes in arraylist in .net. I have the follwoing xml How to load all the domian names in an arraylist I have written the follwoing code, but it is not working XmlDocument xmlDoc=new XmlDocument(); xmlDoc.Load(filename); XmlNodeList domainNode; domainNode=xmlDoc.GetElementsByTagName("Domains"); ArrayList aList=new ArrayList(); for(int count=0;count

    C# csharp xml help tutorial

  • How to execute DTS package without storing it in local [modified]
    N NK7

    Hi Right now i am stroing dts package in local and executing it. The code what i have written is Dataset ds=new Dataset(); Package package=GeneratePackage(); //Generate package is a my function Application app=new Application(); app.SavetoXML("path",package,null); DtsConnection dtsCon=new DtsConnection(); dtsCon.ConnectionString=package.GetPackagePath(); dtsCon.Open(); DtsCommand dtsComm=new DtsCommand(dtsCon); dtsComm.CommandText="DataReaderDest"; IDataReader reader=dtsComm.ExecuteReader(CommandBehaviour.Default); ds.Load(reader,LoadOption.OverwriteChanges,reader.GetScehmaTable().TableName); return ds; It is working fine. I would like to execute the package without storing it in local using dtscommand. Can anybody help me please. kesavan -- modified at 3:20 Thursday 24th May, 2007

    C# help tutorial

  • How to Clear Grid view in C# [modified]
    N NK7

    Not working. It is binding the old values to the grid. If I bind the new values it is appending the the existing values.

    kesavan

    C# help csharp css wpf wcf

  • How to Clear Grid view in C# [modified]
    N NK7

    Hi I have problem in clearing the grid view. It is binding the old values every time i try to bind any values to the grid. This is the code i have written to clear the grid view Private void clearGridView(DataGridView gView) { gView.SelectAll(); if(gView.SelectedRows.Count== gView.Rows.Count) { gView.Rowsl.Clear(); } foreach(DataGridViewRow dvConnRow in gView.SelectedRows) { gView.Rows.Remove(dvConnRow); } dgView.DataSource=null; } Can any one help me to solve my problem please kesavan -- modified at 3:36 Wednesday 9th May, 2007

    C# help csharp css wpf wcf
  • Login

  • Don't have an account? Register

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