Search results for query: *

  1. D

    Finding a bound grid.

    What would be the most efficient way to find the grid a collection is bound to. Is there a way to use databinding to return the control a collection is bound to? I need a method like GetBoundGrid(myCollection) that returns a datagridview. This method will be on our EntryFormBase form. This...
  2. D

    Create Error Provider Like Component.

    I need to create an Error Provider like component that the Icon is clickable. I have the task of creating a way for users to save the criteria entered in our report forms so that the next time the report is opened the criteria is populated with these values. The developer will decide which...
  3. D

    Question Databinding suppressing events

    I have 3 controls on a form. DatePicker1, DatePicker2, Button1 DatePicker1 and DatePicker2 are bound to a custom object MyObject(Date1 and Date2) which implements INotifyPropertyChanged. DatePicker1 and DatePicker2 both subscribe to value changed events. DatePicker1 ValueChanged event code...
  4. D

    Spliting Tab Delimited Strings

    I am using a StreamReader to read text from a text file. The data in the text file is tab delimited. Is there an easier way to process the text file than using a streamreader and reading line by line. I am converting each line to a string. I then need parse out the string into an array. I...
Back
Top