Hi...
Since you are using .NET 2.X, you can use "My" Object
The My.Application.OpenForms gives a Collection of currently open Forms
Then, you can iterate through the forms collection and then set
foreach frmSet in My.Application.OpenForms
frmSet.cmdAdd.Enabled=false
..............
And so on :)
---------------
The .NET Underground Portal
www.pureportals.com/developers
---------------