I'm having a stored procedure that returns printed text. E.g
To import this report into Excel (and preserve leading zeros in numbers, etc):
Click here, then press CTRL-A, CTRL-C.
Open Excel, press CTRL-A, right-click mouse, select Format Cells, click Text.
Click on A1 cell, press SHIFT-INS to paste.
REPORT FOR 21-09-2013
Date Who Total 21-09-2013 ALBERT 10
So i want to be able to retrieve this text from my C# application. I've tried to retrieve it via ExecuteScalar() and ExecuteReader() but no luck. Is there any other alternative to solve this problem ?