Hi Steve,
Without seeing the code you should be able to simply make the following calls to clear out the two controls that you noted:
csharp Code:
labelResult.Text = string.Empty;
textBoxResult.Clear();
Labels do not expose a Clear() method so you need to manually remove the text from its Text proprety.
AFAIK, the code provided is the most effecient way to clear our your controls. There are other ways to do it, of course, such as looping through the Form's Control collection, checking the type of control, and then prefrom some logic on it. IMHO maintaining / updating a form's state is one of the most mundane tasks a WinForms programmer can be charged to do.
hth.
-Doug
__________________
===============================================
Doug Parsons
Wrox online library:
Wrox Books 24 x 7
Did someone here help you? Click

on their post!
"Easy is the path to wisdom for those not blinded by themselves."
===============================================