Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. General Programming
  3. Visual Basic
  4. Property grid [modified]

Property grid [modified]

Scheduled Pinned Locked Moved Visual Basic
csharpcssdesignhelp
3 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Offline
    B Offline
    bhargava2409
    wrote on last edited by
    #1

    hi,i am trying to design a property grid that consisits of multiple drop downs of user defined and move those values selected to a variable in back end vb.net code and perform some matha matical calculations. But i am not able to create multiple dropdowns in single group can any one help?

    modified on Tuesday, June 23, 2009 7:34 AM

    C 1 Reply Last reply
    0
    • B bhargava2409

      hi,i am trying to design a property grid that consisits of multiple drop downs of user defined and move those values selected to a variable in back end vb.net code and perform some matha matical calculations. But i am not able to create multiple dropdowns in single group can any one help?

      modified on Tuesday, June 23, 2009 7:34 AM

      C Offline
      C Offline
      Christian Graus
      wrote on last edited by
      #2

      That's great news. Why are you telling us this ? Did you have a specific problem ? You should tell us what it is, and post some code so we can help.

      Christian Graus Driven to the arms of OSX by Vista. "! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums. I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp

      B 1 Reply Last reply
      0
      • C Christian Graus

        That's great news. Why are you telling us this ? Did you have a specific problem ? You should tell us what it is, and post some code so we can help.

        Christian Graus Driven to the arms of OSX by Vista. "! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums. I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp

        B Offline
        B Offline
        bhargava2409
        wrote on last edited by
        #3

        above i modified my question in proper way. My main problem is i am creating multiple drop downs using class for each dropdown.i created one drop down but i can not able to create multiple. Getting error called base class have multiple definetions. code i am trying for drope down is: Imports System.ComponentModel Public Class MotoList1 : Inherits System.ComponentModel.StringConverter ''' ''' Private _Title As String Private _Show As Boolean Private _Number As Short ''' <CategoryAttribute("Other Inputs"), _ Browsable(True), _ [ReadOnly](False), _ BindableAttribute(False), _ DefaultValueAttribute(""), _ DesignOnly(False), _ DescriptionAttribute("Enter Title for the application")> _ Public Property Title() As String Get Return _Title End Get Set(ByVal Value As String) _Title = Value End Set End Property ''' <CategoryAttribute("Other Inputs"), _ Browsable(True), _ [ReadOnly](False), _ BindableAttribute(False), _ DefaultValueAttribute("True"), _ DesignOnly(False), _ DescriptionAttribute("Show option")> _ Public Property Show() As Boolean Get Return _Show End Get Set(ByVal Value As Boolean) _Show = Value End Set End Property ''' <CategoryAttribute("Other Inputs"), _ Browsable(True), _ [ReadOnly](False), _ BindableAttribute(False), _ DefaultValueAttribute("0"), _ DesignOnly(False), _ DescriptionAttribute("Enter a number")> _ Public Property Number() As Short Get Return _Number End Get Set(ByVal Value As Short) _Number = Value End Set End Property Dim _Motor1in As String() = New String() {"400", "500"} Public Overloads Overrides Function GetStandardValues(ByVal context As System.ComponentModel.ITypeDescriptorContext) As System.ComponentModel.TypeConverter.StandardValuesCollection Return New StandardValuesCollection(_Motor1in) End Function ''' Public Overloads Overrides Function GetStandardValuesSupported(ByVal context As System.ComponentModel.ITypeDescriptorContext) As Boolean Return True End Function ''' Public Overloads Overrides Function GetStandardValuesExclusive(ByVal context As System.ComponentModel.ITypeDescriptorCont

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups