tags:

views:

159

answers:

1

I have a form that contains different controls like MediaControl and Panel. I want to rotate my form in a vertical direction.

Any ideas please help me.

A: 

If you want to draw vertical text on a form, here's how:

http://msdn.microsoft.com/en-us/library/k7282y7x%28VS.80%29.aspx

However, it sounds more like you want to rotate the entire form or controls. Here's a similar question:

http://stackoverflow.com/questions/1399648/windows-form-rotation

Basically this turns out to be very complicated. You may have to make everything owner-drawn.

If it's possible to do this in WPF, it might be easier.

Andy West