drawLine( ) fails?
- Posted by lpuster Aug 26, 2010
- 1175 views
I can not get drawLine() or drawLines() to put anything into the window. I am using the latest version of win32Lib. What am I doing wrong?
Louis.
include win32lib.ew
constant Main = create(Window, "No line?", 0, 0, 0, 200, 200, 0)
setPenColor(Main, Black)
drawLine(Main, 10, 10, 190, 190)
WinMain(Main, Normal)