User Dave Turvey - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T07:20:03Z http://stackoverflow.com/feeds/user/18966 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/340257/embed-google-map-in-wpf-control 0 embed google map in wpf control Dave Turvey 2008-12-04T11:22:12Z 2009-11-29T19:43:49Z <p>Hi,</p> <p>I am trying to create a wpf control that will display a map image using google maps. I want to be able to centre the map on a longitude and latitude specified by the application. Ideally, the control will then allow the user to move a map marker and store the latitude/longitude of the marker in the application.</p> <p>The only way I can think of doing this is to use a WebBrowser control and create a HTML string at runtime that shows a map of the desired location. This seems like an awkward solution and won't allow me to easily retrieve the marker location. Does anyone know of a better way to accomplish this? </p> http://stackoverflow.com/questions/1717279/wpf-mvvm-user-control-binding-issues/1741262#1741262 0 Answer by Dave Turvey for WPF MVVM User Control binding issues Dave Turvey 2009-11-16T10:18:01Z 2009-11-17T15:54:40Z <p>You could try initialising the array when you initialise FrameworkPropertyMetaData on the dependency property.</p> <pre><code> new FrameworkPropertyMetadata(new int [256], FrameworkPropertyMetadataOptions.AffectsRender, new PropertyChangedCallback(ViewProperty_Changed)) </code></pre> <p>I think that the program might be hitting a null reference exception before it manages to bind the dependency property to the viewmodel property.</p> <p><hr></p> <p>Ok I've had a look at your example project and think i have a solution.</p> <p>change the <code>int[]</code> in the viewmodel to a <code>List&lt;int&gt;</code>. I'm not sure why this works. I hope there is no technical reason that <code>list&lt;int&gt;</code> is not suitable for you.</p> <p>Here is what I have changed in the solution</p> <p>in the viewmodel</p> <pre><code>public List&lt;int&gt; CustomData { get { return new List&lt;int&gt;(){0,1,2,3}; } set { } } </code></pre> <p>In the arraycontrol codebehind</p> <pre><code>public static readonly DependencyProperty DataProperty = DependencyProperty.Register("Data", typeof(List&lt;int&gt;), typeof(ArrayControl), new FrameworkPropertyMetadata(new List&lt;int&gt;())); public List&lt;int&gt; Data { get { return (List&lt;int&gt;)GetValue(DataProperty); } set { SetValue(DataProperty, value); } } </code></pre> <p>In arraycontrol.xaml. Just added listbox to show data binding working</p> <pre><code>&lt;UserControl x:Class="UserControlWithArray.Controls.ArrayControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Height="300" Width="300"&gt; &lt;Grid&gt; &lt;TextBlock x:Name="MessageTextBlock" Text="ArrayControl"/&gt; &lt;ListBox ItemsSource="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type UserControl}}, Path=Data}"/&gt; &lt;/Grid&gt; &lt;/UserControl&gt; </code></pre> http://stackoverflow.com/questions/1587900/non-programming-training-courses -1 Non-programming training courses Dave Turvey 2009-10-19T10:13:25Z 2009-10-19T10:21:41Z <p>Hi,</p> <p>I have possibly the best problem in the world. I have about £1600 left in a training budget and I need to find something to spend it on. I can spend it on anything that could be considered training. Books, courses, conferences etc</p> <p>I would like to find a course that would benifit a software developer but is not about learning a specific programming technology.</p> <p>I don't really want to spend it on a technical training course. These topics are usually best learned with a good book and some trial and error. I have also already been on a general business/management training course and a PRINCE2 project management course.</p> <p>I am currently working on a project on my own so am responsible for communicating with the client, requirements gathering and the project management etc, as well as the coding. </p> <p>What training have you found useful outside the usual technical stuff? Has anyone done any business analysis courses? what were they like?</p> <p>Are there any courses on some of the practicalities of working with software eg, automated test and deployment strategies, handling technical support. </p> <p>I would prefer a course in the UK but I can travel if necessary.</p> <p>Thanks</p> http://stackoverflow.com/questions/585370/step-express-tools-for-net 0 STEP/EXPRESS tools for .NET Dave Turvey 2009-02-25T09:50:24Z 2009-10-07T15:26:30Z <p>Hi,</p> <p>Has anyone had any experience with using the <a href="http://en.wikipedia.org/wiki/Standard%5Ffor%5Fthe%5FExchange%5Fof%5FProduct%5Fmodel%5Fdata/" rel="nofollow" title="STEP">STEP</a> and <a href="http://en.wikipedia.org/wiki/EXPRESS%5F%28data%5Fmodeling%5Flanguage%29/" rel="nofollow" title="EXPRESS">EXPRESS</a> formats in a .Net environment?</p> <p>I am looking for a tool that will generate a c# class structure based on an EXPRESS schema. I would also like the tool to create a parser/file generator for importing and exporting to STEP-files.</p> <p>Does anyone know of a tool that does this? Any tools that will bring me closer to my own implementation would also be useful.</p> <p>Thanks</p> http://stackoverflow.com/questions/377841/what-should-the-converter-parameter-be-for-this-binding 0 What should the converter parameter be for this binding Dave Turvey 2008-12-18T13:29:32Z 2009-08-29T19:00:02Z <p>I am trying to implement a wpf user control that binds a text box to a list of doubles using a converter. How can i set the instance of user control to be the converter parameter?</p> <p>the code for the control is shown below</p> <p>Thanks </p> <pre><code>&lt;UserControl x:Class="BaySizeControl.BaySizeTextBox" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:BaySizeControl" &gt; &lt;UserControl.Resources&gt; &lt;local:BayListtoStringConverter x:Key="BaySizeConverter"/&gt; &lt;/UserControl.Resources&gt; &lt;Grid&gt; &lt;TextBox Name="Textbox_baysizes" Text="{Binding RelativeSource={RelativeSource self}, Path=Parent.Parent.BaySizeItemsSource, Converter={StaticResource BaySizeConverter}}" /&gt; &lt;/Grid&gt; &lt;/UserControl&gt; </code></pre> http://stackoverflow.com/questions/657636/do-you-find-that-corporate-buzzwords-or-heavy-jargon-gets-in-the-way-of-software/1156304#1156304 1 Answer by Dave Turvey for Do you find that corporate buzzwords or heavy jargon gets in the way of software project communication? Dave Turvey 2009-07-20T22:26:29Z 2009-07-20T22:26:29Z <p>In general I think that buzzwords are good when used for encapsulating ideas and concepts. it simplifies communication between people who understand the words. However, I draw the line when people use a buzzword when a perfectly normal word would do. I know someone that will say they were "On an Audio" when they mean phone calls or say "dialogging" instead of talking. It makes me want to hit them. Hard! </p> http://stackoverflow.com/questions/972533/as-a-technical-professional-how-important-is-it-to-learn-economics-and-marketing/972758#972758 1 Answer by Dave Turvey for As a technical professional, how important is it to learn economics and marketing? Dave Turvey 2009-06-09T22:11:45Z 2009-06-09T22:11:45Z <p>I think a general knowledge of business principles is useful as a programmer. Most projects are undertaken to deliver business benefits. To fully understand the requirements of the project, you need to understand how requirements translate into cash for the company.</p> <p>If your doing any sort of project management using a methodology like Scrum, you need to be able to identify the business case for each feature so development tasks can be prioritised.</p> <p>If your a co-founder of a company, it is essential that you have at least a basic understanding of all aspects of your business. Even if your co-founder is doing most of the heavy lifting when it comes to sales and finance etc, you should understand the basis for his decisions. Your co-founder should also the basics of programming so that he can appreciate the time &amp; effort required to deliver certain features.</p> http://stackoverflow.com/questions/321048/how-to-share-an-objectdataprovider-in-wpf 0 how to share an objectdataprovider in wpf Dave Turvey 2008-11-26T15:14:13Z 2009-05-20T09:00:01Z <p>I am trying to share an ObjectDataProvider resource between my main application and a user control. I define the odp in a separate resource dictionary file that is included in the app and the user control.</p> <pre><code>&lt;ObjectDataProvider x:Key="AsymmetricFrameHolder" ObjectType="{x:Type data:DataFrameAsymmetric}"/&gt; </code></pre> <p>I then try to access this in the main app as follows</p> <pre><code>ObjectDataProvider odp = (ObjectDataProvider)Resources["AsymmetricFrameHolder"]; return (DataFrameAsymmetric)odp.ObjectInstance; </code></pre> <p>and bind to it in the user control with</p> <pre><code>&lt;Grid Name="grid" Height="Auto" Width="Auto" DataContext="{StaticResource AsymmetricFrameHolder}"&gt; </code></pre> <p>then</p> <pre><code>&lt;TextBox Name="TextBox_Length" Grid.Row="0" Grid.Column="1" Text="{Binding Path=Length }"/&gt; </code></pre> <p>This creates 2 instances of DataFrameAsymmetric. One in the main app and one in the user control. How can I set the program so that a single shared instance is created?</p> http://stackoverflow.com/questions/799068/what-should-i-know-about-udp-programming/799188#799188 1 Answer by Dave Turvey for What should i know about UDP programming? Dave Turvey 2009-04-28T18:09:23Z 2009-04-29T19:56:18Z <p>In addition to don.neufeld's recommendation to use TCP.</p> <p>For most applications TCP is easier to implement. If you need to maintain packet boundaries in a TCP stream, a good way is to transmit a two byte header before the data to delimit the messages. The header should contain the message length. At the receiving end just read two bytes and evaluate the value. Then just wait until you have received that many bytes. You then have a complete message and are ready to receive the next 2-byte header. </p> <p>This gives you some of the benefit of UDP without the hassle of lost data, out-of-order packet arrival etc.</p> http://stackoverflow.com/questions/36014/why-is-net-exception-not-caught-by-try-catch-block/630024#630024 1 Answer by Dave Turvey for Why is .NET exception not caught by try/catch block? Dave Turvey 2009-03-10T12:57:13Z 2009-03-10T12:57:13Z <p>Steve Steiner is correct that the exception is originating in the antlr library, passing through the mTokens() method and being caught in the antlr library. The problem is that this method is auto-generated by antlr. Therefore, any changes to handle the exception in mTokens() will be overwritten when your generate your parser/lexer classes. </p> <p>By default, antlr will log errors and try to recover parsing. You can override this so that the parser.prog() will throw an exception whenever an error is encountered. From your example code i think this is the behaviour you were expecting.</p> <p>Add this code to your grammer (.g) file. You will also need to turn off "Enable Just My Code" in the debugging menu.</p> <pre><code>@members { public override Object RecoverFromMismatchedSet(IIntStream input,RecognitionException e, BitSet follow) { throw e; } } @rulecatch { catch (RecognitionException e) { throw e; } } </code></pre> <p>This is my attempt at a C# version of the example given in the "Exiting the recogniser on first error" chapter of the "Definitive ANTLR Reference" book.</p> <p>Hope this is what you were looking for.</p> http://stackoverflow.com/questions/240013/cross-referencing-across-multiple-databases 3 Cross-referencing across multiple databases Dave Turvey 2008-10-27T14:13:25Z 2009-03-10T10:06:12Z <p>I have two databases, one is an MS Access file, the other is a SQL Server database. I need to create a SELECT command that filters data from the SQL Server database based on the data in the Access database. What is the best way to accomplish this with ADO.NET?</p> <p>Can I pull the required data from each database into two new tables. Put these in a single Dataset. Then perform another SELECT command on the Dataset to combine the data?</p> <p>Additional Information: The Access database is not permanent. The Access file to use is set at runtime by the user.</p> <p>Here's a bit of background information to explain why there are two databases. My company uses a CAD program to design buildings. The program stores materials used in the CAD model in an Access database. There is one file for each model. I am writing a program that will generate costing information for each model. This is based on current material prices stored in a SQL Server database. </p> <p><hr /></p> <p><strong>My Solution</strong></p> <p>I ended up just importing the data in the access db into a temporary table in the SQL server db. Performing all the necessary processing then removing the temporary table. It wasn't a pretty solution but it worked.</p> http://stackoverflow.com/questions/561729/can-the-diamond-problem-be-really-solved/561803#561803 0 Answer by Dave Turvey for Can the Diamond Problem be really solved? Dave Turvey 2009-02-18T16:20:58Z 2009-02-18T16:20:58Z <p>I don't think that preventing concrete multiple inheritance is moving the problem from the compiler to the programmer. In the example you gave it would still be necessary for the programmer to specify to the compiler which implementation to use. There is no way the compiler could guess which is correct.</p> <p>For your amphibian class, you could add a method to determine if the vehicle is on water or land and use this decide on the move method to use. This will preserve the parameterless interface.</p> <pre><code>move() { if (this.isOnLand()) { this.moveLikeLandVehicle(); } else { this.moveLikeWaterVehicle(); } } </code></pre> http://stackoverflow.com/questions/558703/readings-tools-and-libraries-for-low-level-network-related-softwares-in-c/558823#558823 0 Answer by Dave Turvey for Readings, tools and libraries for low-level, network related, softwares in C Dave Turvey 2009-02-17T21:33:09Z 2009-02-17T21:33:09Z <p>Not exactly C specific but packet sniffers like Wireshark can be really useful for testing &amp; debugging network related programs.</p> http://stackoverflow.com/questions/368624/source-control-when-away-from-office 2 source control when away from office Dave Turvey 2008-12-15T15:02:47Z 2009-01-05T09:49:39Z <p>I sometimes code when i'm away from the office. I would like to continue to use the benifits of source control when not connected to the company network.</p> <p>My ideal system would allow me to checkin revisions to a repository on my laptop that would then sync with our main SVN repository when I connect to the company network. when syncing with the main repository it would be good if the individual check-ins and and comments could be maintained.</p> <p>I will not always have an internet connection so VPN is not a great solution.</p> <p>It may be possible to change the configuration of the SVN server if necessary but I would prefer not to.</p> <p>Does anyone know of any tools that will help me accomplish this?</p> <p>Thanks </p> http://stackoverflow.com/questions/379405/how-important-is-diversity-in-a-team-of-programmers/379647#379647 0 Answer by Dave Turvey for How important is diversity in a team of programmers? Dave Turvey 2008-12-18T23:08:50Z 2008-12-18T23:08:50Z <p>I recently read a book about team working that had some interesting ideas about team diversity.</p> <p>One of the points it made was the diverse teams, both in terms of culture and technical skills, usually require longer to gel as a team and begin working effectively. However, the quality of ideas and solutions of a diverse team are much higher than that of a team with similar members once they have gained experience working together.</p> <p>It also said that teams that mix genders tend to have better communication between members than same sex teams.</p> <p>Personality is another big factor. People are naturally predisposed to work in certain ways for example some people are better at focussing on individual problems, others are good at organising things. Some people don't focus on the details but have a good overall understanding on the project. I'm sure you can imagine how these personalities can fit into a software team and what kind of role each would have.</p> <p>The book was "Effective Teamwork" by Michael A. West. It is not just about software teams but many of the case studies are from IT/Software development. The author is from a psychology background so it isn't too heavy on the business jargon. I would recommend it.</p> http://stackoverflow.com/questions/359627/master-detail-binding-using-wpf-linq-to-sql 1 master detail binding using wpf/linq to sql Dave Turvey 2008-12-11T14:57:29Z 2008-12-12T13:11:11Z <p>I'm trying to create a master detail view of a linq to sql relationship in wpf. The view will have two comboboxes. One for selecting the master item and another for selecting the detail item. </p> <p>I have achieved this using an ADO.Net Dataset containing two tables and a relationship between the tables. where the first combobox binds to the master field and the second combobox binds to the relationship.</p> <pre><code>DataContext="{Binding Source={StaticResource ContactDataSet}, Path=Company}" </code></pre> <p>Master</p> <pre><code>&lt;ComboBox Name="comboBox_CompanyName" ItemsSource="{Binding}" DisplayMemberPath="Company" IsSynchronizedWithCurrentItem="True" /&gt; </code></pre> <p>Detail, Company2Contact is the relationsip</p> <pre><code>&lt;ComboBox Name="comboBox_ContactName" ItemsSource="{Binding Path=Company2Contact}" DisplayMemberPath="Contact" IsSynchronizedWithCurrentItem="True" /&gt; </code></pre> <p>I am looking to achieve similar results using linq to SQL. If set the wpf datacontext to a the linqDataContext i can bind to the master data ok but cannot bind to the relationship.</p> <p>I have looked at datacontext object and it seems to have been setup correctly. Each company object is present and contains a collection of Contact objects.</p> <p>Does anyone know how to bind to the collection of contact objects stored in the selected company object?</p> <p>Thanks</p> http://stackoverflow.com/questions/358821/linq-to-sql-error-with-identitiy-increment-field 2 Linq to sql error with identitiy increment field Dave Turvey 2008-12-11T09:45:31Z 2008-12-11T10:30:48Z <p>I've just started to use linq to sql and have run into a problem with inserting a record with an auto incrementing field.</p> <p>I have created a new instance of a company object defined by linq. it has initialised an auto incrementing field 'companyID' to 0. InsertOnSubmit() fails with the following invalidOperationException.</p> <blockquote> <p>Incorrect autosync specification for member 'companyID'</p> </blockquote> <p>the column attribute IsDbGenerated is true for the companyID property. I am using sql server 2000.</p> <p>Edit: Auto-sync is set to OnIsert. The dataype is BigInt in TSQL, long in c#.</p> <p>Does anyone know why this error is occuring and how it can be resolved?</p> <p>thanks</p> http://stackoverflow.com/questions/358821/linq-to-sql-error-with-identitiy-increment-field/358921#358921 1 Answer by Dave Turvey for Linq to sql error with identitiy increment field Dave Turvey 2008-12-11T10:30:48Z 2008-12-11T10:30:48Z <p>Found the answer. It was to do with primary keys. In the linq designer the primary keys were setup as they should be. In the database the relevant fields were not set as primary keys. I fixed the keys in the databse and this resolved the problem.</p> http://stackoverflow.com/questions/152889/osi-model-whats-the-presentation-and-session-layer-for/231840#231840 0 Answer by Dave Turvey for OSI model - What's the presentation and session layer for? Dave Turvey 2008-10-23T22:40:55Z 2008-10-23T22:40:55Z <p>I think that presentation layer protocols define the format of data. This means protocols like XML or ASN.1. You could argue that video/audio codecs are part of the presentation layer Although this is probably heading towards the application layer.</p> <p>I can't help you with the session layer. That has always baffled me.</p> <p>To be honest, there are very vague boundaries in everything above the transport layer. This is because it is usually handled by a single software application. Also, these layers are not directly associated with transporting data from A to B. Layers 4 and below each have a very specific purpose in moving the data e.g. switching, routing, ensuring data integrity etc. This makes it easier to distinguish between these layers.</p> http://stackoverflow.com/questions/174351/1-dimensional-nesting-algorithm 1 1-dimensional nesting algorithm Dave Turvey 2008-10-06T13:47:22Z 2008-10-22T22:28:44Z <p>What is an effective algorithm for nesting 1 dimensional lengths into predefined stock lengths?</p> <p>For example, If you required steel bars in the following quantities and lengths,</p> <ul> <li>5 x 2 metres </li> <li>5 x 3 metres</li> <li>5 x 4 metres</li> </ul> <p>and these can be cut from 10 metre bars. How could you calculate the pattern for cutting the 10m bars so that the minimum number of bars are used?</p> <p>In addition, how could you incorporate multiple stock lengths into the algorithm?</p> <p><hr /></p> <p>I've had a bit of time to work on this so I'm going to write up how I solved it. I hope this will be useful to someone.I'm not sure if it is ok to answer my own question like this. A moderator can change this to an answer if that is more appropriate.</p> <p>First thanks to everyone that answered. This pointed me to the appropriate algorithm; <a href="http://en.wikipedia.org/wiki/Cutting_stock_problem" rel="nofollow">the cutting stock problem</a>.</p> <p>This post was also useful; <a href="http://stackoverflow.com/questions/22145/calculating-a-cutting-list-with-the-least-amount-of-off-cut-waste">"Calculating a cutting list with the least amount of off cut waste"</a>.</p> <p>Ok, on to the solution.</p> <p>I'll use the following terminology in my solution;</p> <ul> <li>Stock: a length of material that will be cut into smaller pieces</li> <li>Cut: a length of material that has been cut from stock. multiple cuts may be taken from the same piece of stock</li> <li>Waste: the length of material that is left in a piece of stock after all cuts have been made.</li> </ul> <p>There are three main stages to solving the problem,</p> <ol> <li>Identify all possible cut combinations</li> <li>Identify which combinations can be taken from each piece of stock</li> <li>Find the optimal mix of cut combinations.</li> </ol> <p><strong>Step 1</strong></p> <p>With N cuts, there are 2^N-1 unique cut combinations. These combinations can be represented as a binary truth table.</p> <p>Where A,B,C are unique cuts;</p> <pre><code>A B C | Combination ------------------- 0 0 0 | None 0 0 1 | C 0 1 0 | B 0 1 1 | BC 1 0 0 | A 1 0 1 | AC 1 1 0 | AB 1 1 1 | ABC </code></pre> <p>A for-loop with some bitwise operators can be used to quickly create groupings of each cut combination.</p> <p>This can get quite time consuming for large values of N.</p> <p>In my situation there were multiple instances of the same cut. This produced duplicate combinations.</p> <pre><code>A B B | Combination ------------------- 0 0 0 | None 0 0 1 | B 0 1 0 | B (same as previous) 0 1 1 | BB 1 0 0 | A 1 0 1 | AB 1 1 0 | AB (same as previous) 1 1 1 | ABB </code></pre> <p>I was able to exploit this redundancy to reduce the time to calculate the combinations. I grouped the duplicate cuts together and calculated the unique combinations of this group. I then appended this list of combinations to each unique combination in a second group to create a new group. </p> <p>For example, with cuts AABBC, the process is as follows.</p> <pre><code>A A | Combination ------------------- 0 1 | A 1 1 | AA </code></pre> <p>Call this group X.</p> <p>Append X to unique instances of B,</p> <pre><code>B B X | Combination ------------------- 0 0 1 | A | AA 0 1 0 | B 0 1 1 | BA | BAA 1 1 0 | BB 1 1 1 | BBA | BBAA </code></pre> <p>Call this group Y.</p> <p>Append Y to unique instances of C,</p> <pre><code>C Y | Combination ----------------- 0 1 | A | AA | B | BA | BAA | BB | BBA | BBAA 1 0 | C 1 1 | CA | CAA | CB | CBA | CBAA | CBB | CBBA | CBBAA </code></pre> <p>This example produces 17 unique combinations instead of 31 (2^5-1). A saving of almost half.</p> <p>Once all combinations are identified it is time to check how this fits into the stock.</p> <p><strong>Step 2</strong></p> <p>The aim of this step is to map the cut combinations identified in step 1 to the available http://stackoverflow.com/questions/224765/splitting-wpf-interface-across-multiple-xaml-files 3 Splitting WPF interface across multiple Xaml files Dave Turvey 2008-10-22T07:38:55Z 2008-10-22T08:10:48Z <p>I am trying to create a user interface using XAML. However, the file is quickly becoming very large and difficult to work with. What is the best way for splitting it across several files.</p> <p>I would like to be able to set the content of an element such as a ComboBox to an element that is defined in a different xaml file (but in the same VS project).</p> <p>thanks</p> http://stackoverflow.com/questions/215076/whats-the-best-way-to-become-familiar-with-a-large-codebase/215102#215102 0 Answer by Dave Turvey for What's the best way to become familiar with a large codebase? Dave Turvey 2008-10-18T14:28:30Z 2008-10-18T14:28:30Z <p>I find that just jumping in to code can be a a bit overwhelming. Try to read as much documentation on the design as possible. This will hopefully explain the purpose and structure of each component. Its best if an existing developer can take you through it but that isn't always possible.</p> <p>Once you are comfortable with the high level structure of the code, try to fix a bug or two. this will help you get to grips with the actual code.</p> http://stackoverflow.com/questions/174351/1-dimensional-nesting-algorithm/174426#174426 1 Answer by Dave Turvey for 1-dimensional nesting algorithm Dave Turvey 2008-10-06T14:09:59Z 2008-10-06T14:09:59Z <p>Thanks for suggesting bin packing problem plinth. This lead me to the following post, <a href="http://stackoverflow.com/questions/22145/calculating-a-cutting-list-with-the-least-amount-of-off-cut-waste#23625">Calculating a cutting list with the least amount of off cut waste</a>. This appears to cover my question well</p> http://stackoverflow.com/questions/163938/what-are-the-lengths-of-common-datatypes/163976#163976 1 Answer by Dave Turvey for What are the lengths of common datatypes? Dave Turvey 2008-10-02T18:55:15Z 2008-10-02T18:55:15Z <p>Hi,</p> <p>I think it depends on the hardware your using. on 32-bit platforms it is typically 4 bytes for both int and long. in C you can use the sizeof() operator to find out.</p> <pre><code>int intBytes; long longBytes; intBytes= sizeof(int); longBytes = sizeof(long); </code></pre> <p>I'm not sure if long becomes 8 bytes on 64-bit architectures or if it stays as 4.</p> http://stackoverflow.com/questions/186581/when-do-you-design-the-gui-first-and-the-backend-code-later-or-vice-versa/188000#188000 Comment by Dave Turvey on When do you design the GUI first and the backend code later, or vice versa? Dave Turvey 2009-11-23T11:57:54Z 2009-11-23T11:57:54Z +1 for the comment on having to redo whichever you do first. Going through that process right now. http://stackoverflow.com/questions/1717279/wpf-mvvm-user-control-binding-issues/1741262#1741262 Comment by Dave Turvey on WPF MVVM User Control binding issues Dave Turvey 2009-11-17T16:29:46Z 2009-11-17T16:29:46Z Why don't you use the ToList() and ToArray() methods to convert between them as necessary? http://stackoverflow.com/questions/1717279/wpf-mvvm-user-control-binding-issues/1741262#1741262 Comment by Dave Turvey on WPF MVVM User Control binding issues Dave Turvey 2009-11-17T14:04:57Z 2009-11-17T14:04:57Z I'f you want to send over the entire project i'll have a look. Although i'm pretty new to wpf so i'm might not get it working either. http://stackoverflow.com/questions/1717279/wpf-mvvm-user-control-binding-issues/1741262#1741262 Comment by Dave Turvey on WPF MVVM User Control binding issues Dave Turvey 2009-11-17T13:59:54Z 2009-11-17T13:59:54Z Sorry, I'm not sure which comment you mean. Have you tried replacing the null in your last code snippet with new int[256]? http://stackoverflow.com/questions/1587900/non-programming-training-courses Comment by Dave Turvey on Non-programming training courses Dave Turvey 2009-10-19T11:10:08Z 2009-10-19T11:10:08Z @andrew Thanks. That was the sort of thing I was looking for. Can I mark this as the accepted comment :) http://stackoverflow.com/questions/1587900/non-programming-training-courses Comment by Dave Turvey on Non-programming training courses Dave Turvey 2009-10-19T10:25:47Z 2009-10-19T10:25:47Z I've already got it! http://stackoverflow.com/questions/585370/step-express-tools-for-net/1532346#1532346 Comment by Dave Turvey on STEP/EXPRESS tools for .NET Dave Turvey 2009-10-08T09:10:02Z 2009-10-08T09:10:02Z Thanks. That looks like a useful tool. I'm downloading it now. http://stackoverflow.com/questions/340257/embed-google-map-in-wpf-control/345052#345052 Comment by Dave Turvey on embed google map in wpf control Dave Turvey 2009-08-27T22:03:50Z 2009-08-27T22:03:50Z from <a href="http://code.google.com/apis/maps/terms.html" rel="nofollow">code.google.com/apis/maps/terms.html</a> section 9.1 says it must not be accessible only to an internal network. The app is an internal business app so the api wouldn't be appropriate. http://stackoverflow.com/questions/749792/ratio-of-real-code-to-supporting-code/749875#749875 Comment by Dave Turvey on Ratio of real code to supporting code Dave Turvey 2009-06-17T11:15:16Z 2009-06-17T11:15:16Z Your examples don't really demonstrate what supporting code is in relation to the &quot;real code&quot;. supporting code helps to deliver a quality product but doesn't add features used by the customer. For an automobile this would be more like CAD models of the car, a crash test setup or programming for manufacturing robots. Your examples are all just advanced features. I don't need all the formatting options of Word to write a shopping list but that doesn't make them support code. http://stackoverflow.com/questions/949467/what-have-i-missed-by-not-studying-computing/949759#949759 Comment by Dave Turvey on What have I missed by not studying computing? Dave Turvey 2009-06-04T14:08:24Z 2009-06-04T14:08:24Z I think that EEE courses probably cover more networking than CS courses. I did a course that covered both EEE and CS, the EEE classes were much more in depth than the CS ones. The rest of your answer is spot on. http://stackoverflow.com/questions/901320/anti-joel-test/905606#905606 Comment by Dave Turvey on Anti-Joel Test Dave Turvey 2009-05-27T14:41:18Z 2009-05-27T14:41:18Z We have coffee but milk is a rare commodity http://stackoverflow.com/questions/137921/what-is-your-single-most-effective-interview-question/137927#137927 Comment by Dave Turvey on What is your single most effective interview question? Dave Turvey 2009-04-06T08:29:53Z 2009-04-06T08:29:53Z I like this one.Its designed to test is the candidate can understand user requirements. He asks &quot;Why are you here?&quot; but he means &quot;Why do you want this job?&quot; http://stackoverflow.com/questions/317973/wpf-dependencyproperties/318209#318209 Comment by Dave Turvey on WPF DependencyProperties Dave Turvey 2008-12-19T09:18:25Z 2008-12-19T09:18:25Z Did you ever find an answer to this? I'm having a similar problem. It seems that the binding is lost when you set the problem property. I'm not sure what the correct procedure is for updating the value this way. http://stackoverflow.com/questions/377556/best-practice-network-communication Comment by Dave Turvey on Best Practice: network communication Dave Turvey 2008-12-18T23:31:24Z 2008-12-18T23:31:24Z @S.Lott: I disagree. Data formats are a type of protocol. They would fit into the OSI model at the presentation layer. Although the term protocol usually implies rules for data exchange, the usage is still correct for defining data representation. http://stackoverflow.com/questions/377841/what-should-the-converter-parameter-be-for-this-binding/377868#377868 Comment by Dave Turvey on What should the converter parameter be for this binding Dave Turvey 2008-12-18T14:54:44Z 2008-12-18T14:54:44Z @Daniel Paull: That sounds like it might work. could you please elaborate on this? thanks