<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" media="screen" href="/App_Themes/default/rss.xslt"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:evnet="http://www.mscommunities.com/rssmodule/"><channel><title>Entries for qwert231</title><atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/niners/qwert231/rss/default.aspx" /><image><url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url><title>Entries for qwert231</title><link>http://channel9.msdn.com/Niners/qwert231/</link></image><description>Entries, comments and threads posted by qwert231</description><link>http://channel9.msdn.com/Niners/qwert231/</link><language>en-us</language><pubDate>Mon, 23 Nov 2009 22:24:24 GMT</pubDate><lastBuildDate>Mon, 23 Nov 2009 22:24:24 GMT</lastBuildDate><generator>EvNet (EvNet, Version=1.0.3608.3122, Culture=neutral, PublicKeyToken=null)</generator><item><title>VS 2005 SQL report OutOfMemory in Preview [VS 2005 SQL report OutOfMemory in Preview]</title><description>&lt;p&gt;I'm trying a report in VS 2005 and I get:&lt;/p&gt;
&lt;p&gt;Exception of type 'System.OutOfMemoryException' was thrown.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I know the query is big, about 700-800k records. But shouldn't it be able to handle that?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;What can I check/do to troubleshoot this?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/508383-VS-2005-SQL-report-OutOfMemory-in-Preview/'&gt;VS 2005 SQL report OutOfMemory in Preview&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/508383/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/508383-VS-2005-SQL-report-OutOfMemory-in-Preview/</comments><link>http://channel9.msdn.com/forums/TechOff/508383-VS-2005-SQL-report-OutOfMemory-in-Preview/</link><pubDate>Mon, 23 Nov 2009 22:24:24 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/508383-VS-2005-SQL-report-OutOfMemory-in-Preview/</guid><evnet:views>51</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/508383/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'm trying a report in VS 2005 and I get:
Exception of type 'System.OutOfMemoryException' was thrown.
&amp;nbsp;
I know the query is big, about 700-800k records. But shouldn't it be able to handle that?
&amp;nbsp;
What can I check/do to troubleshoot this?
&amp;nbsp;in reply to VS 2005 SQL report OutOfMemory in Preview</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/508383-VS-2005-SQL-report-OutOfMemory-in-Preview/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/508383/Trackback.aspx</trackback:ping></item><item><title>Oracle query question [Oracle query question]</title><description>&lt;p&gt;I'm adding an Oracle SQL query to an app that already handles one Oracle query correctly.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have this query string:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
&lt;p&gt;SELECT RSIPLATE.DEALER.NAME AS BUSINESSNAME, RSIPLATE.DEALER.AREA_CODE || '-' || SUBSTR(RSIPLATE.DEALER.PHONE_NUMBER, 1, 3) || '-' || SUBSTR(RSIPLATE.DEALER.PHONE_NUMBER, 4, 4) AS BUSINESSPHONE, SUBSTR(RSIPLATE.ADDRESS.ADDRESS_LINE1, 1, 40) AS ADDRESSLINE1, '' AS ADDRESSLINE2, RSIPLATE.ADDRESS.CITY_NAME AS CITY, RSIPLATE.ADDRESS.STATE_CODE AS STATE, SUBSTR(RSIPLATE.ADDRESS.ZIP_CODE, 1, 5) AS POSTALCODE FROM RSIPLATE.DEALER INNER JOIN RSIPLATE.ADDRESS ON RSIPLATE.DEALER.ADDRESS_SET_ID = RSIPLATE.ADDRESS.ADDRESS_SET_ID WHERE RSIPLATE.DEALER.ACTIVE_IND = 'Y' AND RSIPLATE.DEALER.ACCOUNT_NUMBER NOT LIKE '%B%' AND RSIPLATE.ADDRESS.ADDRESS_TYPE = 2 AND SUBSTR(RSIPLATE.DEALER.ACCOUNT_NUMBER, 1, 2) = &lt;u&gt;:CountyPK&lt;/u&gt; ORDER BY City, BusinessName&lt;/p&gt;
which works.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In my code I have this line:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
&lt;p&gt;ListingDataAdapter.SelectCommand.Parameters.Add(&lt;/p&gt;
&lt;/p&gt;
&lt;p&gt;New OracleParameter("CountyPK", CountyPK.ToString("00")))&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have a second query string:&lt;/p&gt;
&lt;p&gt;
&lt;p&gt;SELECT rsiplate.OWNER.work_area_code||'-'||SUBSTR(rsiplate.OWNER.work_phone_number, 1, 3)||'-'||SUBSTR(rsiplate.OWNER.work_phone_number, 4, 4) AS BUSINESSPHONE, trim(rsiplate.OWNER.first_name||' '||rsiplate.OWNER.middle_name||' '||rsiplate.OWNER.last_name) AS BUSINESSNAME, rsiplate.ADDRESS.address_line1 AS ADDRESSLINE1, rsiplate.ADDRESS.address_line2 AS ADDRESSLINE2, rsiplate.ADDRESS.city_name AS CITY, rsiplate.ADDRESS.state_code AS STATE, SUBSTR(rsiplate.ADDRESS.zip_code, 1, 5) AS POSTALCODE FROM rsiplate.WATERCRAFT_MASTER, rsiplate.WATERCRAFT_CURRENT, rsiplate.WATERCRAFT_REGIST_CURRENT, rsiplate.OWNER, rsiplate.WATERCRAFT_OWNER_CURRENT, rsiplate.ADDRESS WHERE rsiplate.WATERCRAFT_MASTER.WATERCRAFT_ID = rsiplate.WATERCRAFT_CURRENT.WATERCRAFT_ID AND rsiplate.WATERCRAFT_MASTER.LF_WATERCRAFT_REGIST_ORDER = rsiplate.WATERCRAFT_REGIST_CURRENT.WATERCRAFT_REGIST_ORDER AND rsiplate.WATERCRAFT_MASTER.LF_WATERCRAFT_ORDER = rsiplate.WATERCRAFT_CURRENT.WATERCRAFT_ORDER AND rsiplate.WATERCRAFT_MASTER.watercraft_id = rsiplate.WATERCRAFT_REGIST_CURRENT.watercraft_id and rsiplate.WATERCRAFT_MASTER.watercraft_id = rsiplate.WATERCRAFT_OWNER_CURRENT.watercraft_id and rsiplate.WATERCRAFT_OWNER_CURRENT.owner_id = rsiplate.OWNER.owner_id and rsiplate.WATERCRAFT_MASTER.watercraft_owner_group = rsiplate.WATERCRAFT_OWNER_CURRENT.watercraft_owner_group and rsiplate.ADDRESS.address_set_id = rsiplate.OWNER.address_set_id and rsiplate.WATERCRAFT_MASTER.data_status_code = 1 and rsiplate.WATERCRAFT_OWNER_CURRENT.watercraft_owner_order = 1 and rsiplate.WATERCRAFT_REGIST_CURRENT.REGIST_EXPIRATION_DATE &amp;gt;= SYSDATE AND rsiplate.WATERCRAFT_CURRENT.WATERCRAFT_USE_CODE = 3 AND rsiplate.ADDRESS.COUNTY_NUMBER = &lt;u&gt;:CountyPK &lt;/u&gt;GROUP BY rsiplate.OWNER.work_area_code, rsiplate.OWNER.work_phone_number, rsiplate.OWNER.first_name, rsiplate.OWNER.middle_name, rsiplate.OWNER.last_name, rsiplate.ADDRESS.address_line1, rsiplate.ADDRESS.address_line2, rsiplate.ADDRESS.city_name, rsiplate.ADDRESS.state_code, rsiplate.ADDRESS.zip_code;&lt;/p&gt;
&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;which uses the same code line. Yet I get this message:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;ORA-00911: invalid character&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;What am I doing wrong?&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/506598-Oracle-query-question/'&gt;Oracle query question&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/506598/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/506598-Oracle-query-question/</comments><link>http://channel9.msdn.com/forums/TechOff/506598-Oracle-query-question/</link><pubDate>Mon, 16 Nov 2009 17:08:25 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/506598-Oracle-query-question/</guid><evnet:views>105</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/506598/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'm adding an Oracle SQL query to an app that already handles one Oracle query correctly.
&amp;nbsp;
I have this query string:
&amp;nbsp;

SELECT RSIPLATE.DEALER.NAME AS BUSINESSNAME, RSIPLATE.DEALER.AREA_CODE || '-' || SUBSTR(RSIPLATE.DEALER.PHONE_NUMBER, 1, 3) || '-' ||&amp;#8230;</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/506598-Oracle-query-question/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/506598/Trackback.aspx</trackback:ping></item><item><title>Can I deploy reports from VS2008 onto SSRS 2005? [Can I deploy reports from VS2008 onto SSRS 2005?]</title><description>&lt;p&gt;We have an SSRS 2005 server currently running. We just got VS 2008. Is it possible to have VS 2008 target reports so they will work on 2005 servers?&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/503354-Can-I-deploy-reports-from-VS2008-onto-SSRS-2005/'&gt;Can I deploy reports from VS2008 onto SSRS 2005?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/503354/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/503354-Can-I-deploy-reports-from-VS2008-onto-SSRS-2005/</comments><link>http://channel9.msdn.com/forums/TechOff/503354-Can-I-deploy-reports-from-VS2008-onto-SSRS-2005/</link><pubDate>Fri, 30 Oct 2009 17:25:54 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/503354-Can-I-deploy-reports-from-VS2008-onto-SSRS-2005/</guid><evnet:views>181</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/503354/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>We have an SSRS 2005 server currently running. We just got VS 2008. Is it possible to have VS 2008 target reports so they will work on 2005 servers?in reply to Can I deploy reports from VS2008 onto SSRS 2005?</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>4</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/503354-Can-I-deploy-reports-from-VS2008-onto-SSRS-2005/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/503354/Trackback.aspx</trackback:ping></item><item><title>SQL Report Filter only allows ANDs [SQL Report Filter only allows ANDs]</title><description>&lt;p&gt;I want to do a simple filter on a report,&lt;/p&gt;
&lt;p&gt;(Field1 &amp;lt;&amp;gt; Field2) or (Field3 &amp;lt;&amp;gt; Field4)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;So, if the first set or the second set are not equal, show the results. (We may have the first set be equal, but not the second set, and we want to see that.)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;So, in my table's Filters dialog, I do &lt;/p&gt;
&lt;p&gt;Expression: Field1&lt;/p&gt;
&lt;p&gt;Operator: !=&lt;/p&gt;
&lt;p&gt;Value: Field2&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Expression: Field3&lt;/p&gt;
&lt;p&gt;Operator: !=&lt;/p&gt;
&lt;p&gt;Value: Field4&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;the And/Or column for the first filter, shows 'and', and I cannot change it.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;How do I get the filter I want?&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/497011-SQL-Report-Filter-only-allows-ANDs/'&gt;SQL Report Filter only allows ANDs&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/497011/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/497011-SQL-Report-Filter-only-allows-ANDs/</comments><link>http://channel9.msdn.com/forums/TechOff/497011-SQL-Report-Filter-only-allows-ANDs/</link><pubDate>Thu, 08 Oct 2009 18:17:30 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/497011-SQL-Report-Filter-only-allows-ANDs/</guid><evnet:views>529</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/497011/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I want to do a simple filter on a report,
(Field1 &amp;lt;&amp;gt; Field2) or (Field3 &amp;lt;&amp;gt; Field4)
&amp;nbsp;
So, if the first set or the second set are not equal, show the results. (We may have the first set be equal, but not the second set, and we want to see that.)
&amp;nbsp;
So, in my table's Filters&amp;#8230;</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/497011-SQL-Report-Filter-only-allows-ANDs/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/497011/Trackback.aspx</trackback:ping></item><item><title>OUTER APPLY syntax error [OUTER APPLY syntax error]</title><description>&lt;p&gt;I was given a report to use with our database, and I'm getting errors. The report query uses an OUTER APPLY, and this is the first I've worked with them.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Here's the query:&lt;/p&gt;
&lt;p&gt;DECLARE @begin_process_date datetime, @end_process_date datetime&lt;/p&gt;
&lt;p&gt;SELECT @begin_process_date = '9/1/2009', @end_process_date = '9/30/2009'&lt;/p&gt;
&lt;p&gt;Select&lt;br /&gt;&amp;nbsp;Q.*,&lt;br /&gt;&amp;nbsp;lpc.counter&lt;br /&gt;From&lt;br /&gt;(&lt;br /&gt;Select&lt;br /&gt;&amp;nbsp; t.location_id,&lt;br /&gt;&amp;nbsp;(count(td.tran_detail_id) * 1.1) as adjusted_sales,&lt;br /&gt;&amp;nbsp;case&lt;br /&gt;&amp;nbsp;&amp;nbsp;when (count(td.tran_detail_id) * 1.1) &amp;lt;= 220 then 1&lt;br /&gt;&amp;nbsp;&amp;nbsp;else CEILING((count(td.tran_detail_id) * 1.1)/200) end as label_count,&lt;br /&gt;&amp;nbsp;so.old_agent_id,&lt;br /&gt;&amp;nbsp;UPPER(so.sales_outlet_name) as sales_outlet_name,&lt;br /&gt;&amp;nbsp;UPPER(a.raw_address_1) as raw_address_1,&lt;br /&gt;&amp;nbsp;a.raw_address_2,&lt;br /&gt;&amp;nbsp;a.raw_city,&lt;br /&gt;&amp;nbsp;a.raw_state,&lt;br /&gt;&amp;nbsp;a.raw_zip,&lt;br /&gt;&amp;nbsp;'USA' as country,&lt;br /&gt;&amp;nbsp;'GROUND' as pfbc_service,&lt;br /&gt;&amp;nbsp;'PREPAID' as pfbc_option,&lt;br /&gt;&amp;nbsp;'PACKAGE' as pfbc_package,&lt;br /&gt;&amp;nbsp;'31' as pfbc_weight&lt;br /&gt;From&lt;br /&gt;&amp;nbsp;ALSReplicator.TB_ORA_tran t&lt;br /&gt;&amp;nbsp;INNER JOIN ALSReplicator.TB_ORA_tran_detail td&lt;br /&gt;&amp;nbsp;&amp;nbsp;ON t.tran_ref_id = td.tran_ref_id&lt;br /&gt;&amp;nbsp;INNER JOIN ALSReplicator.TB_ORA_vw_repl_location l&lt;br /&gt;&amp;nbsp;&amp;nbsp;ON t.location_id = l.location_id,&lt;br /&gt;&amp;nbsp;ALSReplicator.address a,&lt;br /&gt;&amp;nbsp;ALSReplicator.address_usage_index aui,&lt;br /&gt;&amp;nbsp;ALSReplicator.sales_outlet so,&lt;br /&gt;&amp;nbsp;ALSReplicator.terminal tt&lt;br /&gt;Where &lt;br /&gt;&amp;nbsp;t.tran_status = 'C' and &lt;br /&gt;&amp;nbsp;t.test_tran = 'N' and &lt;br /&gt;&amp;nbsp;td.tran_status in ('C','I') and &lt;br /&gt;&amp;nbsp;t.process_date &amp;gt;= @begin_process_date and&lt;br /&gt;&amp;nbsp;t.process_date &amp;lt; dateadd(dd, 1, @end_process_date)and&lt;br /&gt;&amp;nbsp;(td.priv_code between 101 and 134) and&lt;br /&gt;&amp;nbsp;Right( Convert( varchar, Convert( Decimal(10, 0 ), t.location_id ) ), 5 ) = tt.terminal_key and&lt;br /&gt;&amp;nbsp;a.address_key = aui.address_key and&lt;br /&gt;&amp;nbsp;aui.entity_type = 'SLSO' and&lt;br /&gt;&amp;nbsp;aui.entity_type = 'SLSO' and &lt;br /&gt;&amp;nbsp;aui.address_type = 'STRT' and &lt;br /&gt;&amp;nbsp;so.sales_outlet_key = aui.entity_key and &lt;br /&gt;&amp;nbsp;aui.address_key = a.address_key and &lt;br /&gt;&amp;nbsp;so.sales_outlet_key = tt.sales_outlet_key &lt;br /&gt;--&amp;nbsp;and&lt;br /&gt;--&amp;nbsp;t.location_id not in (@test_lid)&lt;br /&gt;Group By t.location_id, so.old_agent_id, so.sales_outlet_name, a.raw_address_1,&lt;br /&gt;&amp;nbsp;&amp;nbsp;a.raw_address_2, a.raw_city, a.raw_state, a.raw_zip) AS Q&lt;br /&gt;OUTER APPLY udf_GetLabelPrintCounter(Q.location_id, Q.label_count) AS lpc&amp;nbsp;&amp;nbsp; ' Line 57 &amp;lt;-----&lt;br /&gt;Where Q.location_id = lpc.LocID&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I get the message:&lt;/p&gt;
&lt;p&gt;
&lt;p&gt;Msg 102, Level 15, State 1, Line 57&lt;/p&gt;
&lt;p&gt;Incorrect syntax near '.'.&lt;/p&gt;
&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/496691-OUTER-APPLY-syntax-error/'&gt;OUTER APPLY syntax error&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/496691/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/496691-OUTER-APPLY-syntax-error/</comments><link>http://channel9.msdn.com/forums/TechOff/496691-OUTER-APPLY-syntax-error/</link><pubDate>Wed, 07 Oct 2009 14:21:24 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/496691-OUTER-APPLY-syntax-error/</guid><evnet:views>431</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/496691/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I was given a report to use with our database, and I'm getting errors. The report query uses an OUTER APPLY, and this is the first I've worked with them.
&amp;nbsp;
Here's the query:
DECLARE @begin_process_date datetime, @end_process_date datetime
SELECT @begin_process_date = '9/1/2009',&amp;#8230;</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/496691-OUTER-APPLY-syntax-error/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/496691/Trackback.aspx</trackback:ping></item><item><title>textbox.focus() doesn't work in Ajax code behind [textbox.focus() doesn't work in Ajax code behind]</title><description>&lt;p&gt;I have a section of textboxes and drop downs in an UpdatePanel.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;textbox2 has a 'TextChanged' event that correctly updates dropdown3. I would like the cursor to then move to textbox4. So, in the same event handler for the TextChanged I put textbox4.Focus(). When the update happens, the cursor is not in any box. However, if I hit the tab key, the cursor appears in textbox1 the first input control in the update panel.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;How can I get the cursor to correctly appear in textbox4?&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/494825-textboxfocus-doesnt-work-in-Ajax-code-behind/'&gt;textbox.focus() doesn't work in Ajax code behind&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/494825/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/494825-textboxfocus-doesnt-work-in-Ajax-code-behind/</comments><link>http://channel9.msdn.com/forums/TechOff/494825-textboxfocus-doesnt-work-in-Ajax-code-behind/</link><pubDate>Mon, 28 Sep 2009 17:46:19 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/494825-textboxfocus-doesnt-work-in-Ajax-code-behind/</guid><evnet:views>535</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/494825/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I have a section of textboxes and drop downs in an UpdatePanel.
&amp;nbsp;
textbox2 has a 'TextChanged' event that correctly updates dropdown3. I would like the cursor to then move to textbox4. So, in the same event handler for the TextChanged I put textbox4.Focus(). When the update happens, the cursor&amp;#8230;</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/494825-textboxfocus-doesnt-work-in-Ajax-code-behind/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/494825/Trackback.aspx</trackback:ping></item><item><title>How to multi-value param like SQL Reports in a query? [How to multi-value param like SQL Reports in a query?]</title><description>&lt;p&gt;I trying to test some queries and I'd like to use a multi-value parameter like you can in SQL reports. You can have parameters that offer a selection, and some that use data from a sub-query to fill the parameter. How would I do that in a stored procedure?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Example: &lt;/p&gt;
&lt;p&gt;SELECT Field1, Field2 FROM Table 1&lt;/p&gt;
&lt;p&gt;WHERE Field1 IN (@param1)&lt;/p&gt;
&lt;p&gt;AND Field2 IN (@param2)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Where @param1 is a selection of values and @param2 is a collection of values from the result of a sub query.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For @param1, I could manually put in {'value1', 'value2', 'value3'} or something like that. But I'd like to pass it into the stored procedure.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Is there a site online w/ a good example of this?&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/493609-How-to-multi-value-param-like-SQL-Reports-in-a-query/'&gt;How to multi-value param like SQL Reports in a query?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/493609/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/493609-How-to-multi-value-param-like-SQL-Reports-in-a-query/</comments><link>http://channel9.msdn.com/forums/TechOff/493609-How-to-multi-value-param-like-SQL-Reports-in-a-query/</link><pubDate>Tue, 22 Sep 2009 13:52:47 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/493609-How-to-multi-value-param-like-SQL-Reports-in-a-query/</guid><evnet:views>659</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/493609/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I trying to test some queries and I'd like to use a multi-value parameter like you can in SQL reports. You can have parameters that offer a selection, and some that use data from a sub-query to fill the parameter. How would I do that in a stored procedure?
&amp;nbsp;
Example: 
SELECT Field1, Field2 FROM&amp;#8230;</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>7</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/493609-How-to-multi-value-param-like-SQL-Reports-in-a-query/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/493609/Trackback.aspx</trackback:ping></item><item><title>Sort a string column in dataview numerically [Sort a string column in dataview numerically]</title><description>&lt;p&gt;Working on an app where the LogDate column in the dataset is string. We load it into a DataView, filter, and pass it to a SQL report. If I sort by LogDate I get an ordering of 10,11,12,6,7,8,9...&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Here's our DataView declaration:&lt;/p&gt;
&lt;p&gt;Dim dailyTimeLogDV As New DataView(Me._timeActivityReportsDataSet.DailyLogShiftTimes, _dateExpr, "LogDate", DataViewRowState.CurrentRows)&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/492430-Sort-a-string-column-in-dataview-numerically/'&gt;Sort a string column in dataview numerically&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/492430/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/492430-Sort-a-string-column-in-dataview-numerically/</comments><link>http://channel9.msdn.com/forums/TechOff/492430-Sort-a-string-column-in-dataview-numerically/</link><pubDate>Thu, 17 Sep 2009 18:07:46 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/492430-Sort-a-string-column-in-dataview-numerically/</guid><evnet:views>421</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/492430/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Working on an app where the LogDate column in the dataset is string. We load it into a DataView, filter, and pass it to a SQL report. If I sort by LogDate I get an ordering of 10,11,12,6,7,8,9...
&amp;nbsp;
Here's our DataView declaration:
Dim dailyTimeLogDV As New&amp;#8230;</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/492430-Sort-a-string-column-in-dataview-numerically/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/492430/Trackback.aspx</trackback:ping></item><item><title>Can I use a System.Array for a SQL Report? [Can I use a System.Array for a SQL Report?]</title><description>&lt;p&gt;I'm modifying an ASP .Net page that has a grid object of records. The user can select (with check boxes) records from the grid.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The grid provides a System.Array object containing the IDs of the records. Is there a way for me to pass that into a SQL Report so the report can pull only those records?&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/488004-Can-I-use-a-SystemArray-for-a-SQL-Report/'&gt;Can I use a System.Array for a SQL Report?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/488004/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/488004-Can-I-use-a-SystemArray-for-a-SQL-Report/</comments><link>http://channel9.msdn.com/forums/TechOff/488004-Can-I-use-a-SystemArray-for-a-SQL-Report/</link><pubDate>Fri, 28 Aug 2009 15:47:30 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/488004-Can-I-use-a-SystemArray-for-a-SQL-Report/</guid><evnet:views>351</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/488004/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'm modifying an ASP .Net page that has a grid object of records. The user can select (with check boxes) records from the grid.
&amp;nbsp;
The grid provides a System.Array object containing the IDs of the records. Is there a way for me to pass that into a SQL Report so the report can pull only those&amp;#8230;</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/488004-Can-I-use-a-SystemArray-for-a-SQL-Report/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/488004/Trackback.aspx</trackback:ping></item><item><title>Converting 2 columns of text to a datetime in SQL 2005 [Converting 2 columns of text to a datetime in SQL 2005]</title><description>&lt;p&gt;First, I'm using data as it's given to me. I can't change the input or data structure, only my query out.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have&amp;nbsp;3 fields, FeatureDate, time_start, and time_start_am_pm. FeatureDate is a datetime column, but has only dates, no times. The time is time_start, a varchar column, with the time formated as #### (ex. 7:00 PM would be 0700) and the time_start_am_pm column having either AM or PM.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I'm trying to join them all together into one datetime field.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;So far, I've tried this, but it doesn't seem to work.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;CONVERT(datetime, CAST(CONVERT(varchar(4), DATEPART(mm, FeatureDate)) + '-' &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;+ CONVERT(varchar(2), DATEPART(dd, FeatureDate)) + '-' &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;+ CONVERT(varchar(4), DATEPART(yyyy, FeatureDate)) + ' ' &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;+ CONVERT(char(2), LEFT(time_start,2)) + ':' &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;+ CONVERT(char(2), RIGHT(time_start,2)) + ' '&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;+ time_start_am_pm&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;AS varchar(20)) ) AS DateTimeStart&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Any suggestions?&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/486174-Converting-2-columns-of-text-to-a-datetime-in-SQL-2005/'&gt;Converting 2 columns of text to a datetime in SQL 2005&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/486174/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/486174-Converting-2-columns-of-text-to-a-datetime-in-SQL-2005/</comments><link>http://channel9.msdn.com/forums/TechOff/486174-Converting-2-columns-of-text-to-a-datetime-in-SQL-2005/</link><pubDate>Fri, 21 Aug 2009 16:23:20 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/486174-Converting-2-columns-of-text-to-a-datetime-in-SQL-2005/</guid><evnet:views>637</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/486174/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>First, I'm using data as it's given to me. I can't change the input or data structure, only my query out.
&amp;nbsp;
I have&amp;nbsp;3 fields, FeatureDate, time_start, and time_start_am_pm. FeatureDate is a datetime column, but has only dates, no times. The time is time_start, a varchar column, with the&amp;#8230;</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>6</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/486174-Converting-2-columns-of-text-to-a-datetime-in-SQL-2005/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/486174/Trackback.aspx</trackback:ping></item><item><title>How can I stop a SQLDataSource when page.isvalid is false? [How can I stop a SQLDataSource when page.isvalid is false?]</title><description>&lt;p&gt;I have a DataList bound to a SQLDataSource that uses a textbox for a select command parameter.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have 2 validatorsr on the text box (a required, and a custom). I'm testing the form with failing values, and the Page.IsValid is getting set to false correctly. However, the SQLDataSource is still trying to fire, and I get an unhandled exception because the textbox value is bad.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;How can I resolve this?&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/481918-How-can-I-stop-a-SQLDataSource-when-pageisvalid-is-false/'&gt;How can I stop a SQLDataSource when page.isvalid is false?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/481918/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/481918-How-can-I-stop-a-SQLDataSource-when-pageisvalid-is-false/</comments><link>http://channel9.msdn.com/forums/TechOff/481918-How-can-I-stop-a-SQLDataSource-when-pageisvalid-is-false/</link><pubDate>Fri, 31 Jul 2009 15:39:35 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/481918-How-can-I-stop-a-SQLDataSource-when-pageisvalid-is-false/</guid><evnet:views>421</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/481918/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I have a DataList bound to a SQLDataSource that uses a textbox for a select command parameter.
&amp;nbsp;
I have 2 validatorsr on the text box (a required, and a custom). I'm testing the form with failing values, and the Page.IsValid is getting set to false correctly. However, the SQLDataSource is still&amp;#8230;</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>3</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/481918-How-can-I-stop-a-SQLDataSource-when-pageisvalid-is-false/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/481918/Trackback.aspx</trackback:ping></item><item><title>Reporting Services stopped working after account password change [Reporting Services stopped working after account password change]</title><description>&lt;p&gt;This should be simple, but it's not. I've had our network admin and I working on this for now the second day.&lt;/p&gt;
&lt;p&gt;SQL services was working. Over the weekend, the admin, following network security&amp;nbsp;procedures, changed the password of the Domain account used by SQL Reporting Service. He then went into the SQL Report Service and changed the password settings, and restarted the server. SQL Reporting Service is running and no errors show up in the Event Log.&lt;/p&gt;
&lt;p&gt;I came in, and can navigate to the Report Manager site, and view lists of reports, but when I click on a report, I get this error message:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Logon failed. (rsLogonFailed) 
&lt;ul&gt;
&lt;li&gt;For more information about this error navigate to the report server on the local server machine, or enable remote errors &lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I do not get the standard report control so I don't see the parameter prompts or any other parts of the control.&lt;/p&gt;
&lt;p&gt;We have gone through Reporting Services Configuration Manager and updated the password wherever the Domain account is used. And then restarted Reporting Services, but I continue to receive the above message. The Domain Account being used hasn't changed, only the password has changed.&lt;/p&gt;
&lt;p&gt;What are we missing?&lt;/p&gt;
&lt;p&gt;Where can I 'enable remote errors'?&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/478676-Reporting-Services-stopped-working-after-account-password-change/'&gt;Reporting Services stopped working after account password change&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/478676/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/478676-Reporting-Services-stopped-working-after-account-password-change/</comments><link>http://channel9.msdn.com/forums/TechOff/478676-Reporting-Services-stopped-working-after-account-password-change/</link><pubDate>Tue, 14 Jul 2009 12:55:07 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/478676-Reporting-Services-stopped-working-after-account-password-change/</guid><evnet:views>830</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/478676/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>This should be simple, but it's not. I've had our network admin and I working on this for now the second day.
SQL services was working. Over the weekend, the admin, following network security&amp;nbsp;procedures, changed the password of the Domain account used by SQL Reporting Service. He then went into&amp;#8230;</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/478676-Reporting-Services-stopped-working-after-account-password-change/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/478676/Trackback.aspx</trackback:ping></item><item><title>DateTimePicker doesn't dispose properly. [DateTimePicker doesn't dispose properly.]</title><description>&lt;p&gt;VB.Net 2.0&lt;/p&gt;
&lt;p&gt;In our MDIChild form we have a CheckChanged method on a dateTime Picker:&lt;/p&gt;
&lt;p&gt;Private Sub dateTimePickerLogDate_ValueChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles dateTimePickerLogDate.ValueChanged&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CheckTimeExists()&lt;br /&gt;End Sub
&lt;p&gt;CheckTimeExists() looks at the data to see if we've entered data for that data. Then at the end, it does this:&lt;/p&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If timelogExists Then 'Enter edit mode if the time log exists for the selected date.&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If MsgBox("Time &amp;amp; Activity details exist for the selected date. Select 'Yes' to update the information or 'No' to close the form.", MsgBoxStyle.YesNo, "Time &amp;amp; Activity report") = MsgBoxResult.No Then&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CloseForm()&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exit Sub&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Else&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me._dailyTimeLogId = CreateNewDailyTimeLogRow()&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LoadData()&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Sub&lt;/p&gt;
&lt;p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
But the DateTimePicker doesn't disappear.&lt;/p&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;p&gt;(BTW, I hate the formatting of the Channel&amp;nbsp;9&amp;nbsp;post&amp;nbsp;control.)&lt;/p&gt;
&lt;/p&gt;
&lt;/p&gt;
&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/478011-DateTimePicker-doesnt-dispose-properly/'&gt;DateTimePicker doesn't dispose properly.&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/478011/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/478011-DateTimePicker-doesnt-dispose-properly/</comments><link>http://channel9.msdn.com/forums/TechOff/478011-DateTimePicker-doesnt-dispose-properly/</link><pubDate>Fri, 10 Jul 2009 19:16:24 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/478011-DateTimePicker-doesnt-dispose-properly/</guid><evnet:views>368</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/478011/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>VB.Net 2.0
In our MDIChild form we have a CheckChanged method on a dateTime Picker:
Private Sub dateTimePickerLogDate_ValueChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles dateTimePickerLogDate.ValueChanged&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CheckTimeExists()End Sub
CheckTimeExists()&amp;#8230;</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/478011-DateTimePicker-doesnt-dispose-properly/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/478011/Trackback.aspx</trackback:ping></item><item><title>Dataset double field doesn't allow Nulls? [Dataset double field doesn't allow Nulls?]</title><description>&lt;p&gt;We have a dataset that has&amp;nbsp;a table w/&amp;nbsp;some double columns.&amp;nbsp;Here's some of the code:&lt;/p&gt;
&lt;p&gt;When the column is null it errors.&amp;nbsp; In the designer, I cannot set NullValue to anything other than 'Throw exception'. Why is that?&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/477521-Dataset-double-field-doesnt-allow-Nulls/'&gt;Dataset double field doesn't allow Nulls?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/477521/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/477521-Dataset-double-field-doesnt-allow-Nulls/</comments><link>http://channel9.msdn.com/forums/TechOff/477521-Dataset-double-field-doesnt-allow-Nulls/</link><pubDate>Wed, 08 Jul 2009 20:09:32 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/477521-Dataset-double-field-doesnt-allow-Nulls/</guid><evnet:views>367</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/477521/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>We have a dataset that has&amp;nbsp;a table w/&amp;nbsp;some double columns.&amp;nbsp;Here's some of the code:
When the column is null it errors.&amp;nbsp; In the designer, I cannot set NullValue to anything other than 'Throw exception'. Why is that?in reply to Dataset double field doesn't allow Nulls?</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>3</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/477521-Dataset-double-field-doesnt-allow-Nulls/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/477521/Trackback.aspx</trackback:ping></item><item><title>Use a child field in a strongly typed dataset in a datagridview column [Use a child field in a strongly typed dataset in a datagridview column]</title><description>&lt;p&gt;VB .Net 2.0 (Using VS 2008)&lt;/p&gt;
&lt;p&gt;I have a DataGridView, 'IncidentAddendumDataGridView' that is bound to 'IncidentAddendumBindingSource'.&lt;/p&gt;
&lt;p&gt;My binding source points to these elements:&lt;/p&gt;
&lt;p&gt;DataSource: IncidentDataSet&lt;/p&gt;
&lt;p&gt;DataMember: IncidentAddendum (A table in 'IncidentDataSet')&lt;/p&gt;
&lt;p&gt;There is a relationship in the dataset called AddendumType_IncidentAddendum that connects IncidentAddendum&amp;nbsp;to AddendumType.&lt;/p&gt;
&lt;p&gt;I want to use the 'Name' field of AddendumType as a column in 'IncidentAddendumDataGridView'. Do I need to point the binding source to the relationship?&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/476518-Use-a-child-field-in-a-strongly-typed-dataset-in-a-datagridview-column/'&gt;Use a child field in a strongly typed dataset in a datagridview column&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/476518/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/476518-Use-a-child-field-in-a-strongly-typed-dataset-in-a-datagridview-column/</comments><link>http://channel9.msdn.com/forums/TechOff/476518-Use-a-child-field-in-a-strongly-typed-dataset-in-a-datagridview-column/</link><pubDate>Wed, 01 Jul 2009 13:43:50 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/476518-Use-a-child-field-in-a-strongly-typed-dataset-in-a-datagridview-column/</guid><evnet:views>629</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/476518/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>VB .Net 2.0 (Using VS 2008)
I have a DataGridView, 'IncidentAddendumDataGridView' that is bound to 'IncidentAddendumBindingSource'.
My binding source points to these elements:
DataSource: IncidentDataSet
DataMember: IncidentAddendum (A table in 'IncidentDataSet')
There is a relationship in the&amp;#8230;</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>1</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/476518-Use-a-child-field-in-a-strongly-typed-dataset-in-a-datagridview-column/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/476518/Trackback.aspx</trackback:ping></item><item><title>DataTable expression using methods. [DataTable expression using methods.]</title><description>&lt;p&gt;I'm looking to have a datatable expression column that uses a method in my code. So I would have something like this:&lt;/p&gt;
&lt;p&gt;myDataSet.myDataTable.Columns.Add("ExpColumn", Type.GetType("System.String"), methodFromCode("Column1FromDataTable"))&lt;/p&gt;
&lt;p&gt;Where can I find the correct syntax for that?&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/476092-DataTable-expression-using-methods/'&gt;DataTable expression using methods.&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/476092/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/476092-DataTable-expression-using-methods/</comments><link>http://channel9.msdn.com/forums/TechOff/476092-DataTable-expression-using-methods/</link><pubDate>Mon, 29 Jun 2009 20:20:15 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/476092-DataTable-expression-using-methods/</guid><evnet:views>352</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/476092/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'm looking to have a datatable expression column that uses a method in my code. So I would have something like this:
myDataSet.myDataTable.Columns.Add("ExpColumn", Type.GetType("System.String"), methodFromCode("Column1FromDataTable"))
Where can I find the correct syntax for that?in reply to DataTable expression using methods.</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/476092-DataTable-expression-using-methods/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/476092/Trackback.aspx</trackback:ping></item><item><title>SQL 08 Express wants VS 08 SP1, but I installed SP1 [SQL 08 Express wants VS 08 SP1, but I installed SP1]</title><description>&lt;p&gt;K, so the office I'm working in sprung for VS 2008 Pro, but not SQL 2008. (Still using 2005). But I want to do some SQL CE stuff on a project. I thought I could load SQL 2008 Express, just the management/dev stuff, and be good to go. I get to the part where SQL 08 setup does it's installation rules, and it says the Previous release of MS VS 2008 needs to be SP1. Okay, I installed SP1, rebooted (the SP install told me to) and still I get the rule issue. When I start VS 2008 and do help about, I get this:&lt;/p&gt;
&lt;p&gt;&lt;a rel="lightbox" href="http://mark.phillk.net/images/VS2008%20about.jpg"&gt;&lt;img src="http://mark.phillk.net/images/VS2008%20about.jpg" alt="VS 2008 about screen" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/475168-SQL-08-Express-wants-VS-08-SP1-but-I-installed-SP1/'&gt;SQL 08 Express wants VS 08 SP1, but I installed SP1&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/475168/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/475168-SQL-08-Express-wants-VS-08-SP1-but-I-installed-SP1/</comments><link>http://channel9.msdn.com/forums/TechOff/475168-SQL-08-Express-wants-VS-08-SP1-but-I-installed-SP1/</link><pubDate>Tue, 23 Jun 2009 14:40:22 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/475168-SQL-08-Express-wants-VS-08-SP1-but-I-installed-SP1/</guid><evnet:views>557</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/475168/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>K, so the office I'm working in sprung for VS 2008 Pro, but not SQL 2008. (Still using 2005). But I want to do some SQL CE stuff on a project. I thought I could load SQL 2008 Express, just the management/dev stuff, and be good to go. I get to the part where SQL 08 setup does it's installation rules,&amp;#8230;</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/475168-SQL-08-Express-wants-VS-08-SP1-but-I-installed-SP1/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/475168/Trackback.aspx</trackback:ping></item><item><title>FileStream writing doesn't work correcly, no errors [FileStream writing doesn't work correcly, no errors]</title><description>&lt;p&gt;I'm writing an object to file as a serialized xml file like this:&lt;/p&gt;
&lt;p&gt;
&lt;p&gt;ser.Serialize(fs, settings)&lt;/p&gt;
&lt;p&gt;fs.Flush()&lt;/p&gt;
&lt;p&gt;fs.Close()&lt;/p&gt;
Dim fs As FileStream = New FileStream("settings.xml", FileMode.Create)&lt;/p&gt;
&lt;p&gt;But the file never changes. I don't get any errors. Is this because I'm in the debug folder?&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/472896-FileStream-writing-doesnt-work-correcly-no-errors/'&gt;FileStream writing doesn't work correcly, no errors&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/472896/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/472896-FileStream-writing-doesnt-work-correcly-no-errors/</comments><link>http://channel9.msdn.com/forums/TechOff/472896-FileStream-writing-doesnt-work-correcly-no-errors/</link><pubDate>Wed, 10 Jun 2009 17:38:39 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/472896-FileStream-writing-doesnt-work-correcly-no-errors/</guid><evnet:views>517</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/472896/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'm writing an object to file as a serialized xml file like this:

ser.Serialize(fs, settings)
fs.Flush()
fs.Close()
Dim fs As FileStream = New FileStream("settings.xml", FileMode.Create)
But the file never changes. I don't get any errors. Is this because I'm in the debug folder?in reply to&amp;#8230;</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>4</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/472896-FileStream-writing-doesnt-work-correcly-no-errors/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/472896/Trackback.aspx</trackback:ping></item><item><title>How to start/stop windows service from a windows form [How to start/stop windows service from a windows form]</title><description>&lt;p&gt;I'd like to have my windows form start and stop my windows service. I've seen it done, and I think I might have done it years ago, but I can't seem to find the correct pattern.&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/472888-How-to-startstop-windows-service-from-a-windows-form/'&gt;How to start/stop windows service from a windows form&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/472888/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/472888-How-to-startstop-windows-service-from-a-windows-form/</comments><link>http://channel9.msdn.com/forums/TechOff/472888-How-to-startstop-windows-service-from-a-windows-form/</link><pubDate>Wed, 10 Jun 2009 16:44:52 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/472888-How-to-startstop-windows-service-from-a-windows-form/</guid><evnet:views>540</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/472888/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'd like to have my windows form start and stop my windows service. I've seen it done, and I think I might have done it years ago, but I can't seem to find the correct pattern.in reply to How to start/stop windows service from a windows form</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/472888-How-to-startstop-windows-service-from-a-windows-form/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/472888/Trackback.aspx</trackback:ping></item><item><title>Refresh a DataGridView bound to an object [Refresh a DataGridView bound to an object]</title><description>&lt;p&gt;I have a class (classCollection) that contains an array of an object (classObject)&amp;nbsp;with 3 properties. The DataGridView is bound to them properly. I can see a row for each classObject with the properties showing.&lt;/p&gt;
&lt;p&gt;If I add a classObject item to the array, and do DataGridView.Refresh, the datagridview does not show the object, even tho the collection has it. What's up?&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/472883-Refresh-a-DataGridView-bound-to-an-object/'&gt;Refresh a DataGridView bound to an object&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/472883/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/472883-Refresh-a-DataGridView-bound-to-an-object/</comments><link>http://channel9.msdn.com/forums/TechOff/472883-Refresh-a-DataGridView-bound-to-an-object/</link><pubDate>Wed, 10 Jun 2009 16:16:00 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/472883-Refresh-a-DataGridView-bound-to-an-object/</guid><evnet:views>621</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/472883/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I have a class (classCollection) that contains an array of an object (classObject)&amp;nbsp;with 3 properties. The DataGridView is bound to them properly. I can see a row for each classObject with the properties showing.
If I add a classObject item to the array, and do DataGridView.Refresh, the&amp;#8230;</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>1</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/472883-Refresh-a-DataGridView-bound-to-an-object/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/472883/Trackback.aspx</trackback:ping></item><item><title>XML Spreadsheet web page opens in IE, not Excel [XML Spreadsheet web page opens in IE, not Excel]</title><description>&lt;p&gt;We have a page that generates an XML spreadsheet for the user. 99% of the users have this open into Excel. But we have one user who sees it load directly in Internet Explorer. I'm sure it's some settings on her system, but I'm not sure where to look. I wasn't sure what to google on this.&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/472865-XML-Spreadsheet-web-page-opens-in-IE-not-Excel/'&gt;XML Spreadsheet web page opens in IE, not Excel&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/472865/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/472865-XML-Spreadsheet-web-page-opens-in-IE-not-Excel/</comments><link>http://channel9.msdn.com/forums/TechOff/472865-XML-Spreadsheet-web-page-opens-in-IE-not-Excel/</link><pubDate>Wed, 10 Jun 2009 13:21:02 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/472865-XML-Spreadsheet-web-page-opens-in-IE-not-Excel/</guid><evnet:views>773</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/472865/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>We have a page that generates an XML spreadsheet for the user. 99% of the users have this open into Excel. But we have one user who sees it load directly in Internet Explorer. I'm sure it's some settings on her system, but I'm not sure where to look. I wasn't sure what to google on this.in reply to&amp;#8230;</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>7</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/472865-XML-Spreadsheet-web-page-opens-in-IE-not-Excel/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/472865/Trackback.aspx</trackback:ping></item><item><title>Do I still need Frontpage Extensions? [Do I still need Frontpage Extensions?]</title><description>&lt;p&gt;I read on wikipedia that some ClickOnce applications use Frontpage Extensions, but also see that it is 'End of Lifed'.&amp;nbsp; Most of our site is .Net (2.0 or greater). Do I still need Frontpage Extensions enabled on our Intranet server?&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/472530-Do-I-still-need-Frontpage-Extensions/'&gt;Do I still need Frontpage Extensions?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/472530/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/472530-Do-I-still-need-Frontpage-Extensions/</comments><link>http://channel9.msdn.com/forums/TechOff/472530-Do-I-still-need-Frontpage-Extensions/</link><pubDate>Mon, 08 Jun 2009 18:49:07 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/472530-Do-I-still-need-Frontpage-Extensions/</guid><evnet:views>554</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/472530/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I read on wikipedia that some ClickOnce applications use Frontpage Extensions, but also see that it is 'End of Lifed'.&amp;nbsp; Most of our site is .Net (2.0 or greater). Do I still need Frontpage Extensions enabled on our Intranet server?in reply to Do I still need Frontpage Extensions?</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>3</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/472530-Do-I-still-need-Frontpage-Extensions/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/472530/Trackback.aspx</trackback:ping></item><item><title>Using a list in a list in SQL Reports 2005 [Using a list in a list in SQL Reports 2005]</title><description>&lt;p&gt;I'm creating a report that doesn't follow the standard table layout, so I have my elements laid out in a list control. The report is bound to a dataset object, which has child tables in the dataset. I would like to use one of these child tables as a list.&lt;/p&gt;
&lt;p&gt;For instance, my main table is IncidentVessel, and the child table is Activities, I want my report to show the Activities in a list, bulleted or otherwise. I thought that by putting a list object inside my main list object, I could do this. I set it up with grouping information on the IncidentVesselID,&amp;nbsp;but I keep getting the message that 'list2' has no group expressions defined for it.&lt;/p&gt;
&lt;p&gt;Any thoughts?&lt;/p&gt;
&lt;p&gt;&lt;a rel="lightbox" href="http://mark.phillk.net/images/reportGrouping.jpg"&gt;&lt;img src="http://mark.phillk.net/images/reportGrouping.jpg" alt="" /&gt;&lt;/a&gt;&lt;a rel="lightbox" href="http://mark.phillk.net/images/reportGrouping.jpg"&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/470749-Using-a-list-in-a-list-in-SQL-Reports-2005/'&gt;Using a list in a list in SQL Reports 2005&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/470749/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/470749-Using-a-list-in-a-list-in-SQL-Reports-2005/</comments><link>http://channel9.msdn.com/forums/TechOff/470749-Using-a-list-in-a-list-in-SQL-Reports-2005/</link><pubDate>Wed, 27 May 2009 16:19:06 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/470749-Using-a-list-in-a-list-in-SQL-Reports-2005/</guid><evnet:views>415</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/470749/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'm creating a report that doesn't follow the standard table layout, so I have my elements laid out in a list control. The report is bound to a dataset object, which has child tables in the dataset. I would like to use one of these child tables as a list.
For instance, my main table is&amp;#8230;</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/470749-Using-a-list-in-a-list-in-SQL-Reports-2005/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/470749/Trackback.aspx</trackback:ping></item><item><title>Why does 'Save my password' do nothing? [Why does 'Save my password' do nothing?]</title><description>I'm in a SQL report project in Visual Studio 2005, I set my share connection, and Check 'Save my password', EVERY TIME I START THE PROJECT!!!!!!&lt;BR&gt;&lt;BR&gt;Why does this forget the password?!?!&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/468828-Why-does-Save-my-password-do-nothing/'&gt;Why does 'Save my password' do nothing?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/468828/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/468828-Why-does-Save-my-password-do-nothing/</comments><link>http://channel9.msdn.com/forums/TechOff/468828-Why-does-Save-my-password-do-nothing/</link><pubDate>Mon, 11 May 2009 20:21:21 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/468828-Why-does-Save-my-password-do-nothing/</guid><evnet:views>624</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/468828/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'm in a SQL report project in Visual Studio 2005, I set my share connection, and Check 'Save my password', EVERY TIME I START THE PROJECT!!!!!!Why does this forget the password?!?!in reply to Why does 'Save my password' do nothing?</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>6</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/468828-Why-does-Save-my-password-do-nothing/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/468828/Trackback.aspx</trackback:ping></item><item><title>SSRS access from a separate server no longer works [SSRS access from a separate server no longer works]</title><description>We had SQL reports on our Dev server, and they could be reached by my asp.net pages from both the Dev server and the production server.&lt;BR&gt;&lt;BR&gt;The dev server went down, and had to be rebuilt. (This was done by our server Admin, not me.) Now we cannot access the reports from another server like we used to do. The error we receive is 'The request failed with HTTP status 401: Unauthorized.'&lt;BR&gt;&lt;BR&gt;I believe we had a Role Assignment of Browser set up that allowed the&amp;nbsp;remoteserver access. However, if I now try to create a Role assignment for the ASPNET account, I can only do so for the local ASPNET account, not the remote server.&lt;BR&gt;&lt;BR&gt;I did not have to put embeded credentials in the code before, and would like to not have to now. Any thoughts?&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/467929-SSRS-access-from-a-separate-server-no-longer-works/'&gt;SSRS access from a separate server no longer works&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/467929/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/467929-SSRS-access-from-a-separate-server-no-longer-works/</comments><link>http://channel9.msdn.com/forums/TechOff/467929-SSRS-access-from-a-separate-server-no-longer-works/</link><pubDate>Mon, 04 May 2009 17:15:12 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/467929-SSRS-access-from-a-separate-server-no-longer-works/</guid><evnet:views>447</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/467929/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>We had SQL reports on our Dev server, and they could be reached by my asp.net pages from both the Dev server and the production server.The dev server went down, and had to be rebuilt. (This was done by our server Admin, not me.) Now we cannot access the reports from another server like we used to&amp;#8230;</evnet:previewtext><dc:creator>qwert231</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/467929-SSRS-access-from-a-separate-server-no-longer-works/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/467929/Trackback.aspx</trackback:ping></item></channel></rss>