menu or popumenu clickright in combobox choice?2019 Community Moderator ElectionBinding 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

Doesn't allowing a user mode program to access kernel space memory and execute the IN and OUT instructions defeat the purpose of having CPU modes?

What is better: yes / no radio, or simple checkbox?

Why restrict private health insurance?

Street obstacles in New Zealand

Finitely many repeated replacements

Recommendation letter by significant other if you worked with them professionally?

School performs periodic password audits. Is my password compromised?

Specifying a starting column with colortbl package and xcolor

When Schnorr signatures are part of Bitcoin will it be possible validate each block with only one signature validation?

Why is there an extra space when I type "ls" in the Desktop directory?

Can the alpha, lambda values of a glmnet object output determine whether ridge or Lasso?

What ability score modifier does a javelin's damage use?

I can't die. Who am I?

Getting the || sign while using Kurier

How can I find out information about a service?

What do you call someone who likes to pick fights?

Doubts in understanding some concepts of potential energy

Is a piano played in the same way as a harmonium?

Shifting between bemols and diesis in the key signature

Proving a statement about real numbers

Why does Solve lock up when trying to solve the quadratic equation with large integers?

What's the 'present simple' form of the word "нашла́" in 3rd person singular female?

Giving a career talk in my old university, how prominently should I tell students my salary?

What problems would a superhuman have who's skin is constantly hot?



menu or popumenu clickright in combobox choice?



2019 Community Moderator ElectionBinding 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










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 2 days ago







      Tiera Eyek

















      asked Mar 6 at 14:24









      Tiera EyekTiera Eyek

      93




      93






















          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
            2 days ago











          • @ 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
            2 days ago











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

            – Tiera Eyek
            yesterday










          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
            2 days ago











          • @ 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
            2 days ago











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

            – Tiera Eyek
            yesterday















          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
            2 days ago











          • @ 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
            2 days ago











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

            – Tiera Eyek
            yesterday













          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 yesterday

























          answered Mar 6 at 16:17









          Rolf of SaxonyRolf of Saxony

          9,17021737




          9,17021737












          • 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
            2 days ago











          • @ 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
            2 days ago











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

            – Tiera Eyek
            yesterday

















          • 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
            2 days ago











          • @ 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
            2 days ago











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

            – Tiera Eyek
            yesterday
















          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
          2 days ago





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

          – Rolf of Saxony
          2 days ago













          @ 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
          2 days ago





          @ 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
          2 days ago













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

          – Tiera Eyek
          yesterday





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

          – Tiera Eyek
          yesterday



















          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

          Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

          Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

          Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved