Hi I have one Generic List how to convert the list into data table?. Any one help me please?. Regards Kesavan
kesavan
Hi I have one Generic List how to convert the list into data table?. Any one help me please?. Regards Kesavan
kesavan
hi can you explain with example please regards
kesavan
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
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
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
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
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
First check your dataset have any table. If not no need to clear.
kesavan
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
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
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
No guffa I have a situation to use regular expression kesavan
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
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
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
--. kesavan
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
--. kesavan
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
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
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
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