I have a select case I want to be able to check certain expressions... ie:


VB Code:
  1. Select Case Command
  2.    case "spawn "+x+":"+y
  3.         'do this
  4.    case "spawn "+x1+":"+y2+" "+x2+":"+y2"
  5.         'do that
  6. end select

Any idea how I would go about doing that?