combobox - c# : Arranging child controls at certain position in a flow layout pannel -


my first post , quite new in c# programming. googled , searched lot of forums not find answer specific question.

i'm implimenting gui reads values usb device. once button (read_usb_button) pressed, app read values usb device , displayes them in 4 different combo boxes shown below.

                     read_usb_button 

switch_combox switch_combo2 switch_combo3 switch_combo4

                      exit_button 

now after selecing values "switch_combo1", "switch_combo2" , ...."switch_combo5" , gui should this.

                     read_usb_button 

switch_combo1 switch_combo2 switch_combo3 switch_combo4
port_combo1 port_combo1 port_combo1 port_combo1
port_combo2 port_combo2 port_combo3 port_combo2
port_combo3 port_combo3 port_combo3 port_combo3

                      exit_button 

but i'm getting results shown below, (comboboxes keeps on adding below first row)

                        read_usb_button 

switch_combo1 switch_combo2 switch_combo3 switch_combo4

port_combo1
port_combo2
port_combo3
port_combo1
port_combo2
port_combo3
. . .. ...

                            exit_button 

i want add combo boxes paralleley user select of "switch_combon" combo boxes. keep on adding till gui filled.

i've tried flowbreak() method of flowlayout pannel unable proper solution.

i've tried differnet combinations of set bound method did not work.

any highly appreciated.

br,

rana


Comments

Popular posts from this blog

javascript - Karma not able to start PhantomJS on Windows - Error: spawn UNKNOWN -

Nuget pack csproj using nuspec -

c# - Display ASPX Popup control in RowDeleteing Event (ASPX Gridview) -