Results 1 to 20 of 20

Thread: About Button in Design Time Properties Window [RESOLVED!!! Thanks Pax :thumb:]

  1. #1

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Resolved About Button in Design Time Properties Window [RESOLVED!!! Thanks Pax :thumb:]

    In VB6 when we made a usercontrol we could add an about button for the
    design time properties window. Can we do anything similar in .NET?

    Thanks.
    Last edited by RobDog888; Feb 4th, 2005 at 12:01 PM.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  2. #2
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    Umm , I think you mean the description item in the properites explorer . Just look up the ....doh I forgot that class . I'll come back with the name.

  3. #3

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: About Button in Design Time Properties Window

    Oh, I didnt see your response til now. This is what I have. Aaron Young helped
    me with it last night, but what I was wondering in this thread was if there
    was an about button for controls that you can click on and bring up a small
    form about the controls creator, etc.

    I also saw that you can place hyperlinks to do action in the descriptions too.
    How do you do that?

    VB Code:
    1. <Browsable(True), DefaultValue("AutoScroll"), Description("AutoScroll for XPNavBar.")> _
    2.     Public Overrides Property AutoScroll() As Boolean 'Shadows ReadOnly
    3.         Get
    4.             Return mb_AutoScroll
    5.         End Get
    6.         Set(ByVal Value As Boolean)
    7.             mb_AutoScroll = Value
    8.         End Set
    9.     End Property
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  4. #4
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    Yah , Attributes . This is what I was going to say in my previous post .Kinda funny to forget that huge class .

    I don't know a lot about Attributes and their properties but it's well-documented in MSDN .

  5. #5

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: About Button in Design Time Properties Window

    This is also a good alternative that I could use, but I cant find out how to do
    it or what its called.

    Also, how do you get the button with the elipsis (...)? I searched MSDN, but
    nothing yet.
    Attached Images Attached Images  
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  6. #6
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: About Button in Design Time Properties Window

    Quote Originally Posted by RobDog888
    This is also a good alternative that I could use, but I cant find out how to do
    it or what its called.

    Also, how do you get the button with the elipsis (...)? I searched MSDN, but
    nothing yet.
    I believe the property grid will automatically do that for you if the property is collection based.

  7. #7

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: About Button in Design Time Properties Window

    Thanks, but how do I create a property collection and do you know if the
    hyperlink (Add Tab) is automatic also?
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  8. #8
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: About Button in Design Time Properties Window


  9. #9

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: About Button in Design Time Properties Window

    I looked through them quickly and I can see that it is part of what I need.
    Do you have something for the hyperlink in the description of the property?
    I will go over them in detail tomorrow. Tired. Going to sleep.

    Thanks.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  10. #10
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: About Button in Design Time Properties Window

    Quote Originally Posted by RobDog888
    I looked through them quickly and I can see that it is part of what I need.
    Do you have something for the hyperlink in the description of the property?
    I will go over them in detail tomorrow. Tired. Going to sleep.

    Thanks.

    No I don't. I know that'll come up if you inherit from TabPages though. If I'm not mistaken, crptcblade had a similar problem a while ago. The memories are vague though, kinda like the first age on Middle Earth...

  11. #11
    Fanatic Member pax's Avatar
    Join Date
    Mar 2001
    Location
    Denmark
    Posts
    840

    Re: About Button in Design Time Properties Window

    Hi.

    You need to make a new class that inherits ControlDesigner.
    Then override the Verbs property.
    Return a new collection of verbs. Each verb in the collection refers to a sub in the designer. Each verb will be shown as a link in the propertywindow.

    Then you need to add a DesignerAttribute to your class.

    Remember to add a reference to System.Design.Dll

    VB Code:
    1. <System.ComponentModel.Designer(GetType(MyControl.MyDesigner))> _
    2. Public Class MyControl
    3.     Inherits System.Windows.Forms.UserControl
    4.  
    5. #Region " Windows Form Designer generated code "
    6.  
    7.     Public Sub New()
    8.         MyBase.New()
    9.  
    10.         'This call is required by the Windows Form Designer.
    11.         InitializeComponent()
    12.  
    13.         'Add any initialization after the InitializeComponent() call
    14.  
    15.     End Sub
    16.  
    17.     'UserControl overrides dispose to clean up the component list.
    18.     Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
    19.         If disposing Then
    20.             If Not (components Is Nothing) Then
    21.                 components.Dispose()
    22.             End If
    23.         End If
    24.         MyBase.Dispose(disposing)
    25.     End Sub
    26.  
    27.     'Required by the Windows Form Designer
    28.     Private components As System.ComponentModel.IContainer
    29.  
    30.     'NOTE: The following procedure is required by the Windows Form Designer
    31.     'It can be modified using the Windows Form Designer.  
    32.     'Do not modify it using the code editor.
    33.     Friend WithEvents Label1 As System.Windows.Forms.Label
    34.     <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
    35.         Me.Label1 = New System.Windows.Forms.Label()
    36.         Me.SuspendLayout()
    37.         '
    38.         'Label1
    39.         '
    40.         Me.Label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
    41.         Me.Label1.Dock = System.Windows.Forms.DockStyle.Fill
    42.         Me.Label1.Name = "Label1"
    43.         Me.Label1.Size = New System.Drawing.Size(150, 150)
    44.         Me.Label1.TabIndex = 0
    45.         Me.Label1.Text = "This is a testcontrol"
    46.         Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
    47.         '
    48.         'MyControl
    49.         '
    50.         Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.Label1})
    51.         Me.Name = "MyControl"
    52.         Me.ResumeLayout(False)
    53.  
    54.     End Sub
    55.  
    56. #End Region
    57.  
    58.     Public Class MyDesigner
    59.         Inherits System.Windows.Forms.Design.ControlDesigner
    60.  
    61.         Private MyVerbs As System.ComponentModel.Design.DesignerVerbCollection
    62.  
    63.         Private Sub MyAboutVerb(ByVal sender As Object, ByVal e As EventArgs)
    64.             MsgBox("You clicked the 'About' link")
    65.         End Sub
    66.         Private Sub MyAnotherVerb(ByVal sender As Object, ByVal e As EventArgs)
    67.             MsgBox("You clicked the 'AnotherVerb' link")
    68.         End Sub
    69.         Private Sub MyYetAnotherVerb(ByVal sender As Object, ByVal e As EventArgs)
    70.             MsgBox("You clicked the 'YetAnotherVerb' link")
    71.         End Sub
    72.  
    73.         Public Overrides ReadOnly Property Verbs() As System.ComponentModel.Design.DesignerVerbCollection
    74.             Get
    75.                 If MyVerbs Is Nothing Then
    76.                     MyVerbs = New System.ComponentModel.Design.DesignerVerbCollection()
    77.                     MyVerbs.Add(New System.ComponentModel.Design.DesignerVerb("About", AddressOf MyAboutVerb))
    78.                     MyVerbs.Add(New System.ComponentModel.Design.DesignerVerb("AnotherVerb", AddressOf MyAnotherVerb))
    79.                     MyVerbs.Add(New System.ComponentModel.Design.DesignerVerb("YetAnotherVerb", AddressOf MyYetAnotherVerb))
    80.                 End If
    81.  
    82.                 Return MyVerbs
    83.             End Get
    84.         End Property
    85.     End Class
    86. End Class

    Hope this helps.

    EDIT: You could also take a look at www.divil.co.uk.
    He has a great article about creating designers.
    I wish I could think of something witty to put in my sig...

    ...Currently using VS2013...

  12. #12

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: About Button in Design Time Properties Window

    Thans for the code and links guys. They are going to be very helpful. I will
    try out my code tonight and if I have anymore problems I will post them.

    Thanks again.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  13. #13

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: About Button in Design Time Properties Window

    Pax, I am having a little trouble getting it to work. What am I doing wrong?
    I did add the reference to System.Design.Dll too.

    VB Code:
    1. Imports System.ComponentModel
    2.  
    3. <ToolboxBitmap(GetType(MyControl), "MyControl.bmp")> _
    4. Public Class MyControl
    5.  
    6.     Inherits System.Windows.Forms.UserControl
    7.  
    8. [color=silver]"Windows Form Designer generated code"[/color]
    9.  
    10.     Private Sub MyControl_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
    11.         '...
    12.         '...
    13.         '...
    14.     End Sub
    15.  
    16.     'CODE FOR CREATING THE HYPERLINKS TO THE DESCRIPTION WINDOW IN THE DESIGN PROPERTIES.
    17.     Public Class MyDesigner
    18.         Inherits System.Windows.Forms.Design.ControlDesigner
    19.  
    20.         Private MyVerbs As System.ComponentModel.Design.DesignerVerbCollection
    21.  
    22.         Private Sub MyAboutVerb(ByVal sender As Object, ByVal e As EventArgs)
    23.             MessageBox.Show("About MyControl, Blah, Blah, Blah.", "MyControl", MessageBoxButtons.OK, MessageBoxIcon.Information)
    24.         End Sub
    25.  
    26.         Public Overrides ReadOnly Property Verbs() As System.ComponentModel.Design.DesignerVerbCollection
    27.             Get
    28.                 If MyVerbs Is Nothing Then
    29.                     MyVerbs = New System.ComponentModel.Design.DesignerVerbCollection
    30.                     MyVerbs.Add(New System.ComponentModel.Design.DesignerVerb("About", AddressOf MyAboutVerb))
    31.                 End If
    32.                 Return MyVerbs
    33.             End Get
    34.         End Property
    35.     End Class
    36.  
    37. End Class
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  14. #14
    Fanatic Member pax's Avatar
    Join Date
    Mar 2001
    Location
    Denmark
    Posts
    840

    Re: About Button in Design Time Properties Window - Not resolved

    Hi.

    I think you're missing the Designer attribute.

    VB Code:
    1. <[B]Designer(GetType(MyDesigner))[/B], ToolboxBitmap(GetType(MyControl), "MyControl.bmp")> _
    2. Public Class MyControl
    3.  
    4.     Inherits System.Windows.Forms.UserControl
    5.  
    6. "Windows Form Designer generated code"
    7.  
    8.     Private Sub MyControl_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
    9.         '...
    10.         '...
    I wish I could think of something witty to put in my sig...

    ...Currently using VS2013...

  15. #15

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: About Button in Design Time Properties Window - Not resolved

    Yes, but I didnt know how to implement it and keep my control bitmap.

    Thanks, I wil give it another try.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  16. #16

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: About Button in Design Time Properties Window - Not resolved

    MyDesigner is coming up as "not defined".
    VB Code:
    1. Imports System.ComponentModel
    2.  
    3. <Designer(GetType([color=red]MyDesigner[/color])), ToolboxBitmap(GetType(MyControl), "MyControl.bmp")> _
    4. Public Class MyControl
    5.  
    6.     Inherits System.Windows.Forms.UserControl
    7.  
    8. "Windows Form Designer generated code"
    9.  
    10.     Private Sub MyControl_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
    11.         '...
    12.         '...
    13.         '...
    14.     End Sub
    15.  
    16.     'CODE FOR CREATING THE HYPERLINKS TO THE DESCRIPTION WINDOW IN THE DESIGN PROPERTIES.
    17.     Public Class MyDesigner 'BUT ITS DEFINED HERE?
    18.         Inherits System.Windows.Forms.Design.ControlDesigner
    19.  
    20.         Private MyVerbs As System.ComponentModel.Design.DesignerVerbCollection
    21.  
    22.         Private Sub MyAboutVerb(ByVal sender As Object, ByVal e As EventArgs)
    23.             MessageBox.Show("About MyControl, Blah, Blah, Blah.", "MyControl", MessageBoxButtons.OK, MessageBoxIcon.Information)
    24.         End Sub
    25.  
    26.         Public Overrides ReadOnly Property Verbs() As System.ComponentModel.Design.DesignerVerbCollection
    27.             Get
    28.                 If MyVerbs Is Nothing Then
    29.                     MyVerbs = New System.ComponentModel.Design.DesignerVerbCollection
    30.                     MyVerbs.Add(New System.ComponentModel.Design.DesignerVerb("About", AddressOf MyAboutVerb))
    31.                 End If
    32.                 Return MyVerbs
    33.             End Get
    34.         End Property
    35.     End Class
    36.  
    37. End Class
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  17. #17
    Fanatic Member pax's Avatar
    Join Date
    Mar 2001
    Location
    Denmark
    Posts
    840

    Re: About Button in Design Time Properties Window - Not resolved

    Sorry. My fault.

    The designer is INSIDE the control class so the attribute should look like:
    VB Code:
    1. <Designer(GetType([B]MyControl.[/B]MyDesigner)), ToolboxBitmap(GetType(MyControl), "MyControl.bmp")> _
    2. Public Class MyControl
    3. .
    4. .
    5. .
    I wish I could think of something witty to put in my sig...

    ...Currently using VS2013...

  18. #18

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: About Button in Design Time Properties Window - Not resolved

    Yea! Error went away! I dont have time right now to do the testing on the
    build but I hope it will work. Be back in a few hours.

    Thanks Pax
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  19. #19

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: About Button in Design Time Properties Window - Not resolved

    YES, YES, YES, IT WORKS! This is so cool. I cant thank you guys enough
    for your patience and help on this.



    Now its on to the "next" problem
    Last edited by RobDog888; Feb 4th, 2005 at 01:08 PM.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  20. #20
    Fanatic Member pax's Avatar
    Join Date
    Mar 2001
    Location
    Denmark
    Posts
    840

    Re: About Button in Design Time Properties Window [RESOLVED!!! Thanks Pax :thumb:]

    Cool. Glad I could help.
    I wish I could think of something witty to put in my sig...

    ...Currently using VS2013...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width