Here is the code:

result = current->fio + "\t" + current->depart + "\t" + current->exp + + "\t" + current->pos + "\t" + current->start; 

But result is output without \ t.

  • "But the result is output without \ t." - how did you find out? - Igor
  • "\ t" is a control character. when you try to output, this character simply forms the output. It will not be in the line in the form \ t - AR Hovsepyan
  • @Igor Displayed in ListBox - Digital Resistance
  • @ARHovsepyan thanks, you helped solve the problem - Digital Resistance
  • this is the most important thing - AR Hovsepyan

0