I have this interface:
VB Code:
  1. Module Interface_Module
  2.     Public Interface ISleuthMobile
  3.         Function GetName() As String
  4.     End Interface
  5. End Module

The module is in it's own project, named "SleuthInterface". Another project in this solution is called "Skids". In Skids, I added a reference to SleuthInterface, because I want Skids to implement SleuthInterface.

In Skids, I import SleuthInterface with no problem:
VB Code:
  1. Imports SleuthInterface
  2.  
  3. Public Class Skids
  4.     Inherits System.Windows.Forms.Form
  5.     Implements isleuthmobile
  6. ...

My problem is, the class cannot see ISleuthMobile. If you saw the above code, there's a squiggly line under "isleuthmobile" (I usually write my code to not match the case, because of the visual feedback IntelliSense gives you).

Looks like I'm missing something really basic, but heck if I can figure it out.

Any help is much appreciated,
Mike