In Visual Basic 6.0, various graphics methods and properties are used to draw on a Form or PictureBox control. Graphics in Visual Basic 6.0 are based on the Windows Graphics Device Interface (GDI) APIs.
Drawing Hut Using Line (VB6.0)
Private Sub Command1_Click()
Me.Line (5000, 9000)-(5000, 5500)
Me.Line (5000, 5500)-(6500, 3500)