If you have two text boxes and when you input two numbers it outputs the permutations in a third text box of the two numbers.
Example: You put 5 in textbox1 and 6 in textbox2
textbox3 outputs:
5,6
6,5
I know this can be done with nested For loops, but I don't know exactly how.