QtXlsxWriter icon indicating copy to clipboard operation
QtXlsxWriter copied to clipboard

QtXlsxWriter cannot write email link into excel cell

Open ghost opened this issue 8 years ago • 0 comments

codes as follows: ///////////////////////////////////////////////////////////////////////// QXlsx::Document doc;

// <a href="mailto:[email protected]">mail address QString mailLink("<a href="mailto:[email protected]">mail address"); bool success = doc.write(1, 1, mailLink);

doc.saveAs("demo.xlsx"); /////////////////////////////////////////////////////////////////////////

although the success is true, but when open demo.xlsx, the first cell in it has no contents!!! Is there someone know the reason???

ghost avatar Jun 16 '16 07:06 ghost