User MasterMax1313 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T07:45:00Zhttp://stackoverflow.com/feeds/user/72858http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1907335/filtering-using-the-join-instead-of-where7Filtering using the JOIN instead of WHEREMasterMax13132009-12-15T13:08:49Z2009-12-16T13:49:03Z
<p>In SQL (MSSQL, Oracle, etc., whatever), when joining tables, what is the gain from adding a filter to the JOIN statement instead of having it in the WHERE clause?</p>
<p>i.e.</p>
<pre><code>SELECT * FROM X INNER JOIN Y ON X.A = Y.A WHERE X.B = 'SOMETHING'
</code></pre>
<p>versus</p>
<pre><code>SELECT * FROM X INNER JOIN Y ON X.A = Y.A AND X.B = 'SOMETHING'
</code></pre>
<p>I realize that this does not work in all cases, but I've noticed that in some cases there appears to be a performance gain by putting the filter criteria in the JOIN statement. However, since it's a part of the JOIN statement, it can also cause it to behave a little strangely.</p>
<p>Thoughts?</p>
http://stackoverflow.com/questions/1842502/how-to-change-every-nvarchar-column-to-varchar1How to change every nvarchar column to varchar?MasterMax13132009-12-03T19:59:45Z2009-12-08T22:05:57Z
<p>what would be the simplest way to change every nvarchar column in a database to a varchar?</p>
<p>I personally would prefer nvarchar, but the data arch has specified that varchar must be used.</p>
http://stackoverflow.com/questions/1511626/entity-framework-include-with-where-with-3-tables1Entity Framework Include With Where With 3 TablesMasterMax13132009-10-02T20:24:19Z2009-11-23T16:54:16Z
<p>I'm trying to include two tables off of one base table, and provide a "where" statement on the second table, but I'm getting a very confusing error (below). Any thoughts on the issue/solution?</p>
<pre><code>ObjectQuery<STATE> productQuery =
LeadsContext.STATE.Include("REGION")
.Where("it.REGION.BRAND.BRAND_ID = @brand", new ObjectParameter("brand", brand))
.OrderBy("it.STATE_ABBV");
</code></pre>
<p>Basic table layout: STATE ------ REGION ------ BRAND</p>
<p>BRAND_ID is in BRAND</p>
<blockquote>
<p>'BRAND' is not a member of 'Transient.collection[Citizens.Leads.Data.REGION(Nullable=True,DefaultValue=)]'.
To extract properties out of collections, you must use a sub-query
to
iterate over the collection., near multipart identifier, line 8, column
1.</p>
</blockquote>
http://stackoverflow.com/questions/1730000/inetpub-versus-any-other-folder0inetpub versus any other folderMasterMax13132009-11-13T15:38:14Z2009-11-13T15:56:37Z
<p>I've run websites out of inetpub, as well as from folders just residing on the C: drive. I wonder, are there any definitive advantages to running websites out of inetput\wwwroot?</p>
http://stackoverflow.com/questions/757684/enum-inheritance8Enum "Inheritance"MasterMax13132009-04-16T19:27:07Z2009-11-03T05:37:47Z
<p>I have an enum in a low level namespace. I'd like to provide a class or enum in a mid level namespace that "inherits" the low level enum.</p>
<pre><code>namespace low
{
public enum base
{
x, y, z
}
}
namespace mid
{
public enum consume : low.base
{
}
}
</code></pre>
<p>I'm hoping that this is possible, or perhaps some kind of class that can take the place of the enum consume which will provide a layer of abstraction for the enum, but still let an instance of that class access the enum.</p>
<p>Thoughts?</p>
<p>EDIT:
One of the reasons I haven't just switched this to consts in classes is that the low level enum is needed by a service that I must consume. I have been given the WSDLs and the XSDs, which define the structure as an enum. The service cannot be changed.</p>
http://stackoverflow.com/questions/890222/analyzing-code-for-efficiency5Analyzing Code for Efficiency?MasterMax13132009-05-20T20:58:02Z2009-10-16T12:11:38Z
<p>What kinds of tools do you use to determine the efficiency of code? Do you use home grown applications that run a statistically significant number of tests, or some commercial product? Do you use your own knowledge to test certain areas of your code, or some tool that analyzes your code for weak spots?</p>
http://stackoverflow.com/questions/1554976/using-same-stored-procedure-for-both-insert-and-update-in-entity-framework1Using Same Stored Procedure for Both Insert and Update in Entity FrameworkMasterMax13132009-10-12T14:42:49Z2009-10-12T16:33:17Z
<p>I have a stored procedure that does both the insert and the update in one fell swoop (if the id == 0 then it's an insert, otherwise, update). I'd love to use this for both the insert and the update methods in Entity Framework, but this isn't looking feasible. Am I correct that I'll have to split the methods into two different stored procedures, or is there a way around this?</p>
http://stackoverflow.com/questions/1472097/regex-for-comma-separated-number-or-just-number1Regex for Comma Separated Number or Just NumberMasterMax13132009-09-24T14:32:12Z2009-09-27T11:37:50Z
<p>This is something of a follow up from <a href="http://stackoverflow.com/questions/1359147/regex-for-comma-separated-number">a previous question</a>. The requirements have changed, and I'm looking for some help with coming up with regex for either a comma separated number or a number with no commas. Sample input is below, along with some failed attempts.</p>
<p>Any help is appreciated.</p>
<p>Acceptable input:</p>
<pre><code>1,234,567
1234567
</code></pre>
<p>Unacceptable input:</p>
<pre><code>1234,567
1,234567
</code></pre>
<p>Some failed attempts:</p>
<pre><code>^(\d{1,3}(?:[,]\d{3})*)|((\d)*)$
^\d{1,3}((?:[,]?\d{3})*|(?:[,]\d{3})*)$
</code></pre>
<p>Original success:</p>
<pre><code>^\d{1,3}(?:[,]\d{3})*$
</code></pre>
http://stackoverflow.com/questions/1411873/how-to-make-a-yes-no-dialog-box-in-javascript/1411928#14119281Answer by MasterMax1313 for how to make a yes/no dialog box in javascript?MasterMax13132009-09-11T16:17:58Z2009-09-11T16:17:58Z<p>You may need to custom code a div with the two buttons, one yes and one no, which link back to a javascript function that saves that value or performs an action based on that value.</p>
<p>i.e.</p>
<pre><code>function YesNoDialog(result)
{
var x = result;
}
</code></pre>
<p>then in the button for yes</p>
<pre><code>onclick="YesNoDialog(1)"
</code></pre>
<p>and the button for no</p>
<pre><code>onclick="YesNoDialog(0)"
</code></pre>
http://stackoverflow.com/questions/1400044/detecting-whether-or-not-file-has-been-served-to-the-browser-kinda/1400104#14001041Answer by MasterMax1313 for Detecting whether or not file has been served to the browser?..kinda..MasterMax13132009-09-09T14:32:49Z2009-09-09T14:32:49Z<p>before setting window.location you could display a hidden div with your gif</p>
http://stackoverflow.com/questions/1380112/why-cant-i-use-the-name-attribute-on-usercontrol-in-the-same-assembly/1380260#1380260-1Answer by MasterMax1313 for Why can't I use the Name attribute on UserControl in the same assembly?MasterMax13132009-09-04T16:22:29Z2009-09-04T16:22:29Z<p>Think of it like naming a variable; you can't have</p>
<pre><code>var x = int;
var x = new DataTable();
</code></pre>
<p>within the same class. And that's what is happening when you try to provide the same name to two different elements in the same XAML file.</p>
<p>Same thing when you're creating classes, it's in essence</p>
<pre><code>namespace y
{
public class z {}
public class z {}
}
</code></pre>
<p>which is not correct since they are not partial classes.</p>
<p>Elements must be atomic within their container.</p>
http://stackoverflow.com/questions/1373410/sql-2008-report-manager-not-accessible/1373470#13734700Answer by MasterMax1313 for SQL 2008 report manager not accessibleMasterMax13132009-09-03T13:40:16Z2009-09-03T13:40:16Z<p>You may need to change the SSRS Configuration (through the GUI) (Start - Microsoft SQL Server 2008 - Configuration Tools - Reporting Services Configuration Manager) and set it to allow connections from outside the box it is on. </p>
<p>Also don't forget that it's using domain credentials / local machine credentials, so if you're not on a domain, you'll have to provide credentials to log onto that machine (i.e. MACHINE1 where SSRS is installed, from MACHINE2, log on with MACHINE1\username and password for MACHINE1).</p>
<p>Or you may need to open up your SQL Server instance to permit connections from other boxes.</p>
http://stackoverflow.com/questions/1364319/ssms-and-sqlcmd-displays-only-the-first-8000-characters/1364329#13643290Answer by MasterMax1313 for SSMS and SQLCMD displays only the first 8000 charactersMasterMax13132009-09-01T19:53:11Z2009-09-01T20:02:12Z<p>VARCHAR(MAX) is only capable of holding 8000 characters</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms176089.aspx" rel="nofollow">see here</a></p>
<p>From MSDN:</p>
<blockquote>
<p>varchar [ ( n | max ) ] -
Variable-length, non-Unicode character
data. n can be a value from 1 through
8,000. max indicates that the maximum
storage size is 2^31-1 bytes</p>
</blockquote>
<p>As Joseph (below) says, to hold more, use a text or ntext data type, but if you want to be able to search that, then you'd need some form of full-text indexing enabled.</p>
<p><a href="http://doc.ddart.net/mssql/sql70/da-db%5F1.htm" rel="nofollow">Better Link</a></p>
http://stackoverflow.com/questions/1364156/srs-reports-url-parameters-multiple-values/1364326#13643261Answer by MasterMax1313 for SRS Reports: URL Parameters, Multiple ValuesMasterMax13132009-09-01T19:52:20Z2009-09-01T19:52:20Z<p>I believe you do it the same way as any other report, you just comma separate your list (i.e. 10,20), which is why you need a function to split your comma separated string into a table for your where clause (sounds like you've already got this covered)</p>
http://stackoverflow.com/questions/1359147/regex-for-comma-separated-number4Regex for Comma Separated NumberMasterMax13132009-08-31T19:58:59Z2009-09-01T19:30:36Z
<p>I'm trying to validate user input, which is just comma separated numbers. I'd like to do this with RegEx, but can't come up with the right expression.</p>
<p>It should validate the following strings (and larger):</p>
<pre><code>1
12
123
1,234
12,345
123,456
</code></pre>
<p>and invalidate the following strings (and crazier):</p>
<pre><code>1,1
1,12
12,1
12,12
123,1
123,1
</code></pre>
<p>Any help would be greatly appreciated.</p>
<p>Here's what I've tried so far (EDIT: which don't work), along with several variants -></p>
<pre><code>^(((\d{1,3},)*\d{3})|(\d{1,3}))$
^(\d{1,3}[,])*\d{3}|\d{1,3}$
</code></pre>
http://stackoverflow.com/questions/703577/wpf-style-setter-height-and-width0WPF Style Setter * Height and WidthMasterMax13132009-04-01T00:17:31Z2009-08-21T22:52:06Z
<p>I'm trying to create a WPF application which consists of a 9x9 grid with the row and columns using different styles. What I'm hoping to do is provide a star value for the height and width of the column and row definitions. This does not appear to work in the current context. Is this even possible, and if so, how?</p>
<pre><code><Window x:Class="BaroqueChessUI.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="500" Width="500">
<Window.Resources>
<Style x:Key="LightBackground" >
<Setter Property="Control.Background" Value="Teal" />
</Style>
<Style x:Key="DarkBackground" >
<Setter Property="Control.Background" Value="Maroon" />
</Style>
<Style x:Key="FileStyle">
<Setter Property="Control.Width" Value="0.12" />
</Style>
<Style x:Key="RankStyle">
<Setter Property="Control.Height" Value="0.12" />
</Style>
<Style x:Key="FileHeadingStyle">
<Setter Property="Control.Width" Value="0.04" />
</Style>
<Style x:Key="RankHeadingStyle">
<Setter Property="Control.Height" Value="0.04" />
</Style>
</Window.Resources>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Name="rdRank" Style="{StaticResource FileHeadingStyle}" />
<RowDefinition Name="rdRank1" Style="{StaticResource FileStyle}" />
<RowDefinition Name="rdRank2" Style="{StaticResource FileStyle}" />
<RowDefinition Name="rdRank3" Style="{StaticResource FileStyle}" />
<RowDefinition Name="rdRank4" Style="{StaticResource FileStyle}" />
<RowDefinition Name="rdRank5" Style="{StaticResource FileStyle}" />
<RowDefinition Name="rdRank6" Style="{StaticResource FileStyle}" />
<RowDefinition Name="rdRank7" Style="{StaticResource FileStyle}" />
<RowDefinition Name="rdRank8" Style="{StaticResource FileStyle}" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Name="cdFile" Style="{StaticResource RankHeadingStyle}" />
<ColumnDefinition Name="cdFile2" Style="{StaticResource RankStyle}" />
<ColumnDefinition Name="cdFile3" Style="{StaticResource RankStyle}" />
<ColumnDefinition Name="cdFile4" Style="{StaticResource RankStyle}" />
<ColumnDefinition Name="cdFile5" Style="{StaticResource RankStyle}" />
<ColumnDefinition Name="cdFile6" Style="{StaticResource RankStyle}" />
<ColumnDefinition Name="cdFile7" Style="{StaticResource RankStyle}" />
<ColumnDefinition Name="cdFile8" Style="{StaticResource RankStyle}" />
</Grid.ColumnDefinitions>
</Grid>
</code></pre>
<p></p>
http://stackoverflow.com/questions/686681/url-rewrite-from-default-aspx-to2URL Rewrite from /default.aspx to /MasterMax13132009-03-26T16:59:49Z2009-08-21T13:34:08Z
<p>I'm using the URL Rewriting.NET tool with IIS 6. I've got my default page content set for default.aspx in IIS. What I'm trying to do is have /default.aspx provide a 301 redirect to the root directory (www.example.com/default.aspx -> www.example.com). I've tried turning off default documents, to no avail. </p>
<p>What I'm hoping to do is use a couple of URL Rewriting.NET rules to accomplish this goal. Any thoughts?</p>
<p>EDIT:</p>
<p>Sorry, I forgot to clarify. If I redirect from /default.aspx to / with default documents turned on (I'd like to leave them on) then I get an infinite loop of default -> / -> default</p>
http://stackoverflow.com/questions/686681/url-rewrite-from-default-aspx-to/940152#9401521Answer by MasterMax1313 for URL Rewrite from /default.aspx to /MasterMax13132009-06-02T15:16:30Z2009-08-21T13:34:08Z<p>In the end I wound up using IIS 7 with the URL Rewrite module, which allows you to do this redirect properly.</p>
<p>Edit :</p>
<p>The rule is </p>
<pre><code><rule name="Default Redirect" stopProcessing="true">
<match url="^default\.aspx$" />
<action type="Redirect" url="/" redirectType="Permanent" />
</rule>
</code></pre>
<p>you can do that with a separate rule for each folder, or you can use </p>
<pre><code><rule name="All Redirect">
<match url="^(.*\/)*default\.aspx$" />
<action type="Rewrite" url="{R:1}" />
</rule>
</code></pre>
http://stackoverflow.com/questions/1269545/what-advantages-do-constraints-provide-to-a-database2What advantages do constraints provide to a database?MasterMax13132009-08-13T01:09:36Z2009-08-20T06:47:29Z
<p>I realize this question may seem a little on the "green" side, but after the number of "enterprise" or "commercial" databases I've encountered I've begun to ask this question. What advantages to constraints provide to a database? I'm asking more about Foreign Key constraints rather than Unique constraints. Do they offer performance gains, or just data integrity?</p>
<p>I've been rather surprised at the number of relational databases without foreign keys or even without specified primary keys (just constraints on fields being not null or a unique constraint on the field).</p>
<p>Thoughts?</p>
http://stackoverflow.com/questions/1295350/objectdatasource-select-with-parameters-time-out0ObjectDataSource.Select with Parameters Time OutMasterMax13132009-08-18T17:27:31Z2009-08-18T17:27:31Z
<p>I'm using an ObjectDataSource with a 2008 ReportViewer control and Linq to CSV. The ODS has two parameters (the SQL is spelled out in an XSD file with a table adapter). The Reportviewer takes a very long time to render the output after a button is clicked to generate the report. That's my first problem. Even though it works (most of the time), the processing time worries me, and subsequent requests don't seem to be changing the results shown on the screen. The next issue is that when I go to export the ODS to CSV I'm getting a time out exception on the select method of the ODS (shown below). This works for ODS without parameters, but it seems like now that I've added parameters that it doesn't want to cooperate. I'm fresh out of ideas, any thoughts?</p>
<pre><code><asp:ObjectDataSource ID="obsGetDataAllCustomers" runat="server"
SelectMethod="GetDataAllCustomers"
TypeName="my.myAdapter.AllCustomers"
OldValuesParameterFormatString="original_{0}" >
<SelectParameters>
<asp:ControlParameter ControlID="StartDate" Name="Start" PropertyName="Text"
Type="DateTime" />
<asp:ControlParameter ControlID="EndDate" Name="_End" PropertyName="Text"
Type="DateTime" />
</SelectParameters>
</asp:ObjectDataSource>
</code></pre>
<p>After button click to view report - </p>
<pre><code>rvAllCustomers.LocalReport.Refresh()
</code></pre>
<p>Export to CSV (adding the items returned to a list which is then processed by working code) -</p>
<pre><code>For Each dr As DataRow In CType(obs.Select(), DataView).Table.Rows
l.Add(New FullOrderOutput(dr))
Next
</code></pre>
http://stackoverflow.com/questions/1228137/what-is-a-tool-for-web-page-comparison3What is a Tool for Web Page Comparison?MasterMax13132009-08-04T15:20:44Z2009-08-06T19:40:31Z
<p>Given the release of Microsoft Expression's Web 3 SuperPreview (very nice tool BTW), are there any tools that will compare two web addresses against each other? As in a way to compare dev to stage or something like that? Something with an overlay would be very nice.</p>
http://stackoverflow.com/questions/1207922/how-to-find-which-unique-table-index-a-sql-full-text-index-uses1How to Find Which Unique Table Index a SQL Full Text Index UsesMasterMax13132009-07-30T16:58:35Z2009-07-30T17:12:54Z
<p>How do you discover the name of the unique table index a full text index references? SQL to generate the response would be most useful, but GUI (SSMS) solution will work too.</p>
http://stackoverflow.com/questions/1189300/hide-column-of-table-with-codebehind1hide column of table with codebehindMasterMax13132009-07-27T16:48:33Z2009-07-27T17:24:11Z
<p>I have a (html)table (sample layout below) that I'd like to hide the last two columns under certain conditions, using the C# codebehind. I'd prefer not to do this by shrinking the width of the columns to 0, though I'm not ruling it out. There aren't any CSS classes really supplied to most of the rows and none of the columns. I've tried using a colgroup to set the display to none as well as the visibility to hidden on the colgroup, but with no luck.</p>
<pre><code>_____________
|__|__|__|__|
|__|__|__|__|
|__|__|__|__|
</code></pre>
<p>to </p>
<pre><code>_______
|__|__|
|__|__|
|__|__|
</code></pre>
<p>Any thoughts?</p>
http://stackoverflow.com/questions/1177533/php-web-service-with-soap1PHP Web Service with SOAPMasterMax13132009-07-24T13:10:01Z2009-07-24T13:16:09Z
<p>I realize it's possible to create a PHP Web Service using SOAP, however, are there classes within PHP that make this easier than hand creating the SOAP messages?</p>
<p>Also, how well does this interop with ASP.NET?</p>
http://stackoverflow.com/questions/1167918/textbox-formatting0Textbox FormattingMasterMax13132009-07-22T20:08:15Z2009-07-22T23:10:47Z
<p>Are there libraries that would provide for formatting the content of a text box (or richtextbox) based on the content, assuming the content conforms to a pattern (in essence syntax highlighting)? It would be nice if this were possible in both the web world as well as winform, though I'd prefer winform (or WPF for that matter).</p>
http://stackoverflow.com/questions/715630/xml-deserialization-permissions-error0XML Deserialization Permissions ErrorMasterMax13132009-04-03T20:33:14Z2009-07-22T03:31:18Z
<p>I'm trying to use VS 2008 t publish a website to a virtual on my computer. The website runs just fine in VS2008 while debugging, but when I publish it, I'm getting the following error.</p>
<blockquote>
<p>Access to the path 'C:\dummy.xml' is
denied. Description: An unhandled
exception occurred during the
execution of the current web request.
Please review the stack trace for more
information about the error and where
it originated in the code. </p>
<p>Exception Details:
System.UnauthorizedAccessException:
Access to the path 'C:\dummy.xml' is
denied. </p>
<p>ASP.NET is not authorized to access
the requested resource. Consider
granting access rights to the resource
to the ASP.NET request identity.
ASP.NET has a base process identity
(typically {MACHINE}\ASPNET on IIS 5
or Network Service on IIS 6) that is
used if the application is not
impersonating. If the application is
impersonating via , the identity
will be the anonymous user (typically
IUSR_MACHINENAME) or the authenticated
request user. </p>
<p>To grant ASP.NET access to a file,
right-click the file in Explorer,
choose "Properties" and select the
Security tab. Click "Add" to add the
appropriate user or group. Highlight
the ASP.NET account, and check the
boxes for the desired access.</p>
</blockquote>
<p>I'm deserializing an XML file into a class built up by xsd.exe. The file and directory have the same permissions, and I can get to the xml file from a web browser. The service account being used to run / access the website (directory security settings in IIS) has full control permissions on the folder and the xml file.</p>
<p>I'm running Server 2003 R2 with IIS 6. </p>
<p>Any thoughts on how to correct this error?</p>
http://stackoverflow.com/questions/820396/microsoft-asp-net-reportviewer-parser-error0Microsoft ASP.NET ReportViewer Parser ErrorMasterMax13132009-05-04T14:41:04Z2009-07-10T19:45:20Z
<p>I've been using a MS ReportViewer component in a website for a while now, but recently I've been getting the error shown below. </p>
<blockquote>
<p>Parser Error Message: The base class
includes the field 'xyz', but its
type
(Microsoft.Reporting.WebForms.ReportViewer)
is not compatible with the type of
control
(Microsoft.Reporting.WebForms.ReportViewer).</p>
</blockquote>
<pre><code><rsweb:ReportViewer ID="xyz" runat="server" Width="100%" Font-Names="Verdana" Font-Size="8pt" Height="400px" ProcessingMode="Local" ShowExportControls="false">
</code></pre>
<p>Now, I get this error in Visual Studio as well as in production. I have the ReportViewer Redistributable installed in production.</p>
<p>Am I somehow missing a reference in my project, or something? </p>
http://stackoverflow.com/questions/1084482/how-to-find-out-what-processes-have-folder-or-file-locked2How to find out what processes have folder or file locked?MasterMax13132009-07-05T17:34:50Z2009-07-05T19:04:44Z
<p>How do you go about querying running processes to find out what folders or files they have locked? (i.e. you go to eject a drive and you're told that it can't be ejected because it's in use)</p>
<p>I'd like to either get an "off the shelf" download, or write a .NET 3.5 app to do this (primarily a Windows question).</p>
http://stackoverflow.com/questions/1081057/sqlserver-why-avoid-table-valued-user-defined-functions/1081116#1081116-1Answer by MasterMax1313 for SQLServer: Why avoid Table-Valued User Defined Functions?MasterMax13132009-07-03T23:18:58Z2009-07-03T23:18:58Z<p>Is there some reason you don't want to use a <a href="http://www.firebirdfaq.org/faq143/" rel="nofollow">stored procedure</a> instead of a UDF?</p>
http://stackoverflow.com/questions/1061358/wpf-xml-databinding0WPF XML DataBindingMasterMax13132009-06-30T01:38:29Z2009-06-30T02:04:04Z
<p>I'm trying to do some WPF databinding, but I'm a little hung up at the moment. I have two listboxes and an XML file. The first listbox successfully binds to the XML source. However, when I try to bind to a child of the selected item from first listbox as the source for the second list box, nothing appears. The goal being something like an index or look-up (selecting one index results in finding the related items). Am I missing something here for the databinding? XAML and XML below.</p>
<p>XAML:</p>
<pre><code><Window x:Class="MyTool.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="600" Width="800">
<Window.Resources>
<XmlDataProvider x:Key="AllDeployments" XPath="Deployments" Source="Deployments.xml" />
<DataTemplate x:Key="dtDeployments">
<StackPanel FlowDirection="LeftToRight" Orientation="Horizontal">
<TextBlock Text="{Binding XPath=@Name}" />
<TextBlock Text=" - "/>
<TextBlock Text="{Binding XPath=@Date}" />
</StackPanel>
</DataTemplate>
<DataTemplate x:Key="dtFiles">
<TextBlock Text="{Binding XPath=File}" />
</DataTemplate>
</Window.Resources>
<Grid Name="gMain">
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition Width="2"/>
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Menu Grid.Column="0" Grid.ColumnSpan="3"></Menu>
<ListBox Grid.Column="0" Name="lbDeployment"
ItemsSource="{Binding Source={StaticResource AllDeployments}, XPath=Deployment}"
ItemTemplate="{StaticResource dtDeployments}"></ListBox>
<GridSplitter Grid.Column="1"></GridSplitter>
<StackPanel Grid.Column="2">
<ListBox Name="lbFiles"
ItemsSource="{Binding Mode=TwoWay, ElementName=lbDeployments, Path=SelectedItem.InnerText, UpdateSourceTrigger=PropertyChanged}"
ItemTemplate="{StaticResource dtFiles}"
Height="400"></ListBox>
</StackPanel>
</Grid>
</Window>
</code></pre>
<p>XML:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<Deployments MostRecentDate="12/31/2009 8:41:13 PM">
<Filters>
<Filter>.cs</Filter>
<Filter>.csproj</Filter>
</Filters>
<Deployment Name="First Deployment" ID="1" Date="6/29/2009 8:41:13 PM">
<File>file1.cs</File>
<File>file2.cs</File>
</Deployment>
<Deployment Name="First Deployment" ID="1" Date="6/29/2009 8:41:13 PM">
<File>file1.cs</File>
<File>file2.cs</File>
</Deployment>
<Deployment Name="First Deployment" ID="1" Date="6/29/2009 8:41:13 PM">
<File>file1.cs</File>
<File>file2.cs</File>
</Deployment>
<Deployment Name="First Deployment" ID="1" Date="6/29/2009 8:41:13 PM">
<File>file1.cs</File>
<File>file2.cs</File>
</Deployment>
<Deployment Name="First Deployment" ID="1" Date="6/29/2009 8:41:13 PM">
<File>file1.cs</File>
<File>file2.cs</File>
</Deployment>
</Deployments>
</code></pre>
http://stackoverflow.com/questions/1511626/entity-framework-include-with-where-with-3-tables/1512538#1512538Comment by MasterMax1313 on Entity Framework Include With Where With 3 TablesMasterMax13132009-10-05T12:19:42Z2009-10-05T12:19:42ZIf anyone has the Query Builder syntax that works with the first LINQ query here, that would be very helpful. I'm just trying to get a feel for the difference between the two.http://stackoverflow.com/questions/1511626/entity-framework-include-with-where-with-3-tables/1512538#1512538Comment by MasterMax1313 on Entity Framework Include With Where With 3 TablesMasterMax13132009-10-05T12:07:25Z2009-10-05T12:07:25Zthis helps a ton, thanks!http://stackoverflow.com/questions/1505889/warning-sharepoint-causes-sleepiness-dont-use-while-drivingComment by MasterMax1313 on Warning: Sharepoint causes sleepiness, don't use while driving!MasterMax13132009-10-01T19:14:09Z2009-10-01T19:14:09Zor on meta.stackoverflowhttp://stackoverflow.com/questions/1505889/warning-sharepoint-causes-sleepiness-dont-use-while-drivingComment by MasterMax1313 on Warning: Sharepoint causes sleepiness, don't use while driving!MasterMax13132009-10-01T19:13:39Z2009-10-01T19:13:39Zcommunity wiki?http://stackoverflow.com/questions/1400044/detecting-whether-or-not-file-has-been-served-to-the-browser-kinda/1400104#1400104Comment by MasterMax1313 on Detecting whether or not file has been served to the browser?..kinda..MasterMax13132009-09-10T00:43:30Z2009-09-10T00:43:30Zhide it after the window.location i would imagine. http://stackoverflow.com/questions/1373410/sql-2008-report-manager-not-accessible/1373470#1373470Comment by MasterMax1313 on SQL 2008 report manager not accessibleMasterMax13132009-09-03T18:25:32Z2009-09-03T18:25:32ZI actually don't think there's anything in there for SSRS 2008 for remote connections. I took a look after I posted that and I don't think that it's an option there (I thought it was in 2005, though I could be wrong). I may be getting that confused with SQL Surface Area Configuration (2005).http://stackoverflow.com/questions/1373410/sql-2008-report-manager-not-accessible/1373615#1373615Comment by MasterMax1313 on SQL 2008 report manager not accessibleMasterMax13132009-09-03T18:23:06Z2009-09-03T18:23:06ZPossibly because it wasn't running when you were logged out (if it was running under your account). If it isn't running under a service account, it may not be running at all except when that account is logged in, as opposed to a service running at all times.http://stackoverflow.com/questions/1364156/srs-reports-url-parameters-multiple-values/1364326#1364326Comment by MasterMax1313 on SRS Reports: URL Parameters, Multiple ValuesMasterMax13132009-09-02T12:17:00Z2009-09-02T12:17:00ZIf you've got your SQL stored in the report, you don't have to worry about that. If you've got it in a Stored Procedure, then SSRS passes in the multi-value parameter in as a comma delimited string, which you then have to parse out or convert into a table. <a href="http://msdn.microsoft.com/en-us/library/aa337396%28SQL.90%29.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/1364319/ssms-and-sqlcmd-displays-only-the-first-8000-characters/1364329#1364329Comment by MasterMax1313 on SSMS and SQLCMD displays only the first 8000 charactersMasterMax13132009-09-01T20:01:32Z2009-09-01T20:01:32Zmy appologies on the poorlink, see here <a href="http://doc.ddart.net/mssql/sql70/da-db_1.htm" rel="nofollow">doc.ddart.net/mssql/sql70/da-db_1.htm</a> for a full layout. Also, that's storage size, not max characters.http://stackoverflow.com/questions/168610/can-you-get-a-windows-ad-username-in-php/168626#168626Comment by MasterMax1313 on Can you get a Windows (AD) username in PHP?MasterMax13132009-08-25T15:15:50Z2009-08-25T15:15:50Zonly IE passes your credentials through, other browsers just prompt, in which case you just need to supply your domain credentials (domain\username and password).http://stackoverflow.com/questions/686681/url-rewrite-from-default-aspx-to/940152#940152Comment by MasterMax1313 on URL Rewrite from /default.aspx to /MasterMax13132009-08-21T13:34:24Z2009-08-21T13:34:24ZI've updated the answer with some codehttp://stackoverflow.com/questions/101797/visual-studio-2008-multiple-monitors-find-window-placement-problemComment by MasterMax1313 on Visual Studio 2008, Multiple Monitors, "find" window placement problemMasterMax13132009-08-19T14:14:49Z2009-08-19T14:14:49Zwas there ever a follow up to this, any suggestions, I'm experiencing a similar issuehttp://stackoverflow.com/questions/1269545/what-advantages-do-constraints-provide-to-a-database/1269548#1269548Comment by MasterMax1313 on What advantages do constraints provide to a database?MasterMax13132009-08-13T15:28:41Z2009-08-13T15:28:41ZI agree that FKs are imperative to a database, I'm trying to come up with additional reasons to justify a re-architecture of an existing system (data integrity is unfortunately not always enough to justify that sort of thing for decision makers).http://stackoverflow.com/questions/1269545/what-advantages-do-constraints-provide-to-a-database/1271457#1271457Comment by MasterMax1313 on What advantages do constraints provide to a database?MasterMax13132009-08-13T13:41:29Z2009-08-13T13:41:29ZThis is the type of information I was after.http://stackoverflow.com/questions/1269545/what-advantages-do-constraints-provide-to-a-database/1269548#1269548Comment by MasterMax1313 on What advantages do constraints provide to a database?MasterMax13132009-08-13T01:35:02Z2009-08-13T01:35:02ZI realize that it is a huge advantage, but that's the typical acknowledgment and advantage recognition. I'm wondering if there are also performance gains to be realized with that as well.