User Profile

Collapse

Profile Sidebar

Collapse
sree078
sree078
Last Activity: Jun 16 '09, 01:05 PM
Joined: May 23 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • 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...
    See more | Go to post

    Leave a comment:


  • Add 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
    ...
    See more | Go to post
    Last edited by PRR; Apr 14 '09, 12:21 PM. Reason: Please post code in [code] [/code] tags.

  • Bind different data from a list into 3 combo boxes

    I'm using C#.net windows appln. in VS 2005.

    I've a list
    Code:
    List<string> DataList = new List<string>;
    datalist.add("one");
    datalist.add("two");
    datalist.add("three");
    I need to bind this list to 3 combo boxes.
    Code:
    private void FillMethod()
    {
    comboBox1.BindingContext = new BindingContext();
    comboBox2.BindingContext = new BindingContext();
    ...
    See more | Go to post
    Last edited by PRR; Apr 13 '09, 01:11 PM. Reason: Please post code in [code] [/code] tags.

  • sree078
    started a topic Create Batch file to run sql scripts

    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...
    See more | Go to post

  • 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...
    See more | Go to post

  • 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
    See more | Go to post

  • sree078
    replied to Full-Text Searching using CONSISTS
    in .NET
    sorry for not giving in the information regarding the languages used:

    Backend: SQL SERVER 2000
    Front End Form in C#.Net -- Visual Studio 2005

    thanks
    See more | Go to post

    Leave a comment:


  • sree078
    started a topic Full-Text Searching using CONSISTS
    in .NET

    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)...
    See more | Go to post

  • sree078
    started a topic Threading Concept in C#.Net
    in .NET

    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?...
    See more | Go to post
No activity results to display
Show More
Working...