<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Visual Studio 2005</title><link>http://forums.asp.net/138.aspx</link><description>General discussions of Visual Studio 2005.  &lt;a href="http://aspadvice.com/SignUp/list.aspx?l=162&amp;c=30" target="_blank"&gt;Email List&lt;/a&gt;</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: Lines of text in Output Window are truncated to 256 characters</title><link>http://forums.asp.net/thread/1990921.aspx</link><pubDate>Mon, 05 Nov 2007 21:14:26 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1990921</guid><dc:creator>pgrealy</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1990921.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=138&amp;PostID=1990921</wfw:commentRss><description>&lt;p&gt;The string gets chopped off. If I enable line wrapping, the line wraps at the right edge of the output window&amp;nbsp;but the second line&amp;nbsp;still gets chopped at the same character position.&lt;/p&gt;</description></item><item><title>Re: Lines of text in Output Window are truncated to 256 characters</title><link>http://forums.asp.net/thread/1990848.aspx</link><pubDate>Mon, 05 Nov 2007 20:28:06 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1990848</guid><dc:creator>Mikhail Arkhipov (MSFT)</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1990848.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=138&amp;PostID=1990848</wfw:commentRss><description>&lt;p&gt;I don&amp;#39;t think it is VS fault really. Output window simply captures what is output via Win32 OutputDebugString API (which is not limited by length). However, if application that costructs strings&amp;nbsp;before calling the mentioned API has a fixed buffer&amp;nbsp;for the string construction, the string will be truncated. Is string getting chopped off or simply wrapped?&lt;/p&gt;</description></item><item><title>Re: Lines of text in Output Window are truncated to 256 characters</title><link>http://forums.asp.net/thread/1990613.aspx</link><pubDate>Mon, 05 Nov 2007 18:07:35 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1990613</guid><dc:creator>pgrealy</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1990613.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=138&amp;PostID=1990613</wfw:commentRss><description>&lt;p&gt;Re-reading my original post, I was not very clear about waht I am doing. While in VS 2005, I am opening our SQL 2003 server in ServerExplorer and chooisng a stored procedure from one of our databses. I then right-click and execute. We have stored procedures that read through some tables and auto-generate some lines of code. It shuold generate some asp code and vb code to cut-and-paste into asp.net forms I am developing. This works well except for some very long lines. The procedure below is a simplified demonstration of the problem:&lt;br /&gt;&lt;br /&gt;= = = = =&lt;br /&gt;SET QUOTED_IDENTIFIER OFF &lt;br /&gt;GO&lt;br /&gt;SET ANSI_NULLS OFF &lt;br /&gt;GO&lt;br /&gt;ALTER&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PROC dbo.xsp_PGtest&lt;br /&gt;AS&lt;br /&gt;&lt;br /&gt;CREATE TABLE #ScriptFile&lt;br /&gt;&amp;nbsp;(LineText varchar(350))&lt;br /&gt;&lt;br /&gt;INSERT INTO #ScriptFile&lt;br /&gt;&amp;nbsp;(LineText)&lt;br /&gt;&amp;nbsp;SELECT CHAR(13) &lt;br /&gt;&amp;nbsp;&amp;nbsp;+&amp;nbsp; &amp;#39;Line 1:xx1xxxxxxxxx2xxxxxxxxx3xxxxxxxxx4xxxxxxxxx5&amp;#39;&lt;br /&gt;&amp;nbsp;&amp;nbsp;+ &amp;#39;xxxxxxxxx6xxxxxxxxx7xxxxxxxxx8xxxxxxxxx9xxxxxxxx00&amp;#39;&lt;br /&gt;&amp;nbsp;&amp;nbsp;+ &amp;#39;xxxxxxxxx1xxxxxxxxx2xxxxxxxxx3xxxxxxxxx4xxxxxxxxx5&amp;#39;&lt;br /&gt;&amp;nbsp;&amp;nbsp;+ &amp;#39;xxxxxxxxx6xxxxxxxxx7xxxxxxxxx8xxxxxxxxx9xxxxxxxx00&amp;#39;&lt;br /&gt;&amp;nbsp;&amp;nbsp;+ &amp;#39;xxxxxxxxx1xxxxxxxxx2xxxxxxxxx3xxxxxxxxx4xxxxxxxxx5&amp;#39;&lt;br /&gt;&amp;nbsp;&amp;nbsp;+ &amp;#39;xxxxxxxxx6xxxxxxxxx7xxxxxxxxx8xxxxxxxxx9xxxxxxxx00&amp;#39;&lt;br /&gt;&lt;br /&gt;INSERT INTO #ScriptFile&lt;br /&gt;&amp;nbsp;(LineText)&lt;br /&gt;&amp;nbsp;SELECT&amp;nbsp; CHAR(13)&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;+ &amp;#39;Line 2:xx1xxxxxxxxx2xxxxxxxxx3xxxxxxxxx4xxxxxxxxx5&amp;#39;&lt;br /&gt;&amp;nbsp;&amp;nbsp;+ &amp;#39;xxxxxxxxx6xxxxxxxxx7xxxxxxxxx8xxxxxxxxx9xxxxxxxx00&amp;#39;&lt;br /&gt;&amp;nbsp;&amp;nbsp;+ &amp;#39;xxxxxxxxx1xxxxxxxxx2xxxxxxxxx3xxxxxxxxx4xxxxxxxxx5&amp;#39;&lt;br /&gt;&amp;nbsp;&amp;nbsp;+ &amp;#39;xxxxxxxxx6xxxxxxxxx7xxxxxxxxx8xxxxxxxxx9xxxxxxxx00&amp;#39;&lt;br /&gt;&amp;nbsp;&amp;nbsp;+ &amp;#39;xxxxxxxxx1xxxxxxxxx2xxxxxxxxx3xxxxxxxxx4xxxxxxxxx5&amp;#39;&lt;br /&gt;&amp;nbsp;&amp;nbsp;+ &amp;#39;xxxxxxxxx6xxxxxxxxx7xxxxxxxxx8xxxxxxxxx9xxxxxxxx00&amp;#39;&lt;br /&gt;&lt;br /&gt;SELECT *&lt;br /&gt;FROM #ScriptFile&lt;br /&gt;&lt;br /&gt;GO&lt;br /&gt;SET QUOTED_IDENTIFIER OFF &lt;br /&gt;GO&lt;br /&gt;SET ANSI_NULLS ON &lt;br /&gt;GO&lt;br /&gt;= = = = =&lt;br /&gt;What this should do is store two lines of 300 characters each in a temporary table and then display the contents of the table to the output window. This runs ok in SQL Query Analyzer with output selected to TEXT and the Tools/Options/Results &amp;quot;Maximum characters per column&amp;quot; set to 350. However, I cannot find a similar option to increase the line size of the Output window in VS 2005.&lt;br /&gt;Thanks,&lt;br /&gt;Pat G.&lt;/p&gt;</description></item><item><title>Re: Lines of text in Output Window are truncated to 256 characters</title><link>http://forums.asp.net/thread/1988401.aspx</link><pubDate>Sat, 03 Nov 2007 16:55:51 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1988401</guid><dc:creator>Mikhail Arkhipov (MSFT)</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1988401.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=138&amp;PostID=1988401</wfw:commentRss><description>&lt;p&gt;Which API do you use to output strings in question?&lt;/p&gt;</description></item><item><title>Lines of text in Output Window are truncated to 256 characters</title><link>http://forums.asp.net/thread/1987795.aspx</link><pubDate>Fri, 02 Nov 2007 22:19:02 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1987795</guid><dc:creator>pgrealy</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1987795.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=138&amp;PostID=1987795</wfw:commentRss><description>&lt;p&gt;Hi,&lt;br /&gt;If I execute a stored procedure in VS 2005 that generates long lines of output they are truncated at 256 character maximum. Is there a way to increase this limit?&lt;br /&gt;Thanks,&lt;br /&gt;Pat G.&lt;/p&gt;</description></item></channel></rss>