menu or popumenu clickright in combobox choice?Binding a WPF ComboBox to a custom listwxPython ListCtrl Column Ignores Specific FieldsComboBox: Adding Text and Value to an Item (no Binding Source)Adding an AuiToolbar causes “expected argument 3 type int”How to display a combobox based on a selection from another comboboxhow to reset choices of a combobox in real time using wxpython?wxpython - Erase background erases non-background componentspopulate filtered choices in combobox using wxpythonCombobox dropdown choice freezingReturn combo box choices as a parameters in wxpython

Is the claim "Employers won't employ people with no 'social media presence'" realistic?

Pulling the rope with one hand is as heavy as with two hands?

"Hidden" theta-term in Hamiltonian formulation of Yang-Mills theory

Can someone publish a story that happened to you?

How can the Githyanki Supreme Commander move while insubstantial?

"You've called the wrong number" or "You called the wrong number"

Overlay of two functions leaves gaps

What's the polite way to say "I need to urinate"?

How much cash can I safely carry into the USA and avoid civil forfeiture?

Is Diceware more secure than a long passphrase?

Pre-plastic human skin alternative

Minor Revision with suggestion of an alternative proof by reviewer

Can an Area of Effect spell cast outside a Prismatic Wall extend inside it?

Multiple options vs single option UI

'It addicted me, with one taste.' Can 'addict' be used transitively?

What makes accurate emulation of old systems a difficult task?

Elements that can bond to themselves?

Critique of timeline aesthetic

What does the integral of a function times a function of a random variable represent, conceptually?

Was there a Viking Exchange as well as a Columbian one?

How could Tony Stark make this in Endgame?

How does Captain America channel this power?

Why does Mind Blank stop the Feeblemind spell?

How to pronounce 'c++' in Spanish



menu or popumenu clickright in combobox choice?


Binding a WPF ComboBox to a custom listwxPython ListCtrl Column Ignores Specific FieldsComboBox: Adding Text and Value to an Item (no Binding Source)Adding an AuiToolbar causes “expected argument 3 type int”How to display a combobox based on a selection from another comboboxhow to reset choices of a combobox in real time using wxpython?wxpython - Erase background erases non-background componentspopulate filtered choices in combobox using wxpythonCombobox dropdown choice freezingReturn combo box choices as a parameters in wxpython






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















i have first list ( visible, Infrarouge, simulation) in my combobox and i need to create list 2 ( VIS04,VIS05,VIS06,ir039,IR087,IR103,SIM1,SIM2,SIM2) like when i click right in visible i'will have like menu with : VIS04,VIS05,VIS06
and the same for infrarouge and simulation like the image description :



enter image description here
enter image description here



how can i have the menu like image description when i clik right with mouse in visible or other choice in combobox i have menu with list choice ? or all other suggestion possibl



i use wxpython in python3



this is part of my code :



class MainPanel(wx.Panel):

def __init__(self, parent):
super().__init__(parent)
wx.Frame.__init__(self, parent,size = (250,250))
self.splitter = wx.SplitterWindow(self, -1, size = (500,500))

#panelone
pan1 =wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
pan1.SetBackgroundColour("white")

#paneltwo
pan2 = wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
pan2.SetBackgroundColour("white")
#combobox

List1 = ['Infra', 'Vis','simulat']

combobox = wx.ComboBox(pan2, id=wx.ID_ANY, choices = List1, style=wx.CB_DROPDOWN,pos=(80,5))


some help or exemple please



i'm new in wxpython



thank u










share|improve this question






























    1















    i have first list ( visible, Infrarouge, simulation) in my combobox and i need to create list 2 ( VIS04,VIS05,VIS06,ir039,IR087,IR103,SIM1,SIM2,SIM2) like when i click right in visible i'will have like menu with : VIS04,VIS05,VIS06
    and the same for infrarouge and simulation like the image description :



    enter image description here
    enter image description here



    how can i have the menu like image description when i clik right with mouse in visible or other choice in combobox i have menu with list choice ? or all other suggestion possibl



    i use wxpython in python3



    this is part of my code :



    class MainPanel(wx.Panel):

    def __init__(self, parent):
    super().__init__(parent)
    wx.Frame.__init__(self, parent,size = (250,250))
    self.splitter = wx.SplitterWindow(self, -1, size = (500,500))

    #panelone
    pan1 =wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
    pan1.SetBackgroundColour("white")

    #paneltwo
    pan2 = wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
    pan2.SetBackgroundColour("white")
    #combobox

    List1 = ['Infra', 'Vis','simulat']

    combobox = wx.ComboBox(pan2, id=wx.ID_ANY, choices = List1, style=wx.CB_DROPDOWN,pos=(80,5))


    some help or exemple please



    i'm new in wxpython



    thank u










    share|improve this question


























      1












      1








      1








      i have first list ( visible, Infrarouge, simulation) in my combobox and i need to create list 2 ( VIS04,VIS05,VIS06,ir039,IR087,IR103,SIM1,SIM2,SIM2) like when i click right in visible i'will have like menu with : VIS04,VIS05,VIS06
      and the same for infrarouge and simulation like the image description :



      enter image description here
      enter image description here



      how can i have the menu like image description when i clik right with mouse in visible or other choice in combobox i have menu with list choice ? or all other suggestion possibl



      i use wxpython in python3



      this is part of my code :



      class MainPanel(wx.Panel):

      def __init__(self, parent):
      super().__init__(parent)
      wx.Frame.__init__(self, parent,size = (250,250))
      self.splitter = wx.SplitterWindow(self, -1, size = (500,500))

      #panelone
      pan1 =wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
      pan1.SetBackgroundColour("white")

      #paneltwo
      pan2 = wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
      pan2.SetBackgroundColour("white")
      #combobox

      List1 = ['Infra', 'Vis','simulat']

      combobox = wx.ComboBox(pan2, id=wx.ID_ANY, choices = List1, style=wx.CB_DROPDOWN,pos=(80,5))


      some help or exemple please



      i'm new in wxpython



      thank u










      share|improve this question
















      i have first list ( visible, Infrarouge, simulation) in my combobox and i need to create list 2 ( VIS04,VIS05,VIS06,ir039,IR087,IR103,SIM1,SIM2,SIM2) like when i click right in visible i'will have like menu with : VIS04,VIS05,VIS06
      and the same for infrarouge and simulation like the image description :



      enter image description here
      enter image description here



      how can i have the menu like image description when i clik right with mouse in visible or other choice in combobox i have menu with list choice ? or all other suggestion possibl



      i use wxpython in python3



      this is part of my code :



      class MainPanel(wx.Panel):

      def __init__(self, parent):
      super().__init__(parent)
      wx.Frame.__init__(self, parent,size = (250,250))
      self.splitter = wx.SplitterWindow(self, -1, size = (500,500))

      #panelone
      pan1 =wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
      pan1.SetBackgroundColour("white")

      #paneltwo
      pan2 = wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
      pan2.SetBackgroundColour("white")
      #combobox

      List1 = ['Infra', 'Vis','simulat']

      combobox = wx.ComboBox(pan2, id=wx.ID_ANY, choices = List1, style=wx.CB_DROPDOWN,pos=(80,5))


      some help or exemple please



      i'm new in wxpython



      thank u







      python-3.x combobox menu wxpython






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 8 at 14:20







      Tiera Eyek

















      asked Mar 6 at 14:24









      Tiera EyekTiera Eyek

      244




      244






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Your question and code refer to wx.ComboBox and yet your image examples are popup menus. I assume that you are trying to achieve something like this:



          import wx
          class myPanel(wx.Frame):
          def __init__(self, *args, **kwds):
          wx.Frame.__init__(self, *args, **kwds)
          self.panel = wx.Panel(self)
          text = wx.StaticText(self.panel, -1, "Right click on this panel for a popup menu")
          self.Bind(wx.EVT_CONTEXT_MENU, self.ShowPopup)
          self.Show()

          def ShowPopup(self, event):
          popmenu = wx.Menu()
          visible = wx.Menu()
          visible.Append( -1, "VIS04")
          visible.Append( -1, "VIS05")
          visible.Append( -1, "VIS06")
          visible.Append( -1, "VIS07")
          popmenu.Append( -1, "Visible", visible)

          infrared = wx.Menu()
          infrared.Append( -1, "IR04")
          infrared.Append( -1, "IR05")
          infrared.Append( -1, "IR06")
          infrared.Append( -1, "IR07")
          popmenu.Append( -1, "Infrared", infrared)

          simulation = wx.Menu()
          simulation.Append( -1, "SIM04")
          simulation.Append( -1, "SIM05")
          simulation.Append( -1, "SIM06")
          simulation.Append( -1, "SIM07")
          popmenu.Append( -1, "Simulation", simulation)

          self.Bind(wx.EVT_MENU, self.OnChoice)
          self.PopupMenu(popmenu)
          popmenu.Destroy()

          def OnChoice(self, event):
          id = event.GetId()
          obj = event.GetEventObject()
          print("Option chosen",obj.GetLabelText(id))

          if __name__ == '__main__':
          app = wx.App()
          myPanel(None)
          app.MainLoop()


          enter image description here






          share|improve this answer

























          • Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically said combobox and you coded with wx.ComboBox and yet you link to a picture of a menu item

            – Rolf of Saxony
            Mar 7 at 17:31











          • @ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all

            – Tiera Eyek
            Mar 7 at 19:45











          • @TieraEyek to be clear, do you mean a popup menu?

            – Rolf of Saxony
            Mar 8 at 10:37











          • @ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik

            – Tiera Eyek
            Mar 8 at 12:04











          • yes that what i need but why can i do that for my combobox is impossible ? thank u for help

            – Tiera Eyek
            Mar 9 at 13:30











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55025359%2fmenu-or-popumenu-clickright-in-combobox-choice%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          Your question and code refer to wx.ComboBox and yet your image examples are popup menus. I assume that you are trying to achieve something like this:



          import wx
          class myPanel(wx.Frame):
          def __init__(self, *args, **kwds):
          wx.Frame.__init__(self, *args, **kwds)
          self.panel = wx.Panel(self)
          text = wx.StaticText(self.panel, -1, "Right click on this panel for a popup menu")
          self.Bind(wx.EVT_CONTEXT_MENU, self.ShowPopup)
          self.Show()

          def ShowPopup(self, event):
          popmenu = wx.Menu()
          visible = wx.Menu()
          visible.Append( -1, "VIS04")
          visible.Append( -1, "VIS05")
          visible.Append( -1, "VIS06")
          visible.Append( -1, "VIS07")
          popmenu.Append( -1, "Visible", visible)

          infrared = wx.Menu()
          infrared.Append( -1, "IR04")
          infrared.Append( -1, "IR05")
          infrared.Append( -1, "IR06")
          infrared.Append( -1, "IR07")
          popmenu.Append( -1, "Infrared", infrared)

          simulation = wx.Menu()
          simulation.Append( -1, "SIM04")
          simulation.Append( -1, "SIM05")
          simulation.Append( -1, "SIM06")
          simulation.Append( -1, "SIM07")
          popmenu.Append( -1, "Simulation", simulation)

          self.Bind(wx.EVT_MENU, self.OnChoice)
          self.PopupMenu(popmenu)
          popmenu.Destroy()

          def OnChoice(self, event):
          id = event.GetId()
          obj = event.GetEventObject()
          print("Option chosen",obj.GetLabelText(id))

          if __name__ == '__main__':
          app = wx.App()
          myPanel(None)
          app.MainLoop()


          enter image description here






          share|improve this answer

























          • Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically said combobox and you coded with wx.ComboBox and yet you link to a picture of a menu item

            – Rolf of Saxony
            Mar 7 at 17:31











          • @ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all

            – Tiera Eyek
            Mar 7 at 19:45











          • @TieraEyek to be clear, do you mean a popup menu?

            – Rolf of Saxony
            Mar 8 at 10:37











          • @ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik

            – Tiera Eyek
            Mar 8 at 12:04











          • yes that what i need but why can i do that for my combobox is impossible ? thank u for help

            – Tiera Eyek
            Mar 9 at 13:30















          0














          Your question and code refer to wx.ComboBox and yet your image examples are popup menus. I assume that you are trying to achieve something like this:



          import wx
          class myPanel(wx.Frame):
          def __init__(self, *args, **kwds):
          wx.Frame.__init__(self, *args, **kwds)
          self.panel = wx.Panel(self)
          text = wx.StaticText(self.panel, -1, "Right click on this panel for a popup menu")
          self.Bind(wx.EVT_CONTEXT_MENU, self.ShowPopup)
          self.Show()

          def ShowPopup(self, event):
          popmenu = wx.Menu()
          visible = wx.Menu()
          visible.Append( -1, "VIS04")
          visible.Append( -1, "VIS05")
          visible.Append( -1, "VIS06")
          visible.Append( -1, "VIS07")
          popmenu.Append( -1, "Visible", visible)

          infrared = wx.Menu()
          infrared.Append( -1, "IR04")
          infrared.Append( -1, "IR05")
          infrared.Append( -1, "IR06")
          infrared.Append( -1, "IR07")
          popmenu.Append( -1, "Infrared", infrared)

          simulation = wx.Menu()
          simulation.Append( -1, "SIM04")
          simulation.Append( -1, "SIM05")
          simulation.Append( -1, "SIM06")
          simulation.Append( -1, "SIM07")
          popmenu.Append( -1, "Simulation", simulation)

          self.Bind(wx.EVT_MENU, self.OnChoice)
          self.PopupMenu(popmenu)
          popmenu.Destroy()

          def OnChoice(self, event):
          id = event.GetId()
          obj = event.GetEventObject()
          print("Option chosen",obj.GetLabelText(id))

          if __name__ == '__main__':
          app = wx.App()
          myPanel(None)
          app.MainLoop()


          enter image description here






          share|improve this answer

























          • Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically said combobox and you coded with wx.ComboBox and yet you link to a picture of a menu item

            – Rolf of Saxony
            Mar 7 at 17:31











          • @ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all

            – Tiera Eyek
            Mar 7 at 19:45











          • @TieraEyek to be clear, do you mean a popup menu?

            – Rolf of Saxony
            Mar 8 at 10:37











          • @ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik

            – Tiera Eyek
            Mar 8 at 12:04











          • yes that what i need but why can i do that for my combobox is impossible ? thank u for help

            – Tiera Eyek
            Mar 9 at 13:30













          0












          0








          0







          Your question and code refer to wx.ComboBox and yet your image examples are popup menus. I assume that you are trying to achieve something like this:



          import wx
          class myPanel(wx.Frame):
          def __init__(self, *args, **kwds):
          wx.Frame.__init__(self, *args, **kwds)
          self.panel = wx.Panel(self)
          text = wx.StaticText(self.panel, -1, "Right click on this panel for a popup menu")
          self.Bind(wx.EVT_CONTEXT_MENU, self.ShowPopup)
          self.Show()

          def ShowPopup(self, event):
          popmenu = wx.Menu()
          visible = wx.Menu()
          visible.Append( -1, "VIS04")
          visible.Append( -1, "VIS05")
          visible.Append( -1, "VIS06")
          visible.Append( -1, "VIS07")
          popmenu.Append( -1, "Visible", visible)

          infrared = wx.Menu()
          infrared.Append( -1, "IR04")
          infrared.Append( -1, "IR05")
          infrared.Append( -1, "IR06")
          infrared.Append( -1, "IR07")
          popmenu.Append( -1, "Infrared", infrared)

          simulation = wx.Menu()
          simulation.Append( -1, "SIM04")
          simulation.Append( -1, "SIM05")
          simulation.Append( -1, "SIM06")
          simulation.Append( -1, "SIM07")
          popmenu.Append( -1, "Simulation", simulation)

          self.Bind(wx.EVT_MENU, self.OnChoice)
          self.PopupMenu(popmenu)
          popmenu.Destroy()

          def OnChoice(self, event):
          id = event.GetId()
          obj = event.GetEventObject()
          print("Option chosen",obj.GetLabelText(id))

          if __name__ == '__main__':
          app = wx.App()
          myPanel(None)
          app.MainLoop()


          enter image description here






          share|improve this answer















          Your question and code refer to wx.ComboBox and yet your image examples are popup menus. I assume that you are trying to achieve something like this:



          import wx
          class myPanel(wx.Frame):
          def __init__(self, *args, **kwds):
          wx.Frame.__init__(self, *args, **kwds)
          self.panel = wx.Panel(self)
          text = wx.StaticText(self.panel, -1, "Right click on this panel for a popup menu")
          self.Bind(wx.EVT_CONTEXT_MENU, self.ShowPopup)
          self.Show()

          def ShowPopup(self, event):
          popmenu = wx.Menu()
          visible = wx.Menu()
          visible.Append( -1, "VIS04")
          visible.Append( -1, "VIS05")
          visible.Append( -1, "VIS06")
          visible.Append( -1, "VIS07")
          popmenu.Append( -1, "Visible", visible)

          infrared = wx.Menu()
          infrared.Append( -1, "IR04")
          infrared.Append( -1, "IR05")
          infrared.Append( -1, "IR06")
          infrared.Append( -1, "IR07")
          popmenu.Append( -1, "Infrared", infrared)

          simulation = wx.Menu()
          simulation.Append( -1, "SIM04")
          simulation.Append( -1, "SIM05")
          simulation.Append( -1, "SIM06")
          simulation.Append( -1, "SIM07")
          popmenu.Append( -1, "Simulation", simulation)

          self.Bind(wx.EVT_MENU, self.OnChoice)
          self.PopupMenu(popmenu)
          popmenu.Destroy()

          def OnChoice(self, event):
          id = event.GetId()
          obj = event.GetEventObject()
          print("Option chosen",obj.GetLabelText(id))

          if __name__ == '__main__':
          app = wx.App()
          myPanel(None)
          app.MainLoop()


          enter image description here







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Mar 9 at 8:46

























          answered Mar 6 at 16:17









          Rolf of SaxonyRolf of Saxony

          9,78022138




          9,78022138












          • Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically said combobox and you coded with wx.ComboBox and yet you link to a picture of a menu item

            – Rolf of Saxony
            Mar 7 at 17:31











          • @ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all

            – Tiera Eyek
            Mar 7 at 19:45











          • @TieraEyek to be clear, do you mean a popup menu?

            – Rolf of Saxony
            Mar 8 at 10:37











          • @ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik

            – Tiera Eyek
            Mar 8 at 12:04











          • yes that what i need but why can i do that for my combobox is impossible ? thank u for help

            – Tiera Eyek
            Mar 9 at 13:30

















          • Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically said combobox and you coded with wx.ComboBox and yet you link to a picture of a menu item

            – Rolf of Saxony
            Mar 7 at 17:31











          • @ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all

            – Tiera Eyek
            Mar 7 at 19:45











          • @TieraEyek to be clear, do you mean a popup menu?

            – Rolf of Saxony
            Mar 8 at 10:37











          • @ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik

            – Tiera Eyek
            Mar 8 at 12:04











          • yes that what i need but why can i do that for my combobox is impossible ? thank u for help

            – Tiera Eyek
            Mar 9 at 13:30
















          Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically said combobox and you coded with wx.ComboBox and yet you link to a picture of a menu item

          – Rolf of Saxony
          Mar 7 at 17:31





          Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically said combobox and you coded with wx.ComboBox and yet you link to a picture of a menu item

          – Rolf of Saxony
          Mar 7 at 17:31













          @ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all

          – Tiera Eyek
          Mar 7 at 19:45





          @ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all

          – Tiera Eyek
          Mar 7 at 19:45













          @TieraEyek to be clear, do you mean a popup menu?

          – Rolf of Saxony
          Mar 8 at 10:37





          @TieraEyek to be clear, do you mean a popup menu?

          – Rolf of Saxony
          Mar 8 at 10:37













          @ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik

          – Tiera Eyek
          Mar 8 at 12:04





          @ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik

          – Tiera Eyek
          Mar 8 at 12:04













          yes that what i need but why can i do that for my combobox is impossible ? thank u for help

          – Tiera Eyek
          Mar 9 at 13:30





          yes that what i need but why can i do that for my combobox is impossible ? thank u for help

          – Tiera Eyek
          Mar 9 at 13:30



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55025359%2fmenu-or-popumenu-clickright-in-combobox-choice%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          1928 у кіно

          Захаров Федір Захарович

          Ель Греко