<?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 JParrish</title><atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/niners/jparrish/rss/default.aspx" /><image><url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url><title>Entries for JParrish</title><link>http://channel9.msdn.com/Niners/jparrish/</link></image><description>Entries, comments and threads posted by JParrish</description><link>http://channel9.msdn.com/Niners/jparrish/</link><language>en-us</language><pubDate>Tue, 02 Dec 2008 18:33:31 GMT</pubDate><lastBuildDate>Tue, 02 Dec 2008 18:33:31 GMT</lastBuildDate><generator>EvNet (EvNet, Version=1.0.3608.3122, Culture=neutral, PublicKeyToken=null)</generator><item><title>CSS Question [CSS Question]</title><description>I figured there's got to be a couple CSS experts on here :)&lt;br&gt;&lt;br&gt;I'm using a CSS based popup.. that relies on an anchor tag.. with a span inside of the anchor tag. Here's the css that drives the popups:&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; a.popup{&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; position:relative; /*this is the key*/&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; z-index:24; background-color:#ccc;&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; color:#000;&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; text-decoration:none;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; a.popup:hover{z-index:25; background-color:#ff0}&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; a.popup span{display: none}&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; a.popup:hover span{ /*the span will display just on :hover state*/&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; display:block;&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; position:absolute;&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; top:auto; left:15px; bottom:15px; width:350px; height: auto;&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; border:1px solid #0cf;&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; background-color:#cff; color:#000;&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; text-align: center;&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; overflow: auto;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;&lt;br&gt;The corresponding HTML looks like this:&lt;br&gt;&lt;br&gt;&amp;lt;a class="popup" href="#"&amp;gt;Mouse Over&amp;lt;span&amp;gt;Popup Text&amp;lt;/span&amp;gt;&amp;lt;/a&amp;gt;&lt;br&gt;&lt;br&gt;This works well in both IE and Firefox. My problem is that if instead of "Mouse Over" I want to have a small image which triggers the hover, in IE it displays the image correctly but in Firefox the image is being hidden along with the span, even though the image is not contained within the span.&lt;br&gt;&lt;br&gt;I don't really know if this is a quirk of Firefox, or if that behavior is expected and IE is not conforming. Any help would be appreciated, I'm not sure where to turn with this problem. Thanks!&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/446471-CSS-Question/'&gt;CSS Question&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/446471/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/446471-CSS-Question/</comments><link>http://channel9.msdn.com/forums/TechOff/446471-CSS-Question/</link><pubDate>Tue, 02 Dec 2008 18:33:31 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/446471-CSS-Question/</guid><evnet:views>766</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/446471/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I figured there's got to be a couple CSS experts on here :)I'm using a CSS based popup.. that relies on an anchor tag.. with a span inside of the anchor tag. Here's the css that drives the popups:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#8230;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>9</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/446471-CSS-Question/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/446471/Trackback.aspx</trackback:ping></item><item><title>Very bad download speeds on llwnd.net [Very bad download speeds on llwnd.net]</title><description>I'm getting real slow download speeds off the limelight networks links for downloading ch9 videos. Current video is downloading at ~15-25kbps which is set to take about ~13 hours.&lt;br&gt;&lt;br&gt;So a friend just tried the link with a download manager, that opens multiple connections and he was getting &amp;gt; 300kbps... soo... I guess they are throttling the downloads per connection. Seems kind of rediculous for such a large download. :|&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/259915-Very-bad-download-speeds-on-llwndnet/'&gt;Very bad download speeds on llwnd.net&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/259915/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/259915-Very-bad-download-speeds-on-llwndnet/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/259915-Very-bad-download-speeds-on-llwndnet/</link><pubDate>Thu, 27 Dec 2007 16:28:19 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/259915-Very-bad-download-speeds-on-llwndnet/</guid><evnet:views>645</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/259915/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'm getting real slow download speeds off the limelight networks links for downloading ch9 videos. Current video is downloading at ~15-25kbps which is set to take about ~13 hours.&lt;br&gt;&lt;br&gt;So a friend just tried the link with a download manager, that opens multiple connections and he was getting &amp;gt; 300kbps... soo... I guess they are throttling the downloads per connection. Seems kind of rediculous for such a large download. &lt;img src='/emoticons/C9/emotion-8.gif' alt='Expressionless' /&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/259915-Very-bad-download-speeds-on-llwndnet/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/259915/Trackback.aspx</trackback:ping></item><item><title>Want to help vote? [Want to help vote?]</title><description>His name is Trey. If you want to help all you have to do is click the link below and the vote will be placed for you. :D&lt;br&gt;&lt;br&gt;&lt;a href="http://www.worldofxander.com/vote.htm"&gt;http://www.worldofxander.com/vote.htm&lt;/a&gt;&lt;br&gt;&lt;br&gt;Thanks :P&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/258333-Want-to-help-vote/'&gt;Want to help vote?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/258333/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/258333-Want-to-help-vote/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/258333-Want-to-help-vote/</link><pubDate>Wed, 17 Oct 2007 20:19:57 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/258333-Want-to-help-vote/</guid><evnet:views>1565</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/258333/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>His name is Trey. If you want to help all you have to do is click the link below and the vote will be placed for you. &lt;img src='/emoticons/C9/emotion-2.gif' alt='Big Smile' /&gt;&lt;br&gt;&lt;br&gt;&lt;a href="http://www.worldofxander.com/vote.htm"&gt;http://www.worldofxander.com/vote.htm&lt;/a&gt;&lt;br&gt;&lt;br&gt;Thanks &lt;img src='/emoticons/C9/emotion-4.gif' alt='Tongue Out' /&gt;&lt;br&gt;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>4</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/258333-Want-to-help-vote/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/258333/Trackback.aspx</trackback:ping></item><item><title>Nicely done... OSS support [Nicely done... OSS support]</title><description>Kudos to MS for the below info.. this is both informative and actionable. Makes me feel very happy :)&lt;br&gt;&lt;br&gt;&lt;a href="http://i28.photobucket.com/albums/c204/eastshores/ffsupport.jpg"&gt;http://i28.photobucket.com/albums/c204/eastshores/ffsupport.jpg&lt;/a&gt;&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/257331-Nicely-done-OSS-support/'&gt;Nicely done... OSS support&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/257331/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/257331-Nicely-done-OSS-support/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/257331-Nicely-done-OSS-support/</link><pubDate>Fri, 31 Aug 2007 04:50:40 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/257331-Nicely-done-OSS-support/</guid><evnet:views>2614</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/257331/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Kudos to MS for the below info.. this is both informative and actionable. Makes me feel very happy &lt;img src='/emoticons/C9/emotion-1.gif' alt='Smiley' /&gt;&lt;br&gt;&lt;br&gt;&lt;a href="http://i28.photobucket.com/albums/c204/eastshores/ffsupport.jpg"&gt;http://i28.photobucket.com/albums/c204/eastshores/ffsupport.jpg&lt;/a&gt;&lt;br&gt;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>4</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/257331-Nicely-done-OSS-support/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/257331/Trackback.aspx</trackback:ping></item><item><title>COM interop and System.Collections.Generic [COM interop and System.Collections.Generic]</title><description>I was just wondering if anyone has tried to expose any of the generic collection types for COM interop? Will I have to create a strongly typed collection of my own or do the generics translate into acceptable COM types? :D&lt;br&gt;&lt;br&gt;It's looking like I can implement IEnumberable and IEnumerator as a facade for a generic List&amp;lt;&amp;gt; but in my case need a key value pair I have to create a struct for the List to hold. Sorry to ramble.&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/257296-COM-interop-and-SystemCollectionsGeneric/'&gt;COM interop and System.Collections.Generic&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/257296/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/257296-COM-interop-and-SystemCollectionsGeneric/</comments><link>http://channel9.msdn.com/forums/TechOff/257296-COM-interop-and-SystemCollectionsGeneric/</link><pubDate>Wed, 29 Aug 2007 17:04:43 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/257296-COM-interop-and-SystemCollectionsGeneric/</guid><evnet:views>1718</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/257296/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I was just wondering if anyone has tried to expose any of the generic collection types for COM interop? Will I have to create a strongly typed collection of my own or do the generics translate into acceptable COM types? &lt;img src='/emoticons/C9/emotion-2.gif' alt='Big Smile' /&gt;&lt;br&gt;&lt;br&gt;It's looking like I can implement IEnumberable and IEnumerator as a facade for a generic List&amp;lt;&amp;gt; but in my case need a key value pair I have to create a struct for the List to hold. Sorry to ramble.&lt;br&gt;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/257296-COM-interop-and-SystemCollectionsGeneric/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/257296/Trackback.aspx</trackback:ping></item><item><title>Getting line number in Exception for ASP.NET [Getting line number in Exception for ASP.NET]</title><description>&lt;P&gt;Hoping someone may have overcome this before.&lt;BR&gt;&lt;BR&gt;I use the enterprise library exception handling block to email myself any errors that occur within my ASP.NET application. At one time, I was getting the line numbers of the exceptions. I realize the performance hit but it is ok while I am testing deployment in new environments. Lately I have not been able to get the line numbers any more which makes the error too ambiguous. I have my build configurations to active debug, and in the web.config compilation debug is true.&lt;BR&gt;&lt;BR&gt;For libraries I call from the web app, I have the pdb files deployed into the bin folder. Does anyone know anything more I can check/do to try and get the exception to include the line number? I am using fixed name single page assemblies if that matters.&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/257195-Getting-line-number-in-Exception-for-ASPNET/'&gt;Getting line number in Exception for ASP.NET&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/257195/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/257195-Getting-line-number-in-Exception-for-ASPNET/</comments><link>http://channel9.msdn.com/forums/TechOff/257195-Getting-line-number-in-Exception-for-ASPNET/</link><pubDate>Fri, 24 Aug 2007 16:04:09 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/257195-Getting-line-number-in-Exception-for-ASPNET/</guid><evnet:views>6476</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/257195/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;P&gt;Hoping someone may have overcome this before.&lt;BR&gt;&lt;BR&gt;I use the enterprise library exception handling block to email myself any errors that occur within my ASP.NET application. At one time, I was getting the line numbers of the exceptions. I realize the performance hit but it is ok while I am testing deployment in new environments. Lately I have not been able to get the line numbers any more which makes the error too ambiguous. I have my build configurations to active debug, and in the web.config compilation debug is true.&lt;BR&gt;&lt;BR&gt;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>13</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/257195-Getting-line-number-in-Exception-for-ASPNET/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/257195/Trackback.aspx</trackback:ping></item><item><title>WerFault.exe and ASP.NET [WerFault.exe and ASP.NET]</title><description>Couple questions.. 1. does anyone have the ASP.NET development server hang.. which causes Windows Problem Reporting (werfault.exe) to run?&amp;nbsp; and 2. does anyone have any idea why werfault.exe is such a hog? It usually bogs my machine down pretty bad while it's running.&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/257142-WerFaultexe-and-ASPNET/'&gt;WerFault.exe and ASP.NET&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/257142/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/257142-WerFaultexe-and-ASPNET/</comments><link>http://channel9.msdn.com/forums/TechOff/257142-WerFaultexe-and-ASPNET/</link><pubDate>Wed, 22 Aug 2007 15:09:45 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/257142-WerFaultexe-and-ASPNET/</guid><evnet:views>3502</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/257142/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Couple questions.. 1. does anyone have the ASP.NET development server hang.. which causes Windows Problem Reporting (werfault.exe) to run?&amp;nbsp; and 2. does anyone have any idea why werfault.exe is such a hog? It usually bogs my machine down pretty bad while it's running.&lt;br&gt;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>1</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/257142-WerFaultexe-and-ASPNET/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/257142/Trackback.aspx</trackback:ping></item><item><title>Problem w/ VSS in VStudio on Vista [Problem w/ VSS in VStudio on Vista]</title><description>This has been a recurring problem for me. On Windows server 2003, the server will often disconnect connections to a mapped drive that aren't being used. This results in the OS showing a red "X" on the icon for the mapped drive until you browse it, and the connection is restored. My co-worker set the server now to not disconnect, so we'll see if that helps.&lt;br&gt;&lt;br&gt;Under Vista if I open VStudio while the drive which hosts our VSS files is in this disconnected state, it does not re-connect. Instead it says "The database at [DriveLetter] does not exist or cannot be accessed at this time. Would you like to select another?"&lt;br&gt;&lt;br&gt;If I hit "Yes" I am givin the VSS "Open SourceSafe Database" dialog and the only source safe database I have registered is showing there. "S:" in my case. Check real quick and in Explorer there is no longer a little red "X" on the mapped drive icon. Click open on the dialog and I get "The database S: does not exist, would you like to search for it?"&lt;br&gt;&lt;br&gt;Ok.. hit Yes and a "Find Database" dialog opens. Drop down to select the S drive and guess what? The S drive has a red "X" on it. Go back to explorer.. NO RED X. I am able to browse the S drive through this dialog though, so I go ahead and select my srcsafe.ini file and click open. I get a confirm dialog, and then, I get "The visual source safe database folder could not be accessed. Would you like to switch to the Visual Source Safe Internet Plugin......"&lt;br&gt;&lt;br&gt;So.. essentially the only way I have been able to fix this is to reboot. I think at one time I removed my mapped drives, reset the bindings for source control and that worked. I searched google, and if others are having this issue, they aren't describing it as I am, because I haven't been able to find any info on it. :(&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/257012-Problem-w-VSS-in-VStudio-on-Vista/'&gt;Problem w/ VSS in VStudio on Vista&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/257012/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/257012-Problem-w-VSS-in-VStudio-on-Vista/</comments><link>http://channel9.msdn.com/forums/TechOff/257012-Problem-w-VSS-in-VStudio-on-Vista/</link><pubDate>Wed, 15 Aug 2007 14:26:37 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/257012-Problem-w-VSS-in-VStudio-on-Vista/</guid><evnet:views>1407</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/257012/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>This has been a recurring problem for me. On Windows server 2003, the server will often disconnect connections to a mapped drive that aren't being used. This results in the OS showing a red "X" on the icon for the mapped drive until you browse it, and the connection is restored. My co-worker set the server now to not disconnect, so we'll see if that helps.&lt;br&gt;&lt;br&gt;Under Vista if I open VStudio while the drive which hosts our VSS files is in this disconnected state, it does not re-connect. Instead it says "The database at [DriveLetter] does not exist or cannot be accessed at this time. Would you like to select another?"&lt;br&gt;&lt;br&gt;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/257012-Problem-w-VSS-in-VStudio-on-Vista/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/257012/Trackback.aspx</trackback:ping></item><item><title>UAC rant.. [UAC rant..]</title><description>I just sent a file to a friend over trillian, and decided I would say something about UAC here.. since it was a good example of the shortfalls of it.&lt;br&gt;&lt;br&gt;Windows firewall first popped up and said it was blocking trillian from sending it, so I hit unblock. That's when UAC popped up and said... "What's up??? someone messin' witchuuu???" to which I had to hit continue.&lt;br&gt;&lt;br&gt;Tell me why it is, that after I approved it through windows firewall, that UAC didn't accept that? Is it to keep agressive malware from using win32 events to spoof a button click? Shouldn't there be a better way? It is well understood that if security becomes such an obstacle that ordinary actions are impeded, then ones vigilance is lowered. The average user will become so desensitzed that they will expect that most applications require them to approve something, and therefore the malware goes right through.&lt;br&gt;&lt;br&gt;Would love to hear from any MS employees in the security team.&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/256793-UAC-rant/'&gt;UAC rant..&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/256793/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/256793-UAC-rant/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/256793-UAC-rant/</link><pubDate>Sat, 04 Aug 2007 18:49:31 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/256793-UAC-rant/</guid><evnet:views>7555</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/256793/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I just sent a file to a friend over trillian, and decided I would say something about UAC here.. since it was a good example of the shortfalls of it.Windows firewall first popped up and said it was blocking trillian from sending it, so I hit unblock. That's when UAC popped up and said... "What's up??? someone messin' witchuuu???" to which I had to hit continue.Tell me why it is, that after I approved it through windows firewall, that UAC didn't accept that? Is it to keep agressive malware from using win32 events to spoof a button click? Shouldn't there be a better way? It is well understood&amp;#8230;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>51</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/256793-UAC-rant/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/256793/Trackback.aspx</trackback:ping></item><item><title>ASP.NET table type data control? [ASP.NET table type data control?]</title><description>Anyone know of a free control to do table layout from a databinding source.. for instance specify number of columns.. and each item in data source gets put into a column with the control handling the creation of the rows.&lt;br&gt;&lt;br&gt;| datasource[0]&amp;nbsp; | datasource[1]&amp;nbsp; |&amp;nbsp; datasource[2]&amp;nbsp; |&lt;br&gt;| datasource[3]&amp;nbsp; | datasource[4]&amp;nbsp; |&amp;nbsp; datasource[5]&amp;nbsp; |&lt;br&gt;&lt;br&gt;etc. Seems to me someone would have done this already.. so I didn't want to write a server control if one is out there. Thanks&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/255362-ASPNET-table-type-data-control/'&gt;ASP.NET table type data control?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/255362/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/255362-ASPNET-table-type-data-control/</comments><link>http://channel9.msdn.com/forums/TechOff/255362-ASPNET-table-type-data-control/</link><pubDate>Fri, 08 Jun 2007 14:21:06 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/255362-ASPNET-table-type-data-control/</guid><evnet:views>2716</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/255362/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Anyone know of a free control to do table layout from a databinding source.. for instance specify number of columns.. and each item in data source gets put into a column with the control handling the creation of the rows.&lt;br&gt;&lt;br&gt;| datasource[0]&amp;nbsp; | datasource[1]&amp;nbsp; |&amp;nbsp; datasource[2]&amp;nbsp; |&lt;br&gt;| datasource[3]&amp;nbsp; | datasource[4]&amp;nbsp; |&amp;nbsp; datasource[5]&amp;nbsp; |&lt;br&gt;&lt;br&gt;etc. Seems to me someone would have done this already.. so I didn't want to write a server control if one is out there. Thanks&lt;br&gt;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/255362-ASPNET-table-type-data-control/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/255362/Trackback.aspx</trackback:ping></item><item><title>ReadyBoost API? [ReadyBoost API?]</title><description>I was wondering if there is a ReadyBoost API that would allow some exploration into the mappings that go into the readyboost cache?&lt;br&gt;&lt;br&gt;I think it would be a good project to write for fun.. maybe put it in the sandbox. Think along the lines of SysInternals (new TechEd) for understanding the behaviour of this beast.&lt;br&gt;&lt;br&gt;Currently there isn't a way that I am aware of to view even the current usage of the readyboost cache, let alone what in particular is in the cache.&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/254832-ReadyBoost-API/'&gt;ReadyBoost API?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/254832/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/254832-ReadyBoost-API/</comments><link>http://channel9.msdn.com/forums/TechOff/254832-ReadyBoost-API/</link><pubDate>Sat, 19 May 2007 18:09:14 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/254832-ReadyBoost-API/</guid><evnet:views>2471</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/254832/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I was wondering if there is a ReadyBoost API that would allow some exploration into the mappings that go into the readyboost cache?&lt;br&gt;&lt;br&gt;I think it would be a good project to write for fun.. maybe put it in the sandbox. Think along the lines of SysInternals (new TechEd) for understanding the behaviour of this beast.&lt;br&gt;&lt;br&gt;Currently there isn't a way that I am aware of to view even the current usage of the readyboost cache, let alone what in particular is in the cache.&lt;br&gt;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>6</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/254832-ReadyBoost-API/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/254832/Trackback.aspx</trackback:ping></item><item><title>Embedding fonts in PDF [Embedding fonts in PDF]</title><description>Thought one of you niners may have run into this problem. I am creating PDF files server side that are streamed back to the client. On one particular file I use a true type font for bar code generation. I realized that this font needed to be embedded so that a client without the font installed could render the barcode.&lt;br&gt;&lt;br&gt;I am using PDFSharp to generate the file, and managed to get the font embedded. I verified that the font is embedded by looking at the document properties and seeing that the font is type truetype (embedded). The bar code is not showing up. Instead it looks like it is possibly being substitutted. The encoding type is Ansi. Anyone know how I can verify that the font is embedded properly?&lt;br&gt;&lt;br&gt;Any suggestions on why I might be seeing this behaviour? Could it have to do with the Ansi encoding? Thanks&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/254243-Embedding-fonts-in-PDF/'&gt;Embedding fonts in PDF&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/254243/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/254243-Embedding-fonts-in-PDF/</comments><link>http://channel9.msdn.com/forums/TechOff/254243-Embedding-fonts-in-PDF/</link><pubDate>Mon, 23 Apr 2007 15:19:00 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/254243-Embedding-fonts-in-PDF/</guid><evnet:views>3148</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/254243/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Thought one of you niners may have run into this problem. I am creating PDF files server side that are streamed back to the client. On one particular file I use a true type font for bar code generation. I realized that this font needed to be embedded so that a client without the font installed could render the barcode.I am using PDFSharp to generate the file, and managed to get the font embedded. I verified that the font is embedded by looking at the document properties and seeing that the font is type truetype (embedded). The bar code is not showing up. Instead it looks like it is possibly&amp;#8230;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>8</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/254243-Embedding-fonts-in-PDF/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/254243/Trackback.aspx</trackback:ping></item><item><title>Regarding Lee? [Regarding Lee?]</title><description>Whatever happened to him? When Chan 9 started, I had many late night conversations regarding channel 9 and what it meant to MS (I am EST), Vista, how the .NET platform was working wonders for MS, etc. It was very cool to be involved in the counter culture back then.&lt;br&gt;&lt;br&gt;Several months after Chan9 started, as it really became a success and started to change the company, he had to pull back from his public screen name. I always wondered since you don't hear a mention of him anywhere on here. How is he doing?&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/253599-Regarding-Lee/'&gt;Regarding Lee?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/253599/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/253599-Regarding-Lee/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/253599-Regarding-Lee/</link><pubDate>Fri, 30 Mar 2007 05:17:24 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/253599-Regarding-Lee/</guid><evnet:views>2151</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/253599/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Whatever happened to him? When Chan 9 started, I had many late night conversations regarding channel 9 and what it meant to MS (I am EST), Vista, how the .NET platform was working wonders for MS, etc. It was very cool to be involved in the counter culture back then.&lt;br&gt;&lt;br&gt;Several months after Chan9 started, as it really became a success and started to change the company, he had to pull back from his public screen name. I always wondered since you don't hear a mention of him anywhere on here. How is he doing?</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>3</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/253599-Regarding-Lee/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/253599/Trackback.aspx</trackback:ping></item><item><title>to VS IDE devs [to VS IDE devs]</title><description>If there is an option for this already please forgive my ignorance and let me know how to configure.&lt;br&gt;&lt;br&gt;In VS2005 I have most of the panels set to auto-hide. Toolbox, server explorer, solution explorer, properties are all panels that I only occassionaly need to see.&lt;br&gt;&lt;br&gt;What happens often, is that I am hovering the mouse very near one of those tabs and as I go to select a line (this is almost always on the left) a panel (server explorer is the worst) decides it has focus and is wanted! I then have to wait as it performs its logic loading up the great tools for working with remote/local servers. I then shun the panel, blurt expletives in my mind and wait for it to receed into the crevices it crawled out from!&lt;br&gt;&lt;br&gt;Point is... it would be awfully nice if there was a control key that allowed me to show my intention to view the panel. Some user defined key being down while hovering over the panel tab. Thanks!&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/253531-to-VS-IDE-devs/'&gt;to VS IDE devs&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/253531/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/253531-to-VS-IDE-devs/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/253531-to-VS-IDE-devs/</link><pubDate>Wed, 28 Mar 2007 03:42:18 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/253531-to-VS-IDE-devs/</guid><evnet:views>1247</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/253531/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>If there is an option for this already please forgive my ignorance and let me know how to configure.In VS2005 I have most of the panels set to auto-hide. Toolbox, server explorer, solution explorer, properties are all panels that I only occassionaly need to see.What happens often, is that I am hovering the mouse very near one of those tabs and as I go to select a line (this is almost always on the left) a panel (server explorer is the worst) decides it has focus and is wanted! I then have to wait as it performs its logic loading up the great tools for working with remote/local servers. I then&amp;#8230;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/253531-to-VS-IDE-devs/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/253531/Trackback.aspx</trackback:ping></item><item><title>Missing from Vista [Missing from Vista]</title><description>I am surprised that MS didn't finally add the ability to re-order the tabs within the task bar. IE7 has this ability, I guess with the extra work they did with alt+tab and windows key+tab it wasn't expected to be used much?&lt;br&gt;&lt;br&gt;Would have been nice :|&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/252682-Missing-from-Vista/'&gt;Missing from Vista&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/252682/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/252682-Missing-from-Vista/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/252682-Missing-from-Vista/</link><pubDate>Mon, 26 Feb 2007 14:50:21 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/252682-Missing-from-Vista/</guid><evnet:views>2427</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/252682/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I am surprised that MS didn't finally add the ability to re-order the tabs within the task bar. IE7 has this ability, I guess with the extra work they did with alt+tab and windows key+tab it wasn't expected to be used much?&lt;br&gt;&lt;br&gt;Would have been nice &lt;img src='/emoticons/C9/emotion-8.gif' alt='Expressionless' /&gt;&lt;br&gt;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/252682-Missing-from-Vista/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/252682/Trackback.aspx</trackback:ping></item><item><title>getting dataitem for gridview row on postback [getting dataitem for gridview row on postback]</title><description>Is there a way to get to the dataitem for a gridview row, when a postback is made from outside of the gridview itself? I have checkboxes that I am using to indicate selection, and want to be able to get to the object I use to bind the gridview for each row that is checked when a button is pressed. Thanks for info, I'm still a grid newb! :P&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/252288-getting-dataitem-for-gridview-row-on-postback/'&gt;getting dataitem for gridview row on postback&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/252288/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/252288-getting-dataitem-for-gridview-row-on-postback/</comments><link>http://channel9.msdn.com/forums/TechOff/252288-getting-dataitem-for-gridview-row-on-postback/</link><pubDate>Mon, 12 Feb 2007 21:53:40 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/252288-getting-dataitem-for-gridview-row-on-postback/</guid><evnet:views>18620</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/252288/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Is there a way to get to the dataitem for a gridview row, when a postback is made from outside of the gridview itself? I have checkboxes that I am using to indicate selection, and want to be able to get to the object I use to bind the gridview for each row that is checked when a button is pressed. Thanks for info, I'm still a grid newb! &lt;img src='/emoticons/C9/emotion-4.gif' alt='Tongue Out' /&gt;&lt;br&gt;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>13</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/252288-getting-dataitem-for-gridview-row-on-postback/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/252288/Trackback.aspx</trackback:ping></item><item><title>Zune - anything from Microsoft? [Zune - anything from Microsoft?]</title><description>I called Zune to try and get an answer to this, but the guy there recommended I go to the web site Zune.Net to find out the answer to my question "Are there any plans to release firmware that will allow my Zune to play Plays-For-Sure content?".&lt;br&gt;&lt;br&gt;When I asked where on the site that info was, he mentioned that he didn't know, but if that information was available it would be on that site. So... Microsoft guys... can we get a link to any plans for the Zune firmware? I hate to sound like a broken record on this, but is the truth that Microsoft execs have decided to play an unusually dirty game by excluding even their 3rd party content vendors from inter-operating on the Zune?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/252183-Zune-anything-from-Microsoft/'&gt;Zune - anything from Microsoft?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/252183/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/252183-Zune-anything-from-Microsoft/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/252183-Zune-anything-from-Microsoft/</link><pubDate>Fri, 09 Feb 2007 02:12:17 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/252183-Zune-anything-from-Microsoft/</guid><evnet:views>2345</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/252183/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I called Zune to try and get an answer to this, but the guy there recommended I go to the web site Zune.Net to find out the answer to my question "Are there any plans to release firmware that will allow my Zune to play Plays-For-Sure content?".When I asked where on the site that info was, he mentioned that he didn't know, but if that information was available it would be on that site. So... Microsoft guys... can we get a link to any plans for the Zune firmware? I hate to sound like a broken record on this, but is the truth that Microsoft execs have decided to play an unusually dirty game by&amp;#8230;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/252183-Zune-anything-from-Microsoft/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/252183/Trackback.aspx</trackback:ping></item><item><title>Cascading Deletes in SQL 2005 [Cascading Deletes in SQL 2005]</title><description>Would appreciate a sanity check on this.. In my database, I want to be able to delete a row, and have the delete cascade through the referencing tables deleting data that would cause a constraint violation if not removed. I have been trying to do this with triggers since I wanted to have explicit control over what is removed.&lt;br&gt;&lt;br&gt;The first issue I ran into is that a normal trigger did not fire until after a row was deleted, which still caused a constraint violation. So I switched to using "INSTEAD OF DELETE" which allowed me to remove the sattelite data, but resulted in never really deleting the first record. I then realized that I could delete the source record by performing a second delete within the trigger but this just seemed wrong to me (thought it might have a problem with circular ref but didn't seem to)&lt;br&gt;&lt;br&gt;Am I off my rocker trying to do these deletes with triggers? My second question is, if I choose to use the table based "ON DELETE CASCADE", in the event that I have a compound linking table (fk1, fk2) and delete a record that is primary key for fk1, what is the behaviour? If it deletes the linking record, and since fk2 is not a primary key for that record, would it then orphan the related data that fk2 had referenced?&lt;br&gt;&lt;br&gt;Thanks!&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/252085-Cascading-Deletes-in-SQL-2005/'&gt;Cascading Deletes in SQL 2005&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/252085/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/252085-Cascading-Deletes-in-SQL-2005/</comments><link>http://channel9.msdn.com/forums/TechOff/252085-Cascading-Deletes-in-SQL-2005/</link><pubDate>Tue, 06 Feb 2007 16:39:47 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/252085-Cascading-Deletes-in-SQL-2005/</guid><evnet:views>3112</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/252085/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Would appreciate a sanity check on this.. In my database, I want to be able to delete a row, and have the delete cascade through the referencing tables deleting data that would cause a constraint violation if not removed. I have been trying to do this with triggers since I wanted to have explicit control over what is removed.The first issue I ran into is that a normal trigger did not fire until after a row was deleted, which still caused a constraint violation. So I switched to using "INSTEAD OF DELETE" which allowed me to remove the sattelite data, but resulted in never really deleting the&amp;#8230;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>1</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/252085-Cascading-Deletes-in-SQL-2005/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/252085/Trackback.aspx</trackback:ping></item><item><title>Visual Design (DSL or WWF) [Visual Design (DSL or WWF)]</title><description>I am investigating creating a tool that will work much the way DTS for SQL Server does, so I have been looking at both domain specific languages and the windows workflow foundations in NetFX3.&lt;BR&gt;&lt;BR&gt;The basic objective in my tool is to capture data coming in as a frame, exposing the data as a series of properties and property aggregates, and allow a visual mapping of the properties to business entities. I want to be able to handle these mappings visually the same way they are handled in DTS, and I would like to implement the concept of a data pump with one or more processors in line to manipulate the data between source and destination.&lt;BR&gt;&lt;BR&gt;In my brief look at both DSL and WWF, neither seem like they would do exactly what I want, but both provide a lot of visual capability. Is anyone experienced enough in either to vouch for whether they could be used to build something similar to what I described? I will continue researching them, but figured it would be good to get some input from anyone with experience in either.&lt;BR&gt;&lt;BR&gt;Regards&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/252045-Visual-Design-DSL-or-WWF/'&gt;Visual Design (DSL or WWF)&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/252045/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/252045-Visual-Design-DSL-or-WWF/</comments><link>http://channel9.msdn.com/forums/TechOff/252045-Visual-Design-DSL-or-WWF/</link><pubDate>Mon, 05 Feb 2007 16:10:24 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/252045-Visual-Design-DSL-or-WWF/</guid><evnet:views>1006</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/252045/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I am investigating creating a tool that will work much the way DTS for SQL Server does, so I have been looking at both domain specific languages and the windows workflow foundations in NetFX3.&lt;BR&gt;&lt;BR&gt;The basic objective in my tool is to capture data coming in as a frame, exposing the data as a series of properties and property aggregates, and allow a visual mapping of the properties to business entities. I want to be able to handle these mappings visually the same way they are handled in DTS, and I would like to implement the concept of a data pump with one or more processors in line to manipulate the data between source and destination.&lt;BR&gt;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/252045-Visual-Design-DSL-or-WWF/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/252045/Trackback.aspx</trackback:ping></item><item><title>publish ASP.NET application [publish ASP.NET application]</title><description>I tried publishing my ASP.NET application to a folder I have set up for IIS so I can see how it runs under the full server. My images and css are not loading. They are physically in the folder, but when I try to pull an image up directly by typing it in the address, I just get a response like this:&lt;br&gt;&lt;br&gt;http://127.0.0.1/myapp/images/edit.gif&lt;br&gt;&lt;br&gt;It acts like it is treating my images/css as markers? Anyone have any idea what is going on here? I published a site a few days ago to a remote server and didn't have any issues. Thanks&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/251539-publish-ASPNET-application/'&gt;publish ASP.NET application&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/251539/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/251539-publish-ASPNET-application/</comments><link>http://channel9.msdn.com/forums/TechOff/251539-publish-ASPNET-application/</link><pubDate>Fri, 19 Jan 2007 15:56:56 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/251539-publish-ASPNET-application/</guid><evnet:views>2160</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/251539/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I tried publishing my ASP.NET application to a folder I have set up for IIS so I can see how it runs under the full server. My images and css are not loading. They are physically in the folder, but when I try to pull an image up directly by typing it in the address, I just get a response like this:&lt;br&gt;&lt;br&gt;http://127.0.0.1/myapp/images/edit.gif&lt;br&gt;&lt;br&gt;It acts like it is treating my images/css as markers? Anyone have any idea what is going on here? I published a site a few days ago to a remote server and didn't have any issues. Thanks&lt;br&gt;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/251539-publish-ASPNET-application/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/251539/Trackback.aspx</trackback:ping></item><item><title>Vista - Mapped Network Drives [Vista - Mapped Network Drives]</title><description>I've been having a lot of issues with a mapped network drive in Vista. When I booted, the network server was down, so it wasn't able to map that drive. Fine. But when the server was brought back up, My Computer showed the drive was there and Visual Studio said it wasn't.&lt;br&gt;&lt;br&gt;So I figured I would try to disconnect the drive and re-map it, to try and avoid the reboot I have had to make when this has happened before. Right click-&amp;gt; Disconnect:&amp;nbsp; Error "This network connection does not exist".&lt;br&gt;Really? So I double click it and it gives me an error indicating that the location no longer exists. So it looks like explorer is not releasing this mapped drive even though it no longer exists in so far as the mapping.&lt;br&gt;&lt;br&gt;I really hope when Vista releases that some of these issues are fixed in a quick service pack. It has gotten very annoying.&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/251449-Vista-Mapped-Network-Drives/'&gt;Vista - Mapped Network Drives&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/251449/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/251449-Vista-Mapped-Network-Drives/</comments><link>http://channel9.msdn.com/forums/TechOff/251449-Vista-Mapped-Network-Drives/</link><pubDate>Tue, 16 Jan 2007 16:08:37 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/251449-Vista-Mapped-Network-Drives/</guid><evnet:views>6526</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/251449/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I've been having a lot of issues with a mapped network drive in Vista. When I booted, the network server was down, so it wasn't able to map that drive. Fine. But when the server was brought back up, My Computer showed the drive was there and Visual Studio said it wasn't.&lt;br&gt;&lt;br&gt;So I figured I would try to disconnect the drive and re-map it, to try and avoid the reboot I have had to make when this has happened before. Right click-&amp;gt; Disconnect:&amp;nbsp; Error "This network connection does not exist".&lt;br&gt;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/251449-Vista-Mapped-Network-Drives/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/251449/Trackback.aspx</trackback:ping></item><item><title>UAC for the common man [UAC for the common man]</title><description>It struck me today that, since I installed Vista I have run into a number of applications that require I escalate their privileges in order to have them run properly.&lt;br&gt;&lt;br&gt;As I clicked through the approval.. for the 300th time this year it seems, it occurred to me that the average user is going to end up doing one of two things...&lt;br&gt;&lt;br&gt;1. They will get so disenchanted with the dialogs constantly popping up for "legitimate" applications, that when a real threat presents itself they may very well click through UAC prompts in a zombie like fashion.&lt;br&gt;&lt;br&gt;2. They will be paranoid of everything, and end up feeling like nothing on their computer works because they can never get applications to run, or when they do they crash with some kind of strange access error.&lt;br&gt;&lt;br&gt;In the end it is still a step in the right direction. I remember when MS started discussing security some of the candid statements hinged around the idea that users that are not educated in security, will be nearly impossible to secure while preserving a good user experience.&lt;br&gt;&lt;br&gt;Hopefully software will catch up with UAC and it will become seamless, then the average user will take note and UAC will be very useful to the masses.&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/251383-UAC-for-the-common-man/'&gt;UAC for the common man&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/251383/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/251383-UAC-for-the-common-man/</comments><link>http://channel9.msdn.com/forums/TechOff/251383-UAC-for-the-common-man/</link><pubDate>Fri, 12 Jan 2007 19:47:53 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/251383-UAC-for-the-common-man/</guid><evnet:views>1476</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/251383/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>It struck me today that, since I installed Vista I have run into a number of applications that require I escalate their privileges in order to have them run properly.&lt;br&gt;&lt;br&gt;As I clicked through the approval.. for the 300th time this year it seems, it occurred to me that the average user is going to end up doing one of two things...&lt;br&gt;&lt;br&gt;1. They will get so disenchanted with the dialogs constantly popping up for "legitimate" applications, that when a real threat presents itself they may very well click through UAC prompts in a zombie like fashion.&lt;br&gt;&lt;br&gt;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>3</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/251383-UAC-for-the-common-man/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/251383/Trackback.aspx</trackback:ping></item><item><title>Vista... what is the deal!? [Vista... what is the deal!?]</title><description>Microsoft releases Vista to the development community...&lt;br&gt;&lt;br&gt;- Visual Studio 2005 has issues with just recently a beta patch that doesn't address all issues (WTF has Microsoft been using to develop with? I guess they just live with the issues like we do?)&lt;br&gt;&lt;br&gt;- Legacy development tools no longer work in Vista&lt;br&gt;&lt;br&gt;- Virtual PC (my hope of having a workaround for legacy under Vista, is not compatible with Vista)&lt;br&gt;&lt;br&gt;- Issues with hibernation, compounded when hibernating with a docked laptop&lt;br&gt;&lt;br&gt;&lt;br&gt;I could understand all of this, if this was a Beta. It is not a beta, its the RTM, and therefore it might have been nice to make the issues that existed more apparent. If you are a .NET developer thinking of switching to Vista, I would say hold off for a few months. When they deploy it to the masses maybe their shyt will be in order.&lt;br&gt;&lt;br&gt;:(&lt;br&gt;&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/251306-Vista-what-is-the-deal/'&gt;Vista... what is the deal!?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/251306/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/251306-Vista-what-is-the-deal/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/251306-Vista-what-is-the-deal/</link><pubDate>Tue, 09 Jan 2007 19:18:21 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/251306-Vista-what-is-the-deal/</guid><evnet:views>3003</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/251306/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Microsoft releases Vista to the development community...&lt;br&gt;&lt;br&gt;- Visual Studio 2005 has issues with just recently a beta patch that doesn't address all issues (WTF has Microsoft been using to develop with? I guess they just live with the issues like we do?)&lt;br&gt;&lt;br&gt;- Legacy development tools no longer work in Vista&lt;br&gt;&lt;br&gt;- Virtual PC (my hope of having a workaround for legacy under Vista, is not compatible with Vista)&lt;br&gt;&lt;br&gt;- Issues with hibernation, compounded when hibernating with a docked laptop&lt;br&gt;&lt;br&gt;&lt;br&gt;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>7</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/251306-Vista-what-is-the-deal/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/251306/Trackback.aspx</trackback:ping></item><item><title>image button in gridview [image button in gridview]</title><description>Ignore this thread.. I was just a grid newb! [C]&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/251182-image-button-in-gridview/'&gt;image button in gridview&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/251182/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/251182-image-button-in-gridview/</comments><link>http://channel9.msdn.com/forums/TechOff/251182-image-button-in-gridview/</link><pubDate>Wed, 03 Jan 2007 17:27:25 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/251182-image-button-in-gridview/</guid><evnet:views>5660</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/251182/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Ignore this thread.. I was just a grid newb! [C]&lt;br&gt;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>3</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/251182-image-button-in-gridview/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/251182/Trackback.aspx</trackback:ping></item><item><title>Overriding ToString() for data binding [Overriding ToString() for data binding]</title><description>I have a domain object that I am using in a collection to bind to a drop-down list, and since we want a format of "property1, property2" as the text value for each drop down item, I just override ToString and concat the two properties there. That makes the most contextual sense to me, but when I just set my collection as the data source and bind the drop down.. it is only giving me the first part of that string which I believe it is taking from the property.&lt;br&gt;&lt;br&gt;I was under the impression that without explicitly setting a data member as the value to use for binding, that it would try to use the string representation of the object. Anyone have any ideas on this? I tried to debug and look at the databindings but didn't have any luck there. Thanks!&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/251054-Overriding-ToString-for-data-binding/'&gt;Overriding ToString() for data binding&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/251054/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/251054-Overriding-ToString-for-data-binding/</comments><link>http://channel9.msdn.com/forums/TechOff/251054-Overriding-ToString-for-data-binding/</link><pubDate>Wed, 27 Dec 2006 19:26:39 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/251054-Overriding-ToString-for-data-binding/</guid><evnet:views>2037</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/251054/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I have a domain object that I am using in a collection to bind to a drop-down list, and since we want a format of "property1, property2" as the text value for each drop down item, I just override ToString and concat the two properties there. That makes the most contextual sense to me, but when I just set my collection as the data source and bind the drop down.. it is only giving me the first part of that string which I believe it is taking from the property.I was under the impression that without explicitly setting a data member as the value to use for binding, that it would try to use the&amp;#8230;</evnet:previewtext><dc:creator>JParrish</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/251054-Overriding-ToString-for-data-binding/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/251054/Trackback.aspx</trackback:ping></item></channel></rss>