've got some code that is trolling through and assembly looking for methods that have parameters whose BaseType is DataSet (they are strongly-typed DataSets). .ParameterType. BaseType is always DataSet for parameters that are passed like:
MyMethod(MyStro nglyTypedDataSe t myDataSet);
... but the BaseType is null for :
MyMethod(out MyStronglyTyped DataSet myDataSet);
Does anyone know why this...
User Profile
Collapse
-
FormatString to subclassed Label Control?
I wanted to created a formatted label control. I know I can add a
property to hold the FormatString, but I am not sure what method to
override to do the formatting. Any ideas? -
C# Crystal Drill Event not firing
I have a simple crystal report that displays a batch number for each transaction. I want the user to be able to click on that like a hyperlink and pull the batch number in the drill event and send a message to another form. Problem is I don't know how to make the data field appears as a hyperlink and have it hit the drill event when clicked. Any ideas? Thanks. -
BindingSource/Custom Object need HasChanges?
I have a custom business object that implements INotifyProperty Changed and IEditableObject . The collection of these objects inherits from BindingList<T>. I created a BindingSource from which a grid (list of objects) and a detail groupbox where bunch of textboxes are bound to them.
Problem is I need to detect 2 things:
1. A way to know the current record is dirty (meaning any bound property has changed), so I...
No activity results to display
Show More