We don't have Clone method in binding source.
My requirement is adding one item in only one combo box and it should not reflect in our combo boxes...
User Profile
Collapse
-
sree078 started a topic Add an item into only one combobox which is binded with a list bound to multiple ctrlin C SharpAdd an item into only one combobox which is binded with a list bound to multiple ctrl
I've a list of items which I bound to multiple combo boxes.
In the due course in the code...I had to add an item into one combo box...but I don't want it to be reflected into any other combo boxes...How should I do that...
As when I'm trying to add an item...it is being shown in all the combo boxes.
...Code:private void FillMethod() { BindingSource bs = new BindingSource(); BindingSource -
Bind different data from a list into 3 combo boxes
I'm using C#.net windows appln. in VS 2005.
I've a list
I need to bind this list to 3 combo boxes.Code:List<string> DataList = new List<string>; datalist.add("one"); datalist.add("two"); datalist.add("three");
...Code:private void FillMethod() { comboBox1.BindingContext = new BindingContext(); comboBox2.BindingContext = new BindingContext(); -
Create Batch file to run sql scripts
Hi
I have written stored procedures to create a database with db name as input parameter
I need to create a batch file to run the stored procedure with input value given in the command prompt along with the batch file will be my dbname
which will be used by the stored procedure to create the databse.
Plz could any one help me out to create code to create a batch file
thanks... -
Query to get the names of items with different levels
hi
I've a table with coln names
ID
Name
ParentID
Level
I've list with different levels
say
ex.
the Data is:-
ID Name ParentID Level
1 Root null 1
2 Trunk 1 2
3 Branch 2 3
4 Leaf 3 4
5 Stem... -
Delete duplicate rows from two tables with same structure
Hi
I want to delete the duplicate rows from two tables and get the resultant non-duplicate rows from both the tables into another table -
sorry for not giving in the information regarding the languages used:
Backend: SQL SERVER 2000
Front End Form in C#.Net -- Visual Studio 2005
thanksLeave a comment:
-
Full-Text Searching using CONSISTS
Hi
I've a list of Values with varchar field in main in a table. I wanted to have fast search as there are very less insertions/updations. Thought to do a FullText Searching on that varchar field.
Imp Note: The name column can be a phrase too.
I want to search on the key stroke from front end.
so should be able to search the name column on single charater or words.
declare @a varchar(10)... -
Threading Concept in C#.Net
Hello
I'm using C#.Net & Visual Studio 2005
I've created a thread, which shows a progress bar till a specific search is accomplished..
But after some time, my progress bar is not shown (it is shown white)...as my searching is taking lot of time (lot of functionality in the frontend)...
how to give the thread enough resources to show the progress bar... this my searching functionality is done?...
No activity results to display
Show More
Leave a comment: