public void ShowTable() { for (int i = 1; i <= tableCards[0]; i++) { if ((i % 11 == 1) && (i > 1)) { richTextBoxSuggestions.AppendText(Environment.NewLine); } richTextBoxSuggestions.SelectionFont = new Font(richTextBoxSuggestions.Font, FontStyle.Bold); richTextBoxSuggestions.AppendText(shoe.ConvertNrToSym(tableCards[i]) + " "); richTextBoxSuggestions.SelectionFont = new Font(richTextBoxSuggestions.Font, FontStyle.Regular); } }