ComboBox Text Return

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • news.microsoft.com

    ComboBox Text Return

    I am new to this so bear with me.

    I have a set of combo boxes. Lets call them ComboBox1 and ComboBox2.

    ComboBox1 items are pulled from a table. When a user selects a certain item
    I want to disable ComboBox2. i can make this work in Visual Web Developer,
    but have been unsuccessful in Visual Basic 2005.


  • Cor Ligthert [MVP]

    #2
    Re: ComboBox Text Return

    Can you show it how you would do it in aspnet, maybe is that the best
    traject to show it you in VBNet.

    Did you know by the way that the most active VB newsgroup is

    microsoft.publi c.dotnet.langua ges.vb

    Cor

    "news.microsoft .com" <red9r@cox.ne t> schreef in bericht
    news:%23YvjOcZk GHA.1600@TK2MSF TNGP04.phx.gbl. ..[color=blue]
    >I am new to this so bear with me.
    >
    > I have a set of combo boxes. Lets call them ComboBox1 and ComboBox2.
    >
    > ComboBox1 items are pulled from a table. When a user selects a certain
    > item I want to disable ComboBox2. i can make this work in Visual Web
    > Developer, but have been unsuccessful in Visual Basic 2005.
    >
    >[/color]


    Comment

    • DJ

      #3
      Re: ComboBox Text Return

      I can make it work in Visual Web Developer 2005 with the following syntax:

      If DropDownBox1.Se lectedItem.Text = "Normal" Then
      DropDownBox6.En abled = False
      Else
      DropDownBox6.En abled = True
      EndIF

      I was hoping that the following would work in VB 2005 but so far I have been
      unsuccessful in making it work.

      If ComboBox.Select edItem.Text = "Normal" but there is no Text child object
      for Selected Item.

      "Cor Ligthert [MVP]" <notmyfirstname @planet.nl> wrote in message
      news:efnHfjdkGH A.1600@TK2MSFTN GP04.phx.gbl...[color=blue]
      > Can you show it how you would do it in aspnet, maybe is that the best
      > traject to show it you in VBNet.
      >
      > Did you know by the way that the most active VB newsgroup is
      >
      > microsoft.publi c.dotnet.langua ges.vb
      >
      > Cor
      >
      > "news.microsoft .com" <red9r@cox.ne t> schreef in bericht
      > news:%23YvjOcZk GHA.1600@TK2MSF TNGP04.phx.gbl. ..[color=green]
      >>I am new to this so bear with me.
      >>
      >> I have a set of combo boxes. Lets call them ComboBox1 and ComboBox2.
      >>
      >> ComboBox1 items are pulled from a table. When a user selects a certain
      >> item I want to disable ComboBox2. i can make this work in Visual Web
      >> Developer, but have been unsuccessful in Visual Basic 2005.
      >>
      >>[/color]
      >
      >[/color]


      Comment

      • Cor Ligthert [MVP]

        #4
        Re: ComboBox Text Return

        DJ,

        In my idea is the currenttext in a combobox is always the selectedtext.
        Combobox1.text = normal

        What do I miss?

        Cor

        "DJ" <red9r@cox.ne t> schreef in bericht
        news:%23hXxuYkk GHA.3816@TK2MSF TNGP02.phx.gbl. ..[color=blue]
        >I can make it work in Visual Web Developer 2005 with the following syntax:
        >
        > If DropDownBox1.Se lectedItem.Text = "Normal" Then
        > DropDownBox6.En abled = False
        > Else
        > DropDownBox6.En abled = True
        > EndIF
        >
        > I was hoping that the following would work in VB 2005 but so far I have
        > been unsuccessful in making it work.
        >
        > If ComboBox.Select edItem.Text = "Normal" but there is no Text child object
        > for Selected Item.
        >
        > "Cor Ligthert [MVP]" <notmyfirstname @planet.nl> wrote in message
        > news:efnHfjdkGH A.1600@TK2MSFTN GP04.phx.gbl...[color=green]
        >> Can you show it how you would do it in aspnet, maybe is that the best
        >> traject to show it you in VBNet.
        >>
        >> Did you know by the way that the most active VB newsgroup is
        >>
        >> microsoft.publi c.dotnet.langua ges.vb
        >>
        >> Cor
        >>
        >> "news.microsoft .com" <red9r@cox.ne t> schreef in bericht
        >> news:%23YvjOcZk GHA.1600@TK2MSF TNGP04.phx.gbl. ..[color=darkred]
        >>>I am new to this so bear with me.
        >>>
        >>> I have a set of combo boxes. Lets call them ComboBox1 and ComboBox2.
        >>>
        >>> ComboBox1 items are pulled from a table. When a user selects a certain
        >>> item I want to disable ComboBox2. i can make this work in Visual Web
        >>> Developer, but have been unsuccessful in Visual Basic 2005.
        >>>
        >>>[/color]
        >>
        >>[/color]
        >
        >[/color]


        Comment

        • DJ

          #5
          Re: ComboBox Text Return

          Correct me if I am wrong but ComboBox1.Text = "Normal" would set the text in
          the box to Normal.

          What I am trying to do is return the text value of whatever item is selected
          so that when one imparticular item (Normal) is selected, ComboBox6 will be
          disabled.

          "Cor Ligthert [MVP]" <notmyfirstname @planet.nl> wrote in message
          news:%239eDT%23 pkGHA.408@TK2MS FTNGP03.phx.gbl ...[color=blue]
          > DJ,
          >
          > In my idea is the currenttext in a combobox is always the selectedtext.
          > Combobox1.text = normal
          >
          > What do I miss?
          >
          > Cor
          >
          > "DJ" <red9r@cox.ne t> schreef in bericht
          > news:%23hXxuYkk GHA.3816@TK2MSF TNGP02.phx.gbl. ..[color=green]
          >>I can make it work in Visual Web Developer 2005 with the following syntax:
          >>
          >> If DropDownBox1.Se lectedItem.Text = "Normal" Then
          >> DropDownBox6.En abled = False
          >> Else
          >> DropDownBox6.En abled = True
          >> EndIF
          >>
          >> I was hoping that the following would work in VB 2005 but so far I have
          >> been unsuccessful in making it work.
          >>
          >> If ComboBox.Select edItem.Text = "Normal" but there is no Text child
          >> object for Selected Item.
          >>
          >> "Cor Ligthert [MVP]" <notmyfirstname @planet.nl> wrote in message
          >> news:efnHfjdkGH A.1600@TK2MSFTN GP04.phx.gbl...[color=darkred]
          >>> Can you show it how you would do it in aspnet, maybe is that the best
          >>> traject to show it you in VBNet.
          >>>
          >>> Did you know by the way that the most active VB newsgroup is
          >>>
          >>> microsoft.publi c.dotnet.langua ges.vb
          >>>
          >>> Cor
          >>>
          >>> "news.microsoft .com" <red9r@cox.ne t> schreef in bericht
          >>> news:%23YvjOcZk GHA.1600@TK2MSF TNGP04.phx.gbl. ..
          >>>>I am new to this so bear with me.
          >>>>
          >>>> I have a set of combo boxes. Lets call them ComboBox1 and ComboBox2.
          >>>>
          >>>> ComboBox1 items are pulled from a table. When a user selects a certain
          >>>> item I want to disable ComboBox2. i can make this work in Visual Web
          >>>> Developer, but have been unsuccessful in Visual Basic 2005.
          >>>>
          >>>>
          >>>
          >>>[/color]
          >>
          >>[/color]
          >
          >[/color]


          Comment

          • Cor Ligthert [MVP]

            #6
            Re: ComboBox Text Return

            DJ,

            I mean

            If Combobox1.Text ="Normal" then instead of your code

            If DropDownBox1.Se lectedItem.Text = "Normal" Then

            Cor


            "DJ" <red9r@cox.ne t> schreef in bericht
            news:%236w1yKvk GHA.1600@TK2MSF TNGP04.phx.gbl. ..[color=blue]
            > Correct me if I am wrong but ComboBox1.Text = "Normal" would set the text
            > in the box to Normal.
            >
            > What I am trying to do is return the text value of whatever item is
            > selected so that when one imparticular item (Normal) is selected,
            > ComboBox6 will be disabled.
            >
            > "Cor Ligthert [MVP]" <notmyfirstname @planet.nl> wrote in message
            > news:%239eDT%23 pkGHA.408@TK2MS FTNGP03.phx.gbl ...[color=green]
            >> DJ,
            >>
            >> In my idea is the currenttext in a combobox is always the selectedtext.
            >> Combobox1.text = normal
            >>
            >> What do I miss?
            >>
            >> Cor
            >>
            >> "DJ" <red9r@cox.ne t> schreef in bericht
            >> news:%23hXxuYkk GHA.3816@TK2MSF TNGP02.phx.gbl. ..[color=darkred]
            >>>I can make it work in Visual Web Developer 2005 with the following
            >>>syntax:
            >>>
            >>> If DropDownBox1.Se lectedItem.Text = "Normal" Then
            >>> DropDownBox6.En abled = False
            >>> Else
            >>> DropDownBox6.En abled = True
            >>> EndIF
            >>>
            >>> I was hoping that the following would work in VB 2005 but so far I have
            >>> been unsuccessful in making it work.
            >>>
            >>> If ComboBox.Select edItem.Text = "Normal" but there is no Text child
            >>> object for Selected Item.
            >>>
            >>> "Cor Ligthert [MVP]" <notmyfirstname @planet.nl> wrote in message
            >>> news:efnHfjdkGH A.1600@TK2MSFTN GP04.phx.gbl...
            >>>> Can you show it how you would do it in aspnet, maybe is that the best
            >>>> traject to show it you in VBNet.
            >>>>
            >>>> Did you know by the way that the most active VB newsgroup is
            >>>>
            >>>> microsoft.publi c.dotnet.langua ges.vb
            >>>>
            >>>> Cor
            >>>>
            >>>> "news.microsoft .com" <red9r@cox.ne t> schreef in bericht
            >>>> news:%23YvjOcZk GHA.1600@TK2MSF TNGP04.phx.gbl. ..
            >>>>>I am new to this so bear with me.
            >>>>>
            >>>>> I have a set of combo boxes. Lets call them ComboBox1 and ComboBox2.
            >>>>>
            >>>>> ComboBox1 items are pulled from a table. When a user selects a certain
            >>>>> item I want to disable ComboBox2. i can make this work in Visual Web
            >>>>> Developer, but have been unsuccessful in Visual Basic 2005.
            >>>>>
            >>>>>
            >>>>
            >>>>
            >>>
            >>>[/color]
            >>
            >>[/color]
            >
            >[/color]


            Comment

            • DJ

              #7
              Re: ComboBox Text Return

              Cor,
              Thanks for the suggestion. Unfortunately it doesn't work either.

              Any other ideas?

              "Cor Ligthert [MVP]" <notmyfirstname @planet.nl> wrote in message
              news:OmE2DLwkGH A.4512@TK2MSFTN GP04.phx.gbl...[color=blue]
              > DJ,
              >
              > I mean
              >
              > If Combobox1.Text ="Normal" then instead of your code
              >
              > If DropDownBox1.Se lectedItem.Text = "Normal" Then
              >
              > Cor
              >
              >
              > "DJ" <red9r@cox.ne t> schreef in bericht
              > news:%236w1yKvk GHA.1600@TK2MSF TNGP04.phx.gbl. ..[color=green]
              >> Correct me if I am wrong but ComboBox1.Text = "Normal" would set the text
              >> in the box to Normal.
              >>
              >> What I am trying to do is return the text value of whatever item is
              >> selected so that when one imparticular item (Normal) is selected,
              >> ComboBox6 will be disabled.
              >>
              >> "Cor Ligthert [MVP]" <notmyfirstname @planet.nl> wrote in message
              >> news:%239eDT%23 pkGHA.408@TK2MS FTNGP03.phx.gbl ...[color=darkred]
              >>> DJ,
              >>>
              >>> In my idea is the currenttext in a combobox is always the selectedtext.
              >>> Combobox1.text = normal
              >>>
              >>> What do I miss?
              >>>
              >>> Cor
              >>>
              >>> "DJ" <red9r@cox.ne t> schreef in bericht
              >>> news:%23hXxuYkk GHA.3816@TK2MSF TNGP02.phx.gbl. ..
              >>>>I can make it work in Visual Web Developer 2005 with the following
              >>>>syntax:
              >>>>
              >>>> If DropDownBox1.Se lectedItem.Text = "Normal" Then
              >>>> DropDownBox6.En abled = False
              >>>> Else
              >>>> DropDownBox6.En abled = True
              >>>> EndIF
              >>>>
              >>>> I was hoping that the following would work in VB 2005 but so far I have
              >>>> been unsuccessful in making it work.
              >>>>
              >>>> If ComboBox.Select edItem.Text = "Normal" but there is no Text child
              >>>> object for Selected Item.
              >>>>
              >>>> "Cor Ligthert [MVP]" <notmyfirstname @planet.nl> wrote in message
              >>>> news:efnHfjdkGH A.1600@TK2MSFTN GP04.phx.gbl...
              >>>>> Can you show it how you would do it in aspnet, maybe is that the best
              >>>>> traject to show it you in VBNet.
              >>>>>
              >>>>> Did you know by the way that the most active VB newsgroup is
              >>>>>
              >>>>> microsoft.publi c.dotnet.langua ges.vb
              >>>>>
              >>>>> Cor
              >>>>>
              >>>>> "news.microsoft .com" <red9r@cox.ne t> schreef in bericht
              >>>>> news:%23YvjOcZk GHA.1600@TK2MSF TNGP04.phx.gbl. ..
              >>>>>>I am new to this so bear with me.
              >>>>>>
              >>>>>> I have a set of combo boxes. Lets call them ComboBox1 and ComboBox2.
              >>>>>>
              >>>>>> ComboBox1 items are pulled from a table. When a user selects a
              >>>>>> certain item I want to disable ComboBox2. i can make this work in
              >>>>>> Visual Web Developer, but have been unsuccessful in Visual Basic
              >>>>>> 2005.
              >>>>>>
              >>>>>>
              >>>>>
              >>>>>
              >>>>
              >>>>
              >>>
              >>>[/color]
              >>
              >>[/color]
              >
              >[/color]


              Comment

              • Cor Ligthert [MVP]

                #8
                Re: ComboBox Text Return

                DJ,

                Yes show the code that you are curently using to set the binding to the
                datasource, it seems you have something very special.

                Cor

                "DJ" <red9r@cox.ne t> schreef in bericht
                news:OQjQMwykGH A.3484@TK2MSFTN GP03.phx.gbl...[color=blue]
                > Cor,
                > Thanks for the suggestion. Unfortunately it doesn't work either.
                >
                > Any other ideas?
                >
                > "Cor Ligthert [MVP]" <notmyfirstname @planet.nl> wrote in message
                > news:OmE2DLwkGH A.4512@TK2MSFTN GP04.phx.gbl...[color=green]
                >> DJ,
                >>
                >> I mean
                >>
                >> If Combobox1.Text ="Normal" then instead of your code
                >>
                >> If DropDownBox1.Se lectedItem.Text = "Normal" Then
                >>
                >> Cor
                >>
                >>
                >> "DJ" <red9r@cox.ne t> schreef in bericht
                >> news:%236w1yKvk GHA.1600@TK2MSF TNGP04.phx.gbl. ..[color=darkred]
                >>> Correct me if I am wrong but ComboBox1.Text = "Normal" would set the
                >>> text in the box to Normal.
                >>>
                >>> What I am trying to do is return the text value of whatever item is
                >>> selected so that when one imparticular item (Normal) is selected,
                >>> ComboBox6 will be disabled.
                >>>
                >>> "Cor Ligthert [MVP]" <notmyfirstname @planet.nl> wrote in message
                >>> news:%239eDT%23 pkGHA.408@TK2MS FTNGP03.phx.gbl ...
                >>>> DJ,
                >>>>
                >>>> In my idea is the currenttext in a combobox is always the selectedtext.
                >>>> Combobox1.text = normal
                >>>>
                >>>> What do I miss?
                >>>>
                >>>> Cor
                >>>>
                >>>> "DJ" <red9r@cox.ne t> schreef in bericht
                >>>> news:%23hXxuYkk GHA.3816@TK2MSF TNGP02.phx.gbl. ..
                >>>>>I can make it work in Visual Web Developer 2005 with the following
                >>>>>syntax:
                >>>>>
                >>>>> If DropDownBox1.Se lectedItem.Text = "Normal" Then
                >>>>> DropDownBox6.En abled = False
                >>>>> Else
                >>>>> DropDownBox6.En abled = True
                >>>>> EndIF
                >>>>>
                >>>>> I was hoping that the following would work in VB 2005 but so far I
                >>>>> have been unsuccessful in making it work.
                >>>>>
                >>>>> If ComboBox.Select edItem.Text = "Normal" but there is no Text child
                >>>>> object for Selected Item.
                >>>>>
                >>>>> "Cor Ligthert [MVP]" <notmyfirstname @planet.nl> wrote in message
                >>>>> news:efnHfjdkGH A.1600@TK2MSFTN GP04.phx.gbl...
                >>>>>> Can you show it how you would do it in aspnet, maybe is that the best
                >>>>>> traject to show it you in VBNet.
                >>>>>>
                >>>>>> Did you know by the way that the most active VB newsgroup is
                >>>>>>
                >>>>>> microsoft.publi c.dotnet.langua ges.vb
                >>>>>>
                >>>>>> Cor
                >>>>>>
                >>>>>> "news.microsoft .com" <red9r@cox.ne t> schreef in bericht
                >>>>>> news:%23YvjOcZk GHA.1600@TK2MSF TNGP04.phx.gbl. ..
                >>>>>>>I am new to this so bear with me.
                >>>>>>>
                >>>>>>> I have a set of combo boxes. Lets call them ComboBox1 and ComboBox2.
                >>>>>>>
                >>>>>>> ComboBox1 items are pulled from a table. When a user selects a
                >>>>>>> certain item I want to disable ComboBox2. i can make this work in
                >>>>>>> Visual Web Developer, but have been unsuccessful in Visual Basic
                >>>>>>> 2005.
                >>>>>>>
                >>>>>>>
                >>>>>>
                >>>>>>
                >>>>>
                >>>>>
                >>>>
                >>>>
                >>>
                >>>[/color]
                >>
                >>[/color]
                >
                >[/color]


                Comment

                • DJ

                  #9
                  Re: ComboBox Text Return

                  I am using Microsoft Visual Basic 2005 Express Edition. I selected the
                  ComboBox and checked "Use Data Bound Items". Data Source is set to the SQL
                  Table. I believe the underlying code is
                  NewProjectDataS et.Morph.Fill,G etData()

                  "Cor Ligthert [MVP]" <notmyfirstname @planet.nl> wrote in message
                  news:ew46sV1kGH A.1936@TK2MSFTN GP04.phx.gbl...[color=blue]
                  > DJ,
                  >
                  > Yes show the code that you are curently using to set the binding to the
                  > datasource, it seems you have something very special.
                  >
                  > Cor
                  >
                  > "DJ" <red9r@cox.ne t> schreef in bericht
                  > news:OQjQMwykGH A.3484@TK2MSFTN GP03.phx.gbl...[color=green]
                  >> Cor,
                  >> Thanks for the suggestion. Unfortunately it doesn't work either.
                  >>
                  >> Any other ideas?
                  >>
                  >> "Cor Ligthert [MVP]" <notmyfirstname @planet.nl> wrote in message
                  >> news:OmE2DLwkGH A.4512@TK2MSFTN GP04.phx.gbl...[color=darkred]
                  >>> DJ,
                  >>>
                  >>> I mean
                  >>>
                  >>> If Combobox1.Text ="Normal" then instead of your code
                  >>>
                  >>> If DropDownBox1.Se lectedItem.Text = "Normal" Then
                  >>>
                  >>> Cor
                  >>>
                  >>>
                  >>> "DJ" <red9r@cox.ne t> schreef in bericht
                  >>> news:%236w1yKvk GHA.1600@TK2MSF TNGP04.phx.gbl. ..
                  >>>> Correct me if I am wrong but ComboBox1.Text = "Normal" would set the
                  >>>> text in the box to Normal.
                  >>>>
                  >>>> What I am trying to do is return the text value of whatever item is
                  >>>> selected so that when one imparticular item (Normal) is selected,
                  >>>> ComboBox6 will be disabled.
                  >>>>
                  >>>> "Cor Ligthert [MVP]" <notmyfirstname @planet.nl> wrote in message
                  >>>> news:%239eDT%23 pkGHA.408@TK2MS FTNGP03.phx.gbl ...
                  >>>>> DJ,
                  >>>>>
                  >>>>> In my idea is the currenttext in a combobox is always the
                  >>>>> selectedtext.
                  >>>>> Combobox1.text = normal
                  >>>>>
                  >>>>> What do I miss?
                  >>>>>
                  >>>>> Cor
                  >>>>>
                  >>>>> "DJ" <red9r@cox.ne t> schreef in bericht
                  >>>>> news:%23hXxuYkk GHA.3816@TK2MSF TNGP02.phx.gbl. ..
                  >>>>>>I can make it work in Visual Web Developer 2005 with the following
                  >>>>>>syntax:
                  >>>>>>
                  >>>>>> If DropDownBox1.Se lectedItem.Text = "Normal" Then
                  >>>>>> DropDownBox6.En abled = False
                  >>>>>> Else
                  >>>>>> DropDownBox6.En abled = True
                  >>>>>> EndIF
                  >>>>>>
                  >>>>>> I was hoping that the following would work in VB 2005 but so far I
                  >>>>>> have been unsuccessful in making it work.
                  >>>>>>
                  >>>>>> If ComboBox.Select edItem.Text = "Normal" but there is no Text child
                  >>>>>> object for Selected Item.
                  >>>>>>
                  >>>>>> "Cor Ligthert [MVP]" <notmyfirstname @planet.nl> wrote in message
                  >>>>>> news:efnHfjdkGH A.1600@TK2MSFTN GP04.phx.gbl...
                  >>>>>>> Can you show it how you would do it in aspnet, maybe is that the
                  >>>>>>> best traject to show it you in VBNet.
                  >>>>>>>
                  >>>>>>> Did you know by the way that the most active VB newsgroup is
                  >>>>>>>
                  >>>>>>> microsoft.publi c.dotnet.langua ges.vb
                  >>>>>>>
                  >>>>>>> Cor
                  >>>>>>>
                  >>>>>>> "news.microsoft .com" <red9r@cox.ne t> schreef in bericht
                  >>>>>>> news:%23YvjOcZk GHA.1600@TK2MSF TNGP04.phx.gbl. ..
                  >>>>>>>>I am new to this so bear with me.
                  >>>>>>>>
                  >>>>>>>> I have a set of combo boxes. Lets call them ComboBox1 and
                  >>>>>>>> ComboBox2.
                  >>>>>>>>
                  >>>>>>>> ComboBox1 items are pulled from a table. When a user selects a
                  >>>>>>>> certain item I want to disable ComboBox2. i can make this work in
                  >>>>>>>> Visual Web Developer, but have been unsuccessful in Visual Basic
                  >>>>>>>> 2005.
                  >>>>>>>>
                  >>>>>>>>
                  >>>>>>>
                  >>>>>>>
                  >>>>>>
                  >>>>>>
                  >>>>>
                  >>>>>
                  >>>>
                  >>>>
                  >>>
                  >>>[/color]
                  >>
                  >>[/color]
                  >
                  >[/color]


                  Comment

                  • GhostInAK

                    #10
                    Re: ComboBox Text Return

                    Hello news.microsoft. com,

                    Set a breakpoint on your Combobox1.Selec tedIndexChanged event. Then set
                    a watch on Combobox1 and Combobox1.Selec tedItem.

                    The watch window will tell you all you need to know.

                    -Boo

                    [color=blue]
                    > I am new to this so bear with me.
                    >
                    > I have a set of combo boxes. Lets call them ComboBox1 and ComboBox2.
                    >
                    > ComboBox1 items are pulled from a table. When a user selects a certain
                    > item I want to disable ComboBox2. i can make this work in Visual Web
                    > Developer, but have been unsuccessful in Visual Basic 2005.
                    >[/color]


                    Comment

                    • DJ

                      #11
                      Re: ComboBox Text Return

                      I set a breakpoint at the SelectedIndexCh anged event and the text visualizer
                      for the Combobox.Select ed Item just displays "" for any item that is
                      selected.

                      "GhostInAK" <ghostinak@gmai l.com> wrote in message
                      news:be1391bfa7 c18c861c5e04907 52@news.microso ft.com...[color=blue]
                      > Hello news.microsoft. com,
                      >
                      > Set a breakpoint on your Combobox1.Selec tedIndexChanged event. Then set a
                      > watch on Combobox1 and Combobox1.Selec tedItem.
                      >
                      > The watch window will tell you all you need to know.
                      >
                      > -Boo
                      >
                      >[color=green]
                      >> I am new to this so bear with me.
                      >>
                      >> I have a set of combo boxes. Lets call them ComboBox1 and ComboBox2.
                      >>
                      >> ComboBox1 items are pulled from a table. When a user selects a certain
                      >> item I want to disable ComboBox2. i can make this work in Visual Web
                      >> Developer, but have been unsuccessful in Visual Basic 2005.
                      >>[/color]
                      >
                      >[/color]


                      Comment

                      Working...