Hi,
I'm working on this program that uses plugins. I want declare and use my own publc type but I can't get it to work.

Take a look at it

Code:
Modulue1.bas

'Used to Sore Info about The Aothor of the Plugins
Public Type PLUGIN_AUTHOR
   Author_Name     As String
   Author_Email    As String
   Author_Homepage As String
End Type


Code:
Plugins.cls
'This is The Plugin Class

'local variable(s) to hold property value(s)
Private mvarmnm As PLUGIN_AUTHOR 'local copy
Public Property Set Plugs(ByVal vData As PLUGIN_AUTHOR)
'used when assigning an Object to the property, on the left side of a Set statement.
'Syntax: Set x.mnm = Form1
    Set mvarmnm = vData
End Property


Public Property Get Plugs() As PLUGIN_AUTHOR
'used when retrieving value of a property, on the right side of an assignment.
'Syntax: Debug.Print X.mnm
    Set Plugs = mvarmnm
End Property

I keep getting a Compiler error, any suggestions?

[Edited by omarswan on 05-26-2000 at 07:26 PM]