Click here to Skip to main content
15,902,276 members

Comments by Mithun Thakur From NICE Computers (Top 2 by date)

Mithun Thakur From NICE Computers 30-Sep-11 23:50pm View    
can you explain that what exactly you want to do? is it do you want to read system time and want to less 5 min from it or you want to set System Time
Mithun Thakur From NICE Computers 30-Sep-11 6:07am View    
Deleted
public void ClearTextBoxes(Control control)
{

foreach (Control c in control.Controls)
{

if (c is TextBox)
{

((TextBox)c).Clear();

}

if (c.HasChildren)
{

ClearTextBoxes(c);

}


call it as:
ClearTextBoxes(this);

}

}