User Profile

Collapse

Profile Sidebar

Collapse
Saravanan Krishnan
Saravanan Krishnan
Last Activity: May 2 '08, 10:17 AM
Joined: Mar 5 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Saravanan Krishnan
    replied to Executing a C# proj...
    in .NET
    thanks for ur reply madan...

    you are right i wanted to do the same, i want to run my app in a remote sys without deploying it,

    orelse just tell me how to host my web service proj in my local IIS...
    See more | Go to post

    Leave a comment:


  • Form.ControlCol lection fc = new Form.ControlCol lection(form1);

    fc.Contains(url stbox);

    the above line will return true if your urlstbox control exsists in ur form or else it'll return false.

    hope it'll help u...

    regards...
    Saravanan Krishnan
    See more | Go to post

    Leave a comment:


  • Saravanan Krishnan
    started a topic Executing a C# proj...
    in .NET

    Executing a C# proj...

    Hey guys,

    I've developed an application with multiple C# projects in it, those projs interact well and clean they also communicate with SQL2k5 for fetching and writting data via web service, now what i need is to run my app in another comp sys without copying the entire app files instead i want to copy .dll files(i dont want to deploy it at this instance) or if anyother way exsists, can anyone please assist me on this...
    ...
    See more | Go to post

  • hey bala,

    i've did same thing to remove the button's association with the event handler method. that is

    btn.click -= new eventhandler(my btn_click);

    but when the other form is opened i execute the above mentioned line. but even then when the same button in the current form(newly opened) is clicked, the event handler method present in the previously opened form gets executed and then the newly opened forms...
    See more | Go to post

    Leave a comment:


  • C#: How to remove delegation of a ToolBarButton's click event...

    Hi, everybody...

    I'm developing a c# windows application where my app has more than 2 forms in it. i've placed some toolbarbuttons on it. I've associated toolbarbuttons click events to it. Now what i need is to remove the associated methods of those tbbtns on some condition. I'm able to add delegates to those btns at any moment but i have no idea how to remove those delegations...

    Any help is appriciable...
    ...
    See more | Go to post

  • Actually i've binded the List<T> data to BindingSource then i've added the bindingsource to my DGV, what i needed was to insert a new row in the selected location of my DGV. By writting the below line of code (using the INSERT method of BindingSource) i achieved my required insertion of a new row in the selected location of the DGV.

    BindingSource1. Insert(e.RowInd ex, itemobj);

    Must write the above line of code in...
    See more | Go to post
    Last edited by Saravanan Krishnan; Mar 20 '08, 10:35 AM. Reason: Not well formatted...

    Leave a comment:


  • Saravanan Krishnan
    started a topic Insert a new row in databound DGV...
    in .NET

    Insert a new row in databound DGV...

    Hi, I've set the
    "AllowUserToAdd Rows = true;"
    and i want a new row to be added in the datagridview in the specific location.I am trying to add them programatically .
    I see an error that you cannot do that when the datagridview is bound to a bindingsource.
    If i edit a row, then a new row appears automatically at the last row. But what I need is to "insert" a row before or after a selected row and then add...
    See more | Go to post

  • By using the code snippet which i posted in my last reply works absolutely fine, the itemlist filters the records perfectly while even the string with a whitespace is selected [like "Notebook PC"].

    Similarly i have multiple combo boxes in my form and i also want to filter the records in my list based on multiple combo boxes selections as well as single combo box (it's left to users choice), now how do i identify that the user...
    See more | Go to post

    Leave a comment:


  • Using this line
    vItemList.Filte r = "Items='" + str + "'";

    Instead of
    vItemList.Filte r = "Items=" + str;

    this code helped me out, if someone's out for this use this...

    Thanking all for spending your time helping me...

    Saravanan Krishnan
    See more | Go to post

    Leave a comment:


  • <<>>posted davidson

    I've used List<T> where T is a class with various properties and added values to those properties vItemList is the instance of List<T> now i'm filtering the Items Property and based on the combo box selection...
    [Heres the code snippet]

    string str;
    str = cmbitem.selecte dtext;
    str = str.replace(" ","");
    //i tried str = str.trim();
    ...
    See more | Go to post

    Leave a comment:


  • C#: How to eliminate whitespaces in a string...

    Hi, i'm writting a windows application in C# the functionality that i'm trying is to implement is to add items to a combo box at run time & when i select one item, my app should filter the list contents based on the selection i made in the combo box.

    I'm able to add items to combo box and also filter the list contents. But the only trouble i'm facing is when i select a item with a whitespace in the middle of a string in the conbo...
    See more | Go to post
No activity results to display
Show More
Working...