Click here to Skip to main content
15,893,161 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
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,

VB
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 please kindly drop your comments here which is very appreciable....


thanks in advance....
Posted

1 solution

Don't - let the form do it it's self - you just instruct it to do the job: Transfering information between two forms, Part 1: Parent to Child[^]
 
Share this answer
 
Comments
stellus 11-Mar-13 6:38am    
thanks for your code sharing,
actually i need to hide child form button or panel from parent
but you have send the code is just transfer the data
so please revive once again my vb code which i mentioned above as it is i need to c#.

thanks..
OriginalGriff 11-Mar-13 6:43am    
As I said - don't do it. Read the Tip I posted for why.
Create a property in the child which does the hide and set that from the parent.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900