I have been requested to write an application that will search through hundreds of directories of data, parse specific files, and output this data into a table. This part will be fairly simple, but the part I am having issues with is then the customers are requesting the ability to copy this table data and paste it into Microsoft Word. The only method I can come up with is to save the output in a CSV format to then load into Excel. Once Excel is displaying this information, the user could then copy the table from Excel into Word.

I would prefer to avoid the Excel middle-man method if at all possible. Is there anything inside Qt that will allow me to display a table that can be copied into Word? Or at worst, a way to output a file that Word can import directly without using Excel? I originally thought maybe some sort of RTF viewer, but playing around in MS Wordpad makes me think maybe RTF can't handle tables.

Thanks for any help you have for this.
Todd