Vertical text with VB 6
-
Hi ! I would like to draw vertical text on my form, but don't know how to do it. To make it clear, I dont want to do something like this : H e l l o W o r l d I really want to write vertically ! Any idea how to do that ? Thank you ! Jerome
-
Hi ! I would like to draw vertical text on my form, but don't know how to do it. To make it clear, I dont want to do something like this : H e l l o W o r l d I really want to write vertically ! Any idea how to do that ? Thank you ! Jerome
You want to rotate the text 90 degs. This is not simple :-) Use the Create font api (allapi.com) CreateMyFont = CreateFont(Height,Width, 900, 900, Weight, FW_NORMAL, Italic, UnderLine, Strikeout, DEFAULT_CHARSET, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, PROOF_QUALITY, DEFAULT_PITCH, "Times New Roman")
-
Hi ! I would like to draw vertical text on my form, but don't know how to do it. To make it clear, I dont want to do something like this : H e l l o W o r l d I really want to write vertically ! Any idea how to do that ? Thank you ! Jerome
check this code: http://www.vbcity.com/forums/topic.asp?tid=960 cheers vasu