export to text file
-
Dear all, Now I have six data in includes: 3 data Xw, Yw, Zw in FlexGid at i row and j column and 3 data m_iA, m_iB, m_iC in edit box form Interger individually. So please help me export these data to text file .txt in which these data is arrange correctly following form: P1={X Xw,Y Yw,Z Zw,A m_iA,B m_iB,C m_iC} P2={X Xw,Y Yw,Z Zw,A m_iA,B m_iB,C m_iC}....Pn I just start with VC++, so please show me more detail. Thank you very much.
-
Dear all, Now I have six data in includes: 3 data Xw, Yw, Zw in FlexGid at i row and j column and 3 data m_iA, m_iB, m_iC in edit box form Interger individually. So please help me export these data to text file .txt in which these data is arrange correctly following form: P1={X Xw,Y Yw,Z Zw,A m_iA,B m_iB,C m_iC} P2={X Xw,Y Yw,Z Zw,A m_iA,B m_iB,C m_iC}....Pn I just start with VC++, so please show me more detail. Thank you very much.
You mention ‘FlexGrid” and if that is where your data is stored, then I would look at the documentation for that to find you answer. Most things with the title ‘Grid’ or ‘Spreadsheet’ in them have a means to export their contents as a ‘TAB’ delimited file. That is a file where the individual fields are separated by the ‘TAB’ character, with each line representing as single entry (or record) per line. Hopefully some who has use it will show up shortly. Good Luck!
INTP "Program testing can be used to show the presence of bugs, but never to show their absence."Edsger Dijkstra