|
Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Within your InitializeComponent() method, of the business object, you should find a line similar to:
this.BeforeSave += new BeforeSaveEventHandler(SFCategoryBO_BeforeSave);
Make sure you don't have two of those lines.
Also, are you doing anything special like using the business object on a child form that's shown through a ChildFormDialog, or within a UserControl?
I've checked, and there's no place that the event is being raised twice, but it's possible that the event handler is being added twice...
|