Click here to Skip to main content
15,916,091 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Form creation crisis!!! Pin
carlos_rocha15-Dec-04 6:43
carlos_rocha15-Dec-04 6:43 
GeneralRe: Form creation crisis!!! Pin
carlos_rocha15-Dec-04 22:11
carlos_rocha15-Dec-04 22:11 
QuestionHow to add Icon Overlay in VB.Net Pin
Zenly15-Dec-04 3:56
Zenly15-Dec-04 3:56 
AnswerRe: How to add Icon Overlay in VB.Net Pin
Zenly16-Dec-04 6:14
Zenly16-Dec-04 6:14 
Generalfont like property Pin
Stumped115-Dec-04 3:21
sussStumped115-Dec-04 3:21 
GeneralRe: font like property Pin
OICU81215-Dec-04 16:52
OICU81215-Dec-04 16:52 
GeneralRe: font like property Pin
Stumped116-Dec-04 2:43
sussStumped116-Dec-04 2:43 
GeneralRe: font like property Pin
OICU81216-Dec-04 4:50
OICU81216-Dec-04 4:50 
Your question may be over my head. Maybe you should post the errors you are receiving. See if this helps though. This property presents an array of user types in the property grid. Of couse you would need a custom type converter to pretty it up.

<br />
Dim m_foobar() As Foobar = {New Foobar, New Foobar}<br />
<br />
    Property MyFooBar() As Foobar() '<--Notice the bracktes<br />
        Get<br />
            Return m_foobar<br />
        End Get<br />
        Set(ByVal Value As Foobar())<br />
            m_foobar = Value<br />
        End Set<br />
    End Property<br />



<br />
Public Class Foobar<br />
<br />
    Dim m_Foo As TextBox<br />
<br />
    Property FooTextBox() As TextBox<br />
        Get<br />
            Return m_Foo<br />
        End Get<br />
        Set(ByVal Value As TextBox)<br />
            m_Foo = Value<br />
        End Set<br />
    End Property<br />
<br />
    Overrides Function ToString() As String<br />
        Return "(FooBar)"<br />
    End Function<br />

GeneralHelp needed Pin
singhrajendra15-Dec-04 2:00
singhrajendra15-Dec-04 2:00 
GeneralRe: Help needed Pin
Dennis C. Dietrich15-Dec-04 2:16
Dennis C. Dietrich15-Dec-04 2:16 
GeneralRe: Help needed Pin
singhrajendra15-Dec-04 18:45
singhrajendra15-Dec-04 18:45 
GeneralRe: Help needed Pin
Dave Kreskowiak16-Dec-04 3:42
mveDave Kreskowiak16-Dec-04 3:42 
GeneralMod Operator Help PLEASE... Pin
stingerj15-Dec-04 1:18
stingerj15-Dec-04 1:18 
GeneralRe: Mod Operator Help PLEASE... Pin
Dennis C. Dietrich15-Dec-04 1:46
Dennis C. Dietrich15-Dec-04 1:46 
GeneralRe: Mod Operator Help PLEASE... Pin
stingerj15-Dec-04 2:46
stingerj15-Dec-04 2:46 
GeneralRe: Mod Operator Help PLEASE... Pin
stingerj15-Dec-04 3:05
stingerj15-Dec-04 3:05 
GeneralRe: Mod Operator Help PLEASE... Pin
J4amieC15-Dec-04 5:33
J4amieC15-Dec-04 5:33 
GeneralRe: Mod Operator Help PLEASE... Pin
stingerj15-Dec-04 6:35
stingerj15-Dec-04 6:35 
GeneralRe: Mod Operator Help PLEASE... Pin
Tom John15-Dec-04 5:44
Tom John15-Dec-04 5:44 
GeneralRe: Mod Operator Help PLEASE... Pin
stingerj15-Dec-04 6:41
stingerj15-Dec-04 6:41 
Generalso nobody can help me.... Pin
stingerj15-Dec-04 11:22
stingerj15-Dec-04 11:22 
GeneralRe: so nobody can help me.... Pin
Dave Kreskowiak15-Dec-04 12:26
mveDave Kreskowiak15-Dec-04 12:26 
GeneralRe: Mod Operator Help PLEASE... Pin
santosh jaiswal 200415-Dec-04 18:22
santosh jaiswal 200415-Dec-04 18:22 
GeneralMS Project integration Pin
Black Jellyfish15-Dec-04 1:11
Black Jellyfish15-Dec-04 1:11 
GeneralDataGrid/Xml File Pin
Makniteasy14-Dec-04 22:06
Makniteasy14-Dec-04 22:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.