tags:

views:

65

answers:

2

m using a MDI child form and want it to display when a button from its parent form is clicked, at the same time i want that when the child form appears it should be placed such that some of the attributes of the parent form i.e. picture box is shown while others as labels and textboxes are hidden. Is this possible and how?

A: 

Not sure what language or framework you are using. And I don't get what you mean position so some attributes are hidden.

What I do know is that you should easily be able to hide those objects when you click the button, in C# for example myLabel.Visible = false; or you can use myLabel.Hide() and .Show()

Jonas B
I have tried it but it didn't worked. My problem is that I'm developing an interface in which a fingerprint would be saved in DB. In the main form the user has enetered his fingerprint (in a picture Box) i want to keep that picture box on the parent form when the save button is clicked and the child form appears.
MK
A: 

You could put the controls, which should be always visible on a separate form and make it top-most, so that it always stays on top of every other form.

See this for an example: How to make a window stay on top

DR
thanks for the help. I'm looking for other methods as well. hope to get succussful..
MK