User MasterMax1313 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T07:45:00Z http://stackoverflow.com/feeds/user/72858 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1907335/filtering-using-the-join-instead-of-where 7 Filtering using the JOIN instead of WHERE MasterMax1313 2009-12-15T13:08:49Z 2009-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-varchar 1 How to change every nvarchar column to varchar? MasterMax1313 2009-12-03T19:59:45Z 2009-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-tables 1 Entity Framework Include With Where With 3 Tables MasterMax1313 2009-10-02T20:24:19Z 2009-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&lt;STATE&gt; 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-folder 0 inetpub versus any other folder MasterMax1313 2009-11-13T15:38:14Z 2009-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-inheritance 8 Enum "Inheritance" MasterMax1313 2009-04-16T19:27:07Z 2009-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-efficiency 5 Analyzing Code for Efficiency? MasterMax1313 2009-05-20T20:58:02Z 2009-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-framework 1 Using Same Stored Procedure for Both Insert and Update in Entity Framework MasterMax1313 2009-10-12T14:42:49Z 2009-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-number 1 Regex for Comma Separated Number or Just Number MasterMax1313 2009-09-24T14:32:12Z 2009-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#1411928 1 Answer by MasterMax1313 for how to make a yes/no dialog box in javascript? MasterMax1313 2009-09-11T16:17:58Z 2009-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#1400104 1 Answer by MasterMax1313 for Detecting whether or not file has been served to the browser?..kinda.. MasterMax1313 2009-09-09T14:32:49Z 2009-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 -1 Answer by MasterMax1313 for Why can't I use the Name attribute on UserControl in the same assembly? MasterMax1313 2009-09-04T16:22:29Z 2009-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#1373470 0 Answer by MasterMax1313 for SQL 2008 report manager not accessible MasterMax1313 2009-09-03T13:40:16Z 2009-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#1364329 0 Answer by MasterMax1313 for SSMS and SQLCMD displays only the first 8000 characters MasterMax1313 2009-09-01T19:53:11Z 2009-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#1364326 1 Answer by MasterMax1313 for SRS Reports: URL Parameters, Multiple Values MasterMax1313 2009-09-01T19:52:20Z 2009-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-number 4 Regex for Comma Separated Number MasterMax1313 2009-08-31T19:58:59Z 2009-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-width 0 WPF Style Setter * Height and Width MasterMax1313 2009-04-01T00:17:31Z 2009-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>&lt;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"&gt; &lt;Window.Resources&gt; &lt;Style x:Key="LightBackground" &gt; &lt;Setter Property="Control.Background" Value="Teal" /&gt; &lt;/Style&gt; &lt;Style x:Key="DarkBackground" &gt; &lt;Setter Property="Control.Background" Value="Maroon" /&gt; &lt;/Style&gt; &lt;Style x:Key="FileStyle"&gt; &lt;Setter Property="Control.Width" Value="0.12" /&gt; &lt;/Style&gt; &lt;Style x:Key="RankStyle"&gt; &lt;Setter Property="Control.Height" Value="0.12" /&gt; &lt;/Style&gt; &lt;Style x:Key="FileHeadingStyle"&gt; &lt;Setter Property="Control.Width" Value="0.04" /&gt; &lt;/Style&gt; &lt;Style x:Key="RankHeadingStyle"&gt; &lt;Setter Property="Control.Height" Value="0.04" /&gt; &lt;/Style&gt; &lt;/Window.Resources&gt; &lt;Grid&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition Name="rdRank" Style="{StaticResource FileHeadingStyle}" /&gt; &lt;RowDefinition Name="rdRank1" Style="{StaticResource FileStyle}" /&gt; &lt;RowDefinition Name="rdRank2" Style="{StaticResource FileStyle}" /&gt; &lt;RowDefinition Name="rdRank3" Style="{StaticResource FileStyle}" /&gt; &lt;RowDefinition Name="rdRank4" Style="{StaticResource FileStyle}" /&gt; &lt;RowDefinition Name="rdRank5" Style="{StaticResource FileStyle}" /&gt; &lt;RowDefinition Name="rdRank6" Style="{StaticResource FileStyle}" /&gt; &lt;RowDefinition Name="rdRank7" Style="{StaticResource FileStyle}" /&gt; &lt;RowDefinition Name="rdRank8" Style="{StaticResource FileStyle}" /&gt; &lt;/Grid.RowDefinitions&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Name="cdFile" Style="{StaticResource RankHeadingStyle}" /&gt; &lt;ColumnDefinition Name="cdFile2" Style="{StaticResource RankStyle}" /&gt; &lt;ColumnDefinition Name="cdFile3" Style="{StaticResource RankStyle}" /&gt; &lt;ColumnDefinition Name="cdFile4" Style="{StaticResource RankStyle}" /&gt; &lt;ColumnDefinition Name="cdFile5" Style="{StaticResource RankStyle}" /&gt; &lt;ColumnDefinition Name="cdFile6" Style="{StaticResource RankStyle}" /&gt; &lt;ColumnDefinition Name="cdFile7" Style="{StaticResource RankStyle}" /&gt; &lt;ColumnDefinition Name="cdFile8" Style="{StaticResource RankStyle}" /&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;/Grid&gt; </code></pre> <p></p> http://stackoverflow.com/questions/686681/url-rewrite-from-default-aspx-to 2 URL Rewrite from /default.aspx to / MasterMax1313 2009-03-26T16:59:49Z 2009-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#940152 1 Answer by MasterMax1313 for URL Rewrite from /default.aspx to / MasterMax1313 2009-06-02T15:16:30Z 2009-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>&lt;rule name="Default Redirect" stopProcessing="true"&gt; &lt;match url="^default\.aspx$" /&gt; &lt;action type="Redirect" url="/" redirectType="Permanent" /&gt; &lt;/rule&gt; </code></pre> <p>you can do that with a separate rule for each folder, or you can use </p> <pre><code>&lt;rule name="All Redirect"&gt; &lt;match url="^(.*\/)*default\.aspx$" /&gt; &lt;action type="Rewrite" url="{R:1}" /&gt; &lt;/rule&gt; </code></pre> http://stackoverflow.com/questions/1269545/what-advantages-do-constraints-provide-to-a-database 2 What advantages do constraints provide to a database? MasterMax1313 2009-08-13T01:09:36Z 2009-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-out 0 ObjectDataSource.Select with Parameters Time Out MasterMax1313 2009-08-18T17:27:31Z 2009-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>&lt;asp:ObjectDataSource ID="obsGetDataAllCustomers" runat="server" SelectMethod="GetDataAllCustomers" TypeName="my.myAdapter.AllCustomers" OldValuesParameterFormatString="original_{0}" &gt; &lt;SelectParameters&gt; &lt;asp:ControlParameter ControlID="StartDate" Name="Start" PropertyName="Text" Type="DateTime" /&gt; &lt;asp:ControlParameter ControlID="EndDate" Name="_End" PropertyName="Text" Type="DateTime" /&gt; &lt;/SelectParameters&gt; &lt;/asp:ObjectDataSource&gt; </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-comparison 3 What is a Tool for Web Page Comparison? MasterMax1313 2009-08-04T15:20:44Z 2009-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-uses 1 How to Find Which Unique Table Index a SQL Full Text Index Uses MasterMax1313 2009-07-30T16:58:35Z 2009-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-codebehind 1 hide column of table with codebehind MasterMax1313 2009-07-27T16:48:33Z 2009-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-soap 1 PHP Web Service with SOAP MasterMax1313 2009-07-24T13:10:01Z 2009-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-formatting 0 Textbox Formatting MasterMax1313 2009-07-22T20:08:15Z 2009-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-error 0 XML Deserialization Permissions Error MasterMax1313 2009-04-03T20:33:14Z 2009-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-error 0 Microsoft ASP.NET ReportViewer Parser Error MasterMax1313 2009-05-04T14:41:04Z 2009-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>&lt;rsweb:ReportViewer ID="xyz" runat="server" Width="100%" Font-Names="Verdana" Font-Size="8pt" Height="400px" ProcessingMode="Local" ShowExportControls="false"&gt; </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-locked 2 How to find out what processes have folder or file locked? MasterMax1313 2009-07-05T17:34:50Z 2009-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 -1 Answer by MasterMax1313 for SQLServer: Why avoid Table-Valued User Defined Functions? MasterMax1313 2009-07-03T23:18:58Z 2009-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-databinding 0 WPF XML DataBinding MasterMax1313 2009-06-30T01:38:29Z 2009-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>&lt;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"&gt; &lt;Window.Resources&gt; &lt;XmlDataProvider x:Key="AllDeployments" XPath="Deployments" Source="Deployments.xml" /&gt; &lt;DataTemplate x:Key="dtDeployments"&gt; &lt;StackPanel FlowDirection="LeftToRight" Orientation="Horizontal"&gt; &lt;TextBlock Text="{Binding XPath=@Name}" /&gt; &lt;TextBlock Text=" - "/&gt; &lt;TextBlock Text="{Binding XPath=@Date}" /&gt; &lt;/StackPanel&gt; &lt;/DataTemplate&gt; &lt;DataTemplate x:Key="dtFiles"&gt; &lt;TextBlock Text="{Binding XPath=File}" /&gt; &lt;/DataTemplate&gt; &lt;/Window.Resources&gt; &lt;Grid Name="gMain"&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition /&gt; &lt;ColumnDefinition Width="2"/&gt; &lt;ColumnDefinition /&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;Menu Grid.Column="0" Grid.ColumnSpan="3"&gt;&lt;/Menu&gt; &lt;ListBox Grid.Column="0" Name="lbDeployment" ItemsSource="{Binding Source={StaticResource AllDeployments}, XPath=Deployment}" ItemTemplate="{StaticResource dtDeployments}"&gt;&lt;/ListBox&gt; &lt;GridSplitter Grid.Column="1"&gt;&lt;/GridSplitter&gt; &lt;StackPanel Grid.Column="2"&gt; &lt;ListBox Name="lbFiles" ItemsSource="{Binding Mode=TwoWay, ElementName=lbDeployments, Path=SelectedItem.InnerText, UpdateSourceTrigger=PropertyChanged}" ItemTemplate="{StaticResource dtFiles}" Height="400"&gt;&lt;/ListBox&gt; &lt;/StackPanel&gt; &lt;/Grid&gt; &lt;/Window&gt; </code></pre> <p>XML:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;Deployments MostRecentDate="12/31/2009 8:41:13 PM"&gt; &lt;Filters&gt; &lt;Filter&gt;.cs&lt;/Filter&gt; &lt;Filter&gt;.csproj&lt;/Filter&gt; &lt;/Filters&gt; &lt;Deployment Name="First Deployment" ID="1" Date="6/29/2009 8:41:13 PM"&gt; &lt;File&gt;file1.cs&lt;/File&gt; &lt;File&gt;file2.cs&lt;/File&gt; &lt;/Deployment&gt; &lt;Deployment Name="First Deployment" ID="1" Date="6/29/2009 8:41:13 PM"&gt; &lt;File&gt;file1.cs&lt;/File&gt; &lt;File&gt;file2.cs&lt;/File&gt; &lt;/Deployment&gt; &lt;Deployment Name="First Deployment" ID="1" Date="6/29/2009 8:41:13 PM"&gt; &lt;File&gt;file1.cs&lt;/File&gt; &lt;File&gt;file2.cs&lt;/File&gt; &lt;/Deployment&gt; &lt;Deployment Name="First Deployment" ID="1" Date="6/29/2009 8:41:13 PM"&gt; &lt;File&gt;file1.cs&lt;/File&gt; &lt;File&gt;file2.cs&lt;/File&gt; &lt;/Deployment&gt; &lt;Deployment Name="First Deployment" ID="1" Date="6/29/2009 8:41:13 PM"&gt; &lt;File&gt;file1.cs&lt;/File&gt; &lt;File&gt;file2.cs&lt;/File&gt; &lt;/Deployment&gt; &lt;/Deployments&gt; </code></pre> http://stackoverflow.com/questions/1511626/entity-framework-include-with-where-with-3-tables/1512538#1512538 Comment by MasterMax1313 on Entity Framework Include With Where With 3 Tables MasterMax1313 2009-10-05T12:19:42Z 2009-10-05T12:19:42Z If 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#1512538 Comment by MasterMax1313 on Entity Framework Include With Where With 3 Tables MasterMax1313 2009-10-05T12:07:25Z 2009-10-05T12:07:25Z this helps a ton, thanks! http://stackoverflow.com/questions/1505889/warning-sharepoint-causes-sleepiness-dont-use-while-driving Comment by MasterMax1313 on Warning: Sharepoint causes sleepiness, don't use while driving! MasterMax1313 2009-10-01T19:14:09Z 2009-10-01T19:14:09Z or on meta.stackoverflow http://stackoverflow.com/questions/1505889/warning-sharepoint-causes-sleepiness-dont-use-while-driving Comment by MasterMax1313 on Warning: Sharepoint causes sleepiness, don't use while driving! MasterMax1313 2009-10-01T19:13:39Z 2009-10-01T19:13:39Z community wiki? http://stackoverflow.com/questions/1400044/detecting-whether-or-not-file-has-been-served-to-the-browser-kinda/1400104#1400104 Comment by MasterMax1313 on Detecting whether or not file has been served to the browser?..kinda.. MasterMax1313 2009-09-10T00:43:30Z 2009-09-10T00:43:30Z hide it after the window.location i would imagine. http://stackoverflow.com/questions/1373410/sql-2008-report-manager-not-accessible/1373470#1373470 Comment by MasterMax1313 on SQL 2008 report manager not accessible MasterMax1313 2009-09-03T18:25:32Z 2009-09-03T18:25:32Z I 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#1373615 Comment by MasterMax1313 on SQL 2008 report manager not accessible MasterMax1313 2009-09-03T18:23:06Z 2009-09-03T18:23:06Z Possibly 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#1364326 Comment by MasterMax1313 on SRS Reports: URL Parameters, Multiple Values MasterMax1313 2009-09-02T12:17:00Z 2009-09-02T12:17:00Z If 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/&hellip;</a> http://stackoverflow.com/questions/1364319/ssms-and-sqlcmd-displays-only-the-first-8000-characters/1364329#1364329 Comment by MasterMax1313 on SSMS and SQLCMD displays only the first 8000 characters MasterMax1313 2009-09-01T20:01:32Z 2009-09-01T20:01:32Z my 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#168626 Comment by MasterMax1313 on Can you get a Windows (AD) username in PHP? MasterMax1313 2009-08-25T15:15:50Z 2009-08-25T15:15:50Z only 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#940152 Comment by MasterMax1313 on URL Rewrite from /default.aspx to / MasterMax1313 2009-08-21T13:34:24Z 2009-08-21T13:34:24Z I've updated the answer with some code http://stackoverflow.com/questions/101797/visual-studio-2008-multiple-monitors-find-window-placement-problem Comment by MasterMax1313 on Visual Studio 2008, Multiple Monitors, "find" window placement problem MasterMax1313 2009-08-19T14:14:49Z 2009-08-19T14:14:49Z was there ever a follow up to this, any suggestions, I'm experiencing a similar issue http://stackoverflow.com/questions/1269545/what-advantages-do-constraints-provide-to-a-database/1269548#1269548 Comment by MasterMax1313 on What advantages do constraints provide to a database? MasterMax1313 2009-08-13T15:28:41Z 2009-08-13T15:28:41Z I 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#1271457 Comment by MasterMax1313 on What advantages do constraints provide to a database? MasterMax1313 2009-08-13T13:41:29Z 2009-08-13T13:41:29Z This is the type of information I was after. http://stackoverflow.com/questions/1269545/what-advantages-do-constraints-provide-to-a-database/1269548#1269548 Comment by MasterMax1313 on What advantages do constraints provide to a database? MasterMax1313 2009-08-13T01:35:02Z 2009-08-13T01:35:02Z I 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.