PopUp form
-
I need a form that will popup next to a button. For instance, say I have a volume button on a form but I dont want to put the controls for the volume on the form. Instead, I push the volume button and a little form pops up next to it that has all of the necessary volume controls. Furthermore, I dont want it to perform like a conventional form. I dont want it to show up in the task bar and I need its location to always be next to the button that instantiated it. I have seen this on several applications, including Fireworks and Photoshop. Any ideas? Thanks. P
-
I need a form that will popup next to a button. For instance, say I have a volume button on a form but I dont want to put the controls for the volume on the form. Instead, I push the volume button and a little form pops up next to it that has all of the necessary volume controls. Furthermore, I dont want it to perform like a conventional form. I dont want it to show up in the task bar and I need its location to always be next to the button that instantiated it. I have seen this on several applications, including Fireworks and Photoshop. Any ideas? Thanks. P
-
u can create a form and set it's ShowInTaskbar property false, and call the Show method of the form in the MouseDown of the Button. later u can access the form and do as u wish Regards, Pramod