I need help on making a windows form application with a NumericUpDown and ListBox button on it.
When I enter 2 in NumericUpDown button, it should write 1,2 and 2,1 in list box.
Or when I enter 3 in NumericUpDown , it should create:
It is like a binary tree, creating all possible options.
Please help!!!
When I enter 2 in NumericUpDown button, it should write 1,2 and 2,1 in list box.
Or when I enter 3 in NumericUpDown , it should create:
Code:
1,2,3 1,3,2 2,1,3 2,3,1 3,1,2 3,2,1
Please help!!!
Comment