Ok I've been working on this now for several hours and am still having some issues. Maybe I just need to simplify this by breaking it down into two steps. Here is what I now have.

VB Code:
  1. Module Module1
  2.  
  3.     Sub Main()
  4.         Console.WriteLine("please enter a number between 1 and 9, or one of the following letters a, b or c")
  5.         'here is where I would like the program to determine if the input is a number or a letter
  6.         'unfortunatly my text book in on program structure and not on VB so no useable code is
  7.         'in the book.  
  8.         Dim input = Console.ReadLine()
  9.         If input <= 1 OrElse >= 9 Then
  10.         Else input <> (a,b,c) then
  11.             Console.WriteLine("Im sorry, but you did not enter one of the designated characters.  Please try again")
  12.  
  13.  
  14.         End If
  15.  
  16.  
  17.     End Sub
  18.  
  19.    
  20. End Module