|
-
Jan 11th, 2004, 06:40 PM
#1
Thread Starter
Frenzied Member
Interface Newbie
I have this interface:
VB Code:
Module Interface_Module
Public Interface ISleuthMobile
Function GetName() As String
End Interface
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:
Imports SleuthInterface
Public Class Skids
Inherits System.Windows.Forms.Form
Implements isleuthmobile
...
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|