I have 4 buttons on my smart device form and I am trying to put elements of a string array in to my buttons as button text.
string[] str1 = new string[8] { "aaa", "sss", "ddd", "dff", "fddd", "ffggg", "bbbb", "gggd" ,"shehs"};
there is up and down buttons below the for main button on form load i want to show first 4 array elements as button text ("aaa", "sss", "ddd", "dff" ) and when i click the down button it should show me the next 4 elements of the string array ("fddd", "ffggg", "bbbb", "gggd") and then the last array element("shehs") and then back to the first 4 array elements. I would really apreciate it if some one would lend me a hand.