03-01-2007, 08:12 AM
one Wrote:jeah, im just not creative enuogh x)
but wouldnt it be better to make it like this?
this works better for meCode:Call TextOut(hDC, x - 1, y, Text, Len(Text))
Call TextOut(hDC, x + 1, y, Text, Len(Text))
Call TextOut(hDC, x, y - 1, Text, Len(Text))
Call TextOut(hDC, x, y + 1, Text, Len(Text))
there where some pixels missing with your method, and it looked horrible with some fonts.
Not method T.T
Code:
Call TextOut(HDC, X + 1, Y + 0, Text, Len(Text))
Call TextOut(HDC, X + 0, Y + 1, Text, Len(Text))
Call TextOut(HDC, X + 1, Y + 1, Text, Len(Text))
Call TextOut(HDC, X - 1, Y - 0, Text, Len(Text))
Call TextOut(HDC, X - 0, Y - 1, Text, Len(Text))
Call TextOut(HDC, X - 1, Y - 1, Text, Len(Text))
Thats how I do it...
:: Pando