No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
how do you create child forms? is this any different from creating new windows forms? I tried this method on an existing application, but visual studio 2010 ultimate does not recognise Child as a valid type. It says: The type or namespace 'Child' could not be found (are you missing …
Also note (I just found this out) that if you want to call a method from another form, then put: [CODE]internal void MethodName() { doSomething; }[/CODE] for creating the method. Then to call it from another form, simply put: [CODE]frm1.MethodName();[/CODE] (or whatever you have called your reference to the other …
I want to rotate 2 buttons similar to how you do it in powerpoint so that if the mouse goes over the button, it raises the mouseover event. I know how the event handler stuff works, but I have no idea how to rotate my button. Specifically, I want it …
The End.
jayxx1234