errrm little help again...
I've been messing around with c# and i'm making a windows form and i'd like to know how to make the label invisible..... and when my timer ends it shows the label..... i just need the commands to hide/show the label i have timer set up and i have googled it but i'm not finding exactly what i need.
Hehe, Well, You need to edit it state ( For instance in this case if it is visible or not. )
In .Net C++ This is the following
"LabelName->Visible = false;"
"LabelName->Visible = true;"
That is certainly a look-alike you can find in C#, Just take a look at your designer's defines.
Hope this helped,
Mely