new type in the settings designer?

garusher

New member
Joined
Sep 25, 2008
Messages
1
Programming Experience
5-10
Hi

I'm trying to use the type below as a new type in the settings designer. I can get the type to show up by hitting the drop down for Type in Settings.Settings and then the browse button etc.

How ever once i select this type below, i am unable to change the value without getting the following error.
'TestString cannot be converted to an instance to type WWConnection.WWConnection'

My Question is how do i make this work.

do I defined a property in my class and decorate with attributes, specify a typeconverter or what.



VB.NET:
Imports System.ComponentModel

<Serializable()> _

Public Class WWConnection

Public m_Connection As String = String.Empty

End Class


Thanks
G. Rusher
 
Back
Top