Try this. You'll need to modify the coordinates to change the direction of the arc.
VB Code:
  1. Private Declare Function Arc Lib "gdi32" (ByVal hdc As Long, ByVal X1 As Long, ByVal Y1 As Long, ByVal X2 As Long, ByVal Y2 As Long, ByVal X3 As Long, ByVal Y3 As Long, ByVal X4 As Long, ByVal Y4 As Long) As Long
  2.  
  3. Private Sub Command1_Click()
  4.    
  5.     'Draw the arc
  6.     Arc hdc, 30, 30, 150, 150, 30, 30, 150, 150
  7.    
  8. End Sub