[gme-users] Naive GMEConsole::Console question

Jonathan Sprinkle sprinkle at ece.arizona.edu
Thu Mar 22 13:09:55 CDT 2012


Hi all,

My question certainly displays some naiveté, so I apologize in advance. :) I want to generate output in the console that a user can paste into another program without having to open a file. For example, the output should appear as

matrix = [ 1 1 1; …
2 2 2; …
3 3 3; …
];

However, if I generate this matrix as an std::string, it shows correctly when generated to a file, but the output in the console is

matrix = [ 1 1 1; … 2 2 2; … 3 3 3; … ];

Which will not work in the other program (MATLAB, of course). I also tried this:

CString str;
str.Format( "Test 1 \n Test 2" );
GMEConsole::Console::Out::WriteLine( str );

But this shows as

Test 1 Test 2

So, any advice? :) For now it is easy to work around, by not allowing copy out of the console, but if I'm just doing something really stupid (or is there is a checkbox I need to enter somewhere) I am much obliged.

Cheers,
Jonathan



More information about the gme-users mailing list