I have been learning how to draw circles. Now I want to learn how to make a circle orbit another. I imagine there are many ways to do this? Given my code below, what would be the simplest method to have the smaller circle orbit the larger one?

VB Code:
  1. Private Sub Form_Activate()
  2.     Dim eX, eY, eR, eRGB1, mX, mY, mR, mRGB1 'declare variables
  3.     ScaleMode = 5 'set scale to inches
  4.     'FillColor = RGB(255, 255, 255) 'set color to fill circle
  5.     'FillStyle = 0 'set transparent or solid
  6.     'DrawWidth = 3 'set line weight of cirle
  7.     DrawStyle = 0 'set solid =1, dashed=2 or dotted=3
  8.     eX = ScaleWidth / 2 'centers circle on form
  9.     eY = ScaleHeight / 2 'centers circle on form
  10.     mX = eX + 1.5 'centers circle on form
  11.     mY = eY + 0 'centers circle on form
  12.     eR = 1
  13.     mR = 0.25
  14.     eRGB1 = RGB(255, 255, 255) 'set line color of circle
  15.     mRGB1 = RGB(255, 255, 255) 'set line color of circle
  16.     'draw the circles
  17.     Circle (eX, eY), eR, eRGB1
  18.     Circle (mX, mY), mR, mRGB1
  19. End Sub