Hello every1,
My problem looks like a simple one. But it has been bugging me for a while now. Actually I just want to print a name on a form using the "Print" statement. Sounds ez. But the thing is I wanna print each character in a different fontsize. Example: If I wanna print "VISUAL", I want V in 14 size, I in 16, S in 18 and so on. The problem is when i print the characters, there r not aligning to the same baseline. Thatz understandable coz with the increase in fontsize, the charcater may tend to grow and the size may increase. I deviced a logic which is

PS:ScaleMode is Pixel

Dim H1 as single,H2 as single
Me.FontSize=16
Me.CurrentX=10
Me.CurrentY=70
Me.Print "V"
H1=Me.TexhHeight("V")
Me.FontSize=16
H2=Me.TexhHeight("V")
Me.CurrentX=10
Me.CurrentY=70-(H2-H1)
Me.Print "V"
This logic is actually the correct one to find the CurrentY position but for some mysterious reason, It doesnt align. Kindly check my problem and provide a solution as early as possible.. Thanq