V VJ Aug 18, 2005 #1 What is the best way to return error from a UserControl to the consuming application...? VJ
O Oliver Sturm Aug 18, 2005 #2 VJ said: What is the best way to return error from a UserControl to the consuming application...? Click to expand... Throw an exception. That is generally the preferred way of signalling error conditions in .NET, but of course it's especially adequate if your control is being used in an environment you don't know beforehand. Oliver Sturm
VJ said: What is the best way to return error from a UserControl to the consuming application...? Click to expand... Throw an exception. That is generally the preferred way of signalling error conditions in .NET, but of course it's especially adequate if your control is being used in an environment you don't know beforehand. Oliver Sturm