Imports System
Module Module1
Interface ISomething
Sub fDouble()
End Interface
Class Whatever
Implements ISomething
Sub fDouble() Implements ISomething.fDouble
Console.WriteLine("whatever")
End Sub
End Class
Sub Main()
Dim some As ISomething = New Whatever
Console.WriteLine(some.GetType().ToString())
Console.ReadLine()
End Sub
End Module
I suggest you buy an introductory book on VB.NET and study it...
Luc Pattyn [Forum Guidelines] [My Articles]
Love, happiness and fewer bugs for 2009!
They have examples[^] and a forum[^]. The odds are much greater of talking to people who have used it there, than here.
Christian Graus No longer a Microsoft MVP, but still happy to answer your questions.