[ opengl @ 16.06.2005. 09:10 ] @
Sta je zamena za hdc win forme u vb.net-u
[ dragansm @ 16.06.2005. 09:32 ] @
Code:

Dim hdc As IntPtr = e.Graphics.GetHdc()
' Draw rectangle with GDI using default pen.
Rectangle(hdc, 10, 70, 110, 120)
' Release handle to device context.
e.Graphics.ReleaseHdc(hdc)