Hi all,
Please how do I hide button or panel whatever it is from one form to another form button or panel?
For example when I click on the form1 button and another form button or panel will i need to hide.
actually i can able to write the above problem in vb.net(windows application) which is given below,
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Form2.Show()
Form2.Button1.Hide()
End Sub
but i cant able to write code in c# windows application which i denote the above vb.net code, so how do i write the above vb code to c#.
so please kindly drop your comments here which is very appreciable....
thanks in advance....