User Sam - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T22:05:52Z http://stackoverflow.com/feeds/user/7021 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/435423/can-several-wcf-services-share-a-common-baseaddress 3 Can several WCF services share a common BaseAddress? Sam 2009-01-12T13:42:48Z 2009-12-07T16:28:40Z <p>I've got an assembly containing several WCF services, each with its own contract. It all works nicely. The service config in the app.config for the service looks like this:</p> <pre><code>&lt;services&gt; &lt;service behaviorConfiguration="WcfService.AlyzaServiceBehavior" name="Sam.Alyza.WcfService.ServiceWebsites"&gt; &lt;endpoint address="" binding="netTcpBinding" contract="Sam.Alyza.WcfInterface.IServiceWebsites"&gt; &lt;identity&gt; &lt;dns value="localhost" /&gt; &lt;/identity&gt; &lt;/endpoint&gt; &lt;endpoint address="mex" binding="mexTcpBinding" contract="IMetadataExchange" /&gt; &lt;host&gt; &lt;baseAddresses&gt; &lt;add baseAddress="net.tcp://localhost:8731/Design_Time_Addresses/SamAlyza/Websites/" /&gt; &lt;/baseAddresses&gt; &lt;/host&gt; &lt;/service&gt; &lt;service behaviorConfiguration="Sam.Alyza.WcfService.LogReaderServiceBehavior" name="Sam.Alyza.WcfService.ServiceLogReader"&gt; &lt;endpoint address="" binding="netTcpBinding" contract="Sam.Alyza.WcfInterface.IServiceLogReader"&gt; &lt;identity&gt; &lt;dns value="localhost" /&gt; &lt;/identity&gt; &lt;/endpoint&gt; &lt;endpoint address="mex" binding="mexTcpBinding" contract="IMetadataExchange" /&gt; &lt;host&gt; &lt;baseAddresses&gt; &lt;add baseAddress="net.tcp://localhost:8731/Design_Time_Addresses/SamAlyza/LogReader/" /&gt; &lt;/baseAddresses&gt; &lt;/host&gt; &lt;/service&gt; &lt;service behaviorConfiguration="Sam.Alyza.WcfService.ServiceSystemverwaltungBehavior" name="Sam.Alyza.WcfService.ServiceSystemverwaltung"&gt; &lt;endpoint address="" binding="netTcpBinding" contract="Sam.Alyza.WcfInterface.IServiceSystemverwaltung"&gt; &lt;identity&gt; &lt;dns value="localhost" /&gt; &lt;/identity&gt; &lt;/endpoint&gt; &lt;endpoint address="mex" binding="mexTcpBinding" contract="IMetadataExchange" /&gt; &lt;host&gt; &lt;baseAddresses&gt; &lt;add baseAddress="net.tcp://localhost:8731/Design_Time_Addresses/SamAlyza/Systemverwaltung/" /&gt; &lt;/baseAddresses&gt; &lt;/host&gt; &lt;/service&gt; [...] &lt;/services&gt; </code></pre> <p>Since I've got a bigger project in mind, with more contracts, I'd like to have a way to share the BaseAddress between the different service contracts.<br /> If this would just be one service with different contracts and endpoints, I could set a ommon baseaddress, but how do I set a common baseaddress for more than one service?</p> <p>Of course I'd need something similar for the client.</p> http://stackoverflow.com/questions/906078/dynamics-ax-2009-client-config-file-start-path-problem 0 Dynamics AX 2009 Client config file start path problem Sam 2009-05-25T09:42:54Z 2009-12-01T22:48:42Z <p>I need to start the MS Dynamics AX 2009 client with different configurations to connect to different AOS.<br /> To achieve this, I exported the client configuration into an axc-file, which works pretty well.<br /> Now I want to share this file for all clients in our network, but it does not work on some because for some funny reason, the path to the Dynamics AX binaries are hardcoded into the client config file. So, on one computer the AX client is installed in C:\Program Files (x86)\Microsoft Dynamics AX\50\Client\Bin, on the next in C:\Program Files\Microsoft Dynamics AX\50\Client\Bin, the file does not work, since the path in the axc is different from the real path.</p> <p>How do I create an axc-file which is working on every client computer, so I can use a shared config file?</p> http://stackoverflow.com/questions/1024782/selling-software-for-windows/1818724#1818724 0 Answer by Sam for Selling Software for Windows? Sam 2009-11-30T09:20:20Z 2009-11-30T09:20:20Z <p>Probably not interesting for you, since it is targeting mobile devices, but still it might be valid for others reading this question:</p> <p>there also is the new <a href="http://marketplace.windowsphone.com" rel="nofollow">Windows Marketplace for Mobile</a>.</p> http://stackoverflow.com/questions/1797789/c-pinvoke-sndgetsoundfilelist 0 c# pinvoke SndGetSoundFileList? Sam 2009-11-25T15:41:43Z 2009-11-26T13:36:24Z <p>I'd like to call <a href="http://msdn.microsoft.com/en-us/library/bb431631.aspx" rel="nofollow">SndGetSoundFileList</a> from c#, but I got no idea how the p/invoke for this function needs to be, due to the pointer parameters.</p> <pre><code>HRESULT SndGetSoundFileList ( SND_EVENT seSoundEvent, DWORD grfLocations, SNDFILEINFO** ppSoundFiles, int* pcSoundFiles ); </code></pre> <p>I'd like to get the list as a string-array, of course.</p> <p>Can anyone help me here?</p> <p>Thanks!</p> http://stackoverflow.com/questions/156954/search-for-words-in-sql-server-index 0 Search for words in SQL Server index Sam 2008-10-01T10:10:38Z 2009-11-26T09:42:01Z <p>I need something in between a full text search and an index search:<br /> I want to search for text in one column of my table (probably there will be an index on the column, too, if that matters).</p> <p>Problem is, I want to search for words in the column, but I don't want to match parts. </p> <p>For example, my column might contain business names:<br /> <em>Mighty Muck Miller and Partners Inc.<br /> Boy &amp; Butter Breakfast company</em> </p> <p>Now if I search for "<em>Miller</em>" I want to find the first line. But if I search for "<em>iller</em>" I don't want to find it, because there is no word starting with "iller". Searching for "<em>Break</em>" should find "<em>Boy &amp; Butter Breakfast company</em>", though, since one word is starting with "<em>Break</em>".</p> <p>So if I try and use </p> <pre><code>WHERE BusinessName LIKE %Break% </code></pre> <p>it will find too many hits.</p> <p>Is there any way to Search for Words separated by whitespace <strong>or other delimiters</strong>? </p> <p>(LINQ would be best, plain SQL would do, too)</p> <p><strong>Important:</strong> Spaces are by far not the only delimiters! Slashes, colons, dots, all non-alphanumerical characters should be considered for this to work!</p> http://stackoverflow.com/questions/1795269/play-sound-during-standby-on-windows-mobile 0 Play sound during standby on windows mobile? Sam 2009-11-25T07:39:49Z 2009-11-25T07:39:49Z <p>I got an app which is started on a notify timer (which works on time, it writes into a debug log file).</p> <p>This app should play a sound, but since the device is on standby, no sound is played. </p> <p>I'd guess the sound device needs to be woken up, but how do I wake up the device, so I can play a sound?</p> http://stackoverflow.com/questions/1790586/standard-interface-to-select-an-alarm-sound-on-windows-mobile-6 0 Standard interface to select an alarm sound on windows mobile 6? Sam 2009-11-24T14:54:29Z 2009-11-24T14:54:29Z <p>I'm creating a windows mobile app, and on the settings page I want the user to be able to select an installed sound.<br> It should look and act just like every other settings dialog where a sound can be selected - is there a special API for this, or an example how to achieve this?</p> http://stackoverflow.com/questions/1782545/how-where-to-store-settings-in-windows-mobile-app 0 How/where to store settings in windows mobile app? Sam 2009-11-23T11:24:48Z 2009-11-23T14:47:14Z <p>How / where do I store settings in a windows mobile 6 application (targeting compact framework 3.5)?</p> <p>Is there some mechanism like the properties.settings for desktop?</p> http://stackoverflow.com/questions/1782468/windows-mobile-program-without-form 0 Windows mobile program without form Sam 2009-11-23T11:10:11Z 2009-11-23T14:01:40Z <p>Is there a way to have a windows mobile app without a form?</p> <p>I'm writing a small program which is intercepting SMS messages, but I don't want the program to pop up every time it receives a message (which it does right now). any way to have the sms processed in the background instead of popping up the window?</p> http://stackoverflow.com/questions/828761/error-database-in-use-when-installing-dynamics-ax-2009-team-server 0 Error "database in use" when Installing Dynamics AX 2009 Team Server. Sam 2009-05-06T09:15:01Z 2009-11-20T18:43:07Z <p>I've set up Team Foundation Server to be used as VCS for Dynamics AX 2009.</p> <p>Now I tried to install the AX 2009 Team ID Server (on the same server as TFS), and get the following error during setup, no matter what I do:</p> <blockquote> <p>Unhandled exception has occurred in your application. If you click Continue, the application will ignore this error and attempt to continue. If you click Quit, the application will close immediately.</p> <p>Cannot drop database "AXTS" because it is currently in use.</p> </blockquote> <p>The error is kind of stupid, since the AX Team Server installation created the database itself!<br /> I'd say some error did occur, and the installation is trying to drop the database (without success, since the installation itself is using it).</p> <p>Can anyone help me to get the AX Team Server installed?</p> http://stackoverflow.com/questions/1770099/how-to-play-system-signal-in-windows-mobile 0 How to play system signal in Windows Mobile? Sam 2009-11-20T12:13:58Z 2009-11-20T12:13:58Z <p>On Windows Mobile 6, I want to play a system sound, the "received sms signal", to be exact.</p> <p>Is there a way to play system sounds on windows mobile?</p> http://stackoverflow.com/questions/1769796/how-to-find-unread-sms-messages-in-windows-mobile 0 How to find unread sms messages in windows mobile Sam 2009-11-20T11:09:22Z 2009-11-20T11:28:11Z <p>I need to find if there are any unread SMS on a windows mobile 6 smartphone.</p> <p>I know about message interception, but thats not what I need: I already know if I receive an sms, but now I need to know if there is an unread sms at some later point in time (which might not be, since the user might have read the sms by then).</p> <p>My goal is to emulate a sms reminder function: if you received an sms while you where absent, it will give a reminder signal every 15 (or so) minutes, so you don't have keep looking at your phone all the time.<br> Other mobile phones already contain this functionality, but in windows mobile it is missing.</p> http://stackoverflow.com/questions/858159/examples-of-dynamics-ax-2009-programming 1 Examples of Dynamics AX 2009 programming? Sam 2009-05-13T14:06:07Z 2009-11-18T20:44:59Z <p>I'm just learning to program Dynamics AX 2009. So far I got the dev system running, I got some background about the architecture.</p> <p>Now I'm looking for some walkthrough-samples to learn more about programming in this system.</p> <p>Are there some samples available online? Can someone point me to some learning help? Maybe to some good AX-programming related blogs? </p> <p>How did you learn to program DAX9?</p> http://stackoverflow.com/questions/397556/wpf-how-to-bind-radiobuttons-to-an-enum 10 WPF: How to bind RadioButtons to an enum? Sam 2008-12-29T11:35:00Z 2009-11-09T09:30:09Z <p>I've got an enum like this:</p> <pre><code>public enum MyLovelyEnum { FirstSelection, TheOtherSelection, YetAnotherOne }; </code></pre> <p>I got a property in my DataContext:</p> <pre><code>public MyLovelyEnum VeryLovelyEnum { get; set; } </code></pre> <p>And I got three RadioButtons in my WPF client.</p> <pre><code>&lt;RadioButton Margin="3"&gt;First Selection&lt;/RadioButton&gt; &lt;RadioButton Margin="3"&gt;The Other Selection&lt;/RadioButton&gt; &lt;RadioButton Margin="3"&gt;Yet Another one&lt;/RadioButton&gt; </code></pre> <p>Now how do I bind the RadioButtons to the property for proper two-way-binding?</p> http://stackoverflow.com/questions/1471589/dynamics-ax-2009-how-to-change-customer-invoice-layout-printing 0 Dynamics AX 2009 How to change customer invoice layout/printing? Sam 2009-09-24T13:08:38Z 2009-11-06T08:02:42Z <p>I'd like to change the default customer invoice print to something else. Add an image to the head, change the layout, change the columns, well everything in fact.</p> <p>Can someone explain how to start this, or maybe point me to some tutorial or reference about this?</p> <p>So far all I found was ways to create new reports, but I'd like to change the default invoice print, not create something new.</p> http://stackoverflow.com/questions/222070/how-to-speed-up-wpf-programs 9 How to speed up WPF programs? Sam 2008-10-21T14:24:59Z 2009-11-04T10:28:52Z <p>I love programming with and for Windows Presentation Framework. Mostly I write browser-like apps using WPF and XAML.</p> <p>But what really annoys me is the slowness of WPF. A simple page with only a few controls loads fast enough, but as soon as a page is a teeny weeny bit more complex, like containing a lot of data entry fields, one or two tab controls, and stuff, it gets painful.</p> <p>Loading of such a page can take more than one second. Seconds, indeed, especially on not so fast computers (read: the customers computers) it can take ages.</p> <p>Same with changing values on the page. Everything about the WPF UI is somehow sluggy.</p> <p>This is so mean! They give me this beautiful framework, but make it so excruciatingly slow so I'll have to apologize to our customers all the time!</p> <p>My Question: </p> <ol> <li>How do you speed up WPF?</li> <li>How do you profile bottlenecks?</li> <li>How do you deal with the slowness?</li> </ol> <p>Since this seems to be an universal problem with WPF, I'm looking for general advice, useful for many situations and problems.</p> <p>Some other related questions:</p> <ul> <li><a href="http://stackoverflow.com/questions/38642/what-tools-do-you-use-for-wpf-development">What tools do you use for WPF development</a></li> <li><a href="http://stackoverflow.com/questions/189244/tools-to-develop-wpf-or-silverlight-applications">Tools to develop WPF or Silverlight applications</a></li> </ul> http://stackoverflow.com/questions/1644108/win7-out-of-memory-exception-on-image-fromfile 0 Win7: Out of Memory exception on Image.FromFile Sam 2009-10-29T14:24:57Z 2009-10-29T18:45:45Z <p>The following piece of source does run nicely with Windows up until vista. With Windows 7 (and the new .net 3.5) it always produces an out of memory exception, when I try to load a raw image file from my Nikon D90.<br /> Some might say "loading nef's is not supported", but it did run nicely up until vista, only Windows 7 broke it, so I'd disagree.</p> <pre><code>using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace QuickImageLoader { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { DialogResult res = openFileDialog1.ShowDialog(); if (res == DialogResult.OK) { pictureBox1.Image = Image.FromFile(openFileDialog1.FileName); // crash happens pictureBox1.Refresh(); } } } } </code></pre> <p><a href="http://b-soft.de/media/CrashMe.nef" rel="nofollow">Download a sample nef file to reproduce error.</a></p> <p>Is this a bug in Windows 7? In .net 3.5? Or is it something that should have never worked with XP/Vista?</p> <p>[Update] Since a few people neither know nor read my introduction above: loading the nef like this does work on XP/Vista <strong>without installing the Nikon Raw Codec</strong>. And installing the codec does not solve the problem (folks, it got nothing to do with the codec <em>sigh</em>).</p> http://stackoverflow.com/questions/1566831/ms-dynamics-ax-2009-how-to-copy-install-a-self-programmed-extension 0 MS Dynamics AX 2009 - how to copy/install a self programmed extension? Sam 2009-10-14T14:53:41Z 2009-10-14T14:53:41Z <p>So, I've started with programming Microsoft Dynamics AX 2009, created a little own sample app in my dev-System, and now I want to install this on my test-system, which is running on some other comp.</p> <p>My problem: I got no idea how to create an installer, or even how to install my AX extension by hand. No clue at all.</p> <p>So, how would I install my self programmed AX extension by hand, and how create an installer for it?</p> http://stackoverflow.com/questions/1476075/dynamics-ax-2009-report-labelposition-above-does-not-work 0 Dynamics AX 2009 Report: LabelPosition above does not work? Sam 2009-09-25T08:25:45Z 2009-10-13T09:26:48Z <p>I'm just in the process of changing the SalesInvoice Report. One thing I'm trying to do is show the label of some items not left of the item value but above it instead.</p> <p>Seems easy enough: just change the LabelPosition (for example from CustInvoiceJour_InvoiceId) setting from "left" to "above" and voila: the label has vanished. It is just shown nowhere at all.<br /> Strange. I would have expected the label to show up, well, above the content. Not to vanish.</p> <p>Am I missing something (there is no label height to set), or is this functionality broken?</p> http://stackoverflow.com/questions/1509676/developing-arcgis-9-extension-what-do-i-need-to-get-started 0 Developing ArcGIS 9 extension - what do I need to get started? Sam 2009-10-02T13:58:12Z 2009-10-06T15:41:27Z <p>I got the 'honor' to port an existing ArcGis 3.x Avenue script to ArcGIS 9.x ArcObjects.</p> <p>What do I need to get started? (So far I don't even have a copy of ArcGIS)</p> <p>From <a href="http://edn.esri.com/" rel="nofollow">ESRI's developer website</a> it seems I need to buy an EDN annual subscription for $1,500 - does this contain a developers copy of ArcGIS, or will I have to buy that, too?</p> <p>The two Avenue scripts I need to port are rather small: one selects shapes for some searchterms it gets via OLE/DDE, one sends the selected shapes to another OLE/DDE application.<br /> As far as I understand ArcObjects I will probably drop OLE/DDE and just call the appropriate objects via COM.</p> http://stackoverflow.com/questions/451748/wpf-m-v-vm-get-selected-items-from-a-listcollectionview 2 WPF M-V-VM: Get selected items from a ListCollectionView? Sam 2009-01-16T20:00:09Z 2009-10-06T13:33:48Z <p>I've got a WPF app using the Model-View-ViewModel pattern.<br /> In my ViewModel I've got a ListCollectionView to keep a list of items.<br /> This ListCollectionView is bound to a ListBox in my View. </p> <pre><code>&lt;ListBox Grid.Row="1" ItemsSource="{Binding Useragents}" SelectionMode="Multiple"/&gt; </code></pre> <p>The ListBox has SelectionMode=Multiple, so you can select more items at one time. Now the ViewModel needs to know which items has been selected.</p> <p>The problem is: in the View-Model-ViewModel pattern the ViewModel has no access to the View, so I can't just ask the ListBox which items has been selected. All I have is the ListCollectionView, but I can't find a way to find which items has been selected in there.</p> <p>So how do I find which items has been selected in the ListBox? Or a trick to achieve this (maybe bind something to a Boolean 'IsSelected' in my items? But what? How?)</p> <p>Maybe someone who is using this pattern, too, can help me here?</p> http://stackoverflow.com/questions/138313/how-to-extract-img-src-title-and-alt-from-html-using-php 3 How to extract img src, title and alt from html using php? Sam 2008-09-26T08:33:05Z 2009-10-06T08:55:51Z <p>I would like to create a page where all images which reside on my website are listed with title and alternative representation.</p> <p>I already wrote me a little program to find and load all html files, but now I am stuck at how to extract src, title and alt from the html<br /> &lt; img <b>src</b>="/image/fluffybunny.jpg" <b>title</b>="Harvey the bunny" <b>alt</b>="a cute little fluffy bunny"/></p> <p>I guess this should be done with some regex, but since the order of the tags may vary, and I need all of them, I don't really know how to parse this in an elegant way (I could do it the hard char by char way, but thats painful).</p> http://stackoverflow.com/questions/1468085/change-image-on-mouseover 0 change image on mouseover Sam 2009-09-23T19:22:34Z 2009-09-23T19:37:34Z <p>I've got a simple html/css page, where I show a picture.</p> <p>Now when the user moves the mouse on the picture, I'd like to swap out the picture to some other image.<br /> Upon leaving the image area the old picture should be shown again.</p> <p>How can I achieve this? A version which works without javascript would be best.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1360673/any-valid-reason-for-code-duplication/1361199#1361199 22 Answer by Sam for Any valid reason for code duplication? Sam 2009-09-01T08:17:03Z 2009-09-01T12:25:21Z <p>A good read about this is <a href="http://rads.stackoverflow.com/amzn/click/0201633620" rel="nofollow"><strong>large scale c++ software design</strong></a> by John Lakos.</p> <p>He has many good points about code duplication, where it might help or hinder a project.</p> <p>The most important point is asking when deciding to remove duplication or duplicate code:</p> <p><strong>If this method changes in the future, do I want to change the behaviour in the duplicated method, or needs it to stay the way it is?</strong></p> <p>After all, methods contain (business) logic, and sometimes you'll want to change the logic for every caller, sometimes not. Depends on the circumstances.</p> <p>In the end, it's all about maintenance, not about pretty source.</p> http://stackoverflow.com/questions/211971/scroll-wpf-listview-to-specific-line 3 Scroll WPF Listview to specific line Sam 2008-10-17T12:44:45Z 2009-08-20T11:30:09Z <p>WPF, Browserlike app.<br /> I got one page containing a ListView. After calling a PageFunction I add a line to the ListView, and want to scroll the new line into view:</p> <pre><code> ListViewItem item = ItemContainerGenerator.ContainerFromIndex(index) as ListViewItem; if (item != null) ScrollIntoView(item); </code></pre> <p>This works. As long as the new line is in view the line gets the focus like it should.</p> <p>Problem is, things don't work when the line is not visible.<br /> If the line is not visible, there is no ListViewItem for the line generated, so ItemContainerGenerator.ContainerFromIndex returns null.</p> <p>But without the item, how do I scroll the line into view? Is there any way to scroll to the last line (or anywhere) without needing an ListViewItem?</p> http://stackoverflow.com/questions/334472/run-wcf-servicehost-with-multiple-contracts 2 Run WCF ServiceHost with multiple contracts Sam 2008-12-02T16:04:21Z 2009-08-19T13:04:17Z <p>Running a ServiceHost with a single contract is working fine like this:</p> <pre><code>servicehost = new ServiceHost(typeof(MyService1)); servicehost.AddServiceEndpoint(typeof(IMyService1), new NetTcpBinding(), "net.tcp://127.0.0.1:800/MyApp/MyService1"); servicehost.Open(); </code></pre> <p>Now I'd like to add a second (3rd, 4th, ...) contract. My first guess would be to just add more endpoints like this:</p> <pre><code>servicehost = new ServiceHost(typeof(MyService1)); servicehost.AddServiceEndpoint(typeof(IMyService1), new NetTcpBinding(), "net.tcp://127.0.0.1:800/MyApp/MyService1"); servicehost.AddServiceEndpoint(typeof(IMyService2), new NetTcpBinding(), "net.tcp://127.0.0.1:800/MyApp/MyService2"); servicehost.Open(); </code></pre> <p>But of course this does not work, since in the creation of ServiceHost I can either pass MyService1 as parameter or MyService2 - so I can add a lot of endpoints to my service, but all have to use the same contract, since I only can provide one implementation?<br /> I got the feeling I'm missing the point, here. Sure there must be some way to provide an implementation for every endpoint-contract I add, or not?</p> http://stackoverflow.com/questions/589906/how-to-move-from-linq-2-sql-to-linq-2-entities 29 How to move from Linq 2 SQL to Linq 2 Entities? Sam 2009-02-26T10:06:57Z 2009-07-07T04:43:32Z <p>I'd like to start a reference for people who want to move from linq2sql to linq2entities and the ADO.net Entity Framework (in here called L2E). <strong>I don't want to discuss which of these two is better. I just want to create a list of differences between these two for people who want to transition from one to the other.</strong></p> <p>The basic stuff is easy: remove the linq2sql data classes, add ado.net model (created from database). Rename 'Entities' to the name of the former datacontext.</p> <p><hr/>Now, the differences. For example, <strong>to persist (save) changes in L2S</strong> I'd use:</p> <pre><code>using (MyDataClassesDataContext mydc = new MyDataClassesDataContext()) { // change data mydc.SubmitChanges(); } </code></pre> <p>In L2E this would have to be changed to:</p> <pre><code>using (MyDataClassesDataContext mydc = new MyDataClassesDataContext()) { // change data mydc.SaveChanges(); } </code></pre> <p><hr/>2nd example, <strong>to insert a new record in L2S</strong> you'd use:</p> <pre><code>using (MyDataClassesDataContext mydc = new MyDataClassesDataContext()) { MyTable myRow = new MyTable(); mydc.MyTable.InsertOnSubmit(myRow); mydc.SubmitChanges(); } </code></pre> <p>In L2E this would have to be changed to:</p> <pre><code>using (MyDataClassesDataContext mydc = new MyDataClassesDataContext()) { MyTable myRow = new MyTable(); // or = MyTable.CreateMyTable(...); mydc.AddToMyTable(myRow); mydc.SaveChanges(); } </code></pre> <p><hr/>For the other code snippets I'll skip the using (...) part and the SubmitChanges/SaveChanges, since it is the same every time.<br /> <strong>To attach a changed object to a datacontext/model in L2S</strong> (using timestamp):</p> <pre><code>mydc.MyTable.Attach(myRow); </code></pre> <p>In L2E:</p> <pre><code>// you can use either mydc.Attach(myRow); // or (have not tested this) mydc.AttachTo("MyTable", myRow); </code></pre> <p><hr/>To <strong>attach a changed object to a datacontext/model in L2S (using original object)</strong>:</p> <pre><code>mydc.MyTable.Attach(myRow, myOriginalRow); </code></pre> <p>In L2E (<a href="http://msdn.microsoft.com/en-us/library/bb896248.aspx" rel="nofollow">MSDN - Apply Changes Made to a Detached Object</a>):</p> <pre><code>mydc.Attach(myOriginalRow); mydc.ApplyPropertyChanges(myOriginalRow.EntityKey.EntitySetName, myRow); </code></pre> <p><hr/>To <strong>delete a record in L2S</strong>:</p> <pre><code>mydc.MyTable.DeleteOnSubmit(myRow); </code></pre> <p>In L2E:</p> <pre><code>mydc.DeleteObject(myRow); </code></pre> <p><hr/>To <strong>show the created SQL commands for debugging in L2S</strong>:</p> <pre><code>mydc.Log = Console.Out; // before mydc.SubmitChanges(); </code></pre> <p>In <a href="http://stackoverflow.com/questions/137712/sql-tracing-linq-to-entities">L2E you can show the SQL for a query</a> (thanks to TFD):</p> <pre><code>using System.Data.Objects; ... var sqlQuery = query as ObjectQuery; var sqlTrace = sqlQuery.ToTraceString(); </code></pre> <p>Sadly, I found no way to output the SQL generated for a call to SaveChanges() - you'd need to use <a href="http://sqlprofiler.googlepages.com/" rel="nofollow">a SQL profiler</a> for this.</p> <p><hr/>To <strong>Create a database from the scheme if none exists L2S</strong>:</p> <pre><code>if (!mydc.DatabaseExists()) mydc.CreateDatabase(); </code></pre> <p>In L2E:</p> <pre><code>// according to TFD there are no DDL commands in L2E </code></pre> <p><hr/>To <strong>execute an SQL command against the database in L2S</strong>:</p> <pre><code>mydc.ExecuteCommand("ALTER TABLE dbo.MyTable ADD CONSTRAINT DF_MyTable_ID DEFAULT (newid()) FOR MyTableID"); </code></pre> <p>In L2E:</p> <p>To execute an eSQL command against the database in EF (beware, eSQL does not support DDL or DML (alter, Insert, update, delete) commands yet):</p> <pre><code>using System.Data.EntityClient; ... EntityConnection conn = this.Connection as EntityConnection; usi http://stackoverflow.com/questions/420569/wcf-is-it-possible-to-use-streaming-mode-in-a-duplex-channel 0 WCF: is it possible to use streaming mode in a duplex channel? Sam 2009-01-07T14:50:41Z 2009-06-10T07:00:02Z <p>In WCF, contracts can be switched to streaming mode, to transfer large messages.</p> <p>After reading and testing it seems to me, that streaming mode can not be used with duplex channels (channels with OneWay-calls and a callback interface).</p> <p>Is this so? Do duplex and streaming can not be used with each other? Or is there a way?</p> <p>(I'm trying to upload a large file to the service and use callback to report progress on this)</p> http://stackoverflow.com/questions/450474/automatically-call-visual-studio-sort-using-directives-on-save 3 Automatically call visual studio "sort using directives" on save? Sam 2009-01-16T13:59:03Z 2009-05-19T23:32:06Z <p>Visual Studio 2008 got two great features for c#, which is called "sort using directives" and "remove unused using directives".</p> <p>I'd like to call the "sort using directives" every time I format the code using ctrl+k,ctrl+d.</p> <p>Or, even better, I would like to be able to reformat all c#-source files in a project, and call "sort using directives" for all source files.</p> <p>How can I do this? Opening every cs-file by hand and typing these functions before every checkin is tedious!</p> http://stackoverflow.com/questions/187495/how-to-read-assembly-attributes 4 How to read assembly attributes Sam 2008-10-09T14:23:34Z 2009-05-17T16:08:15Z <p>In my program, how can I read the properties set in AssemblyInfo.cs:</p> <pre><code>[assembly: AssemblyTitle("My Product")] [assembly: AssemblyDescription("...")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Radeldudel inc.")] [assembly: AssemblyProduct("My Product")] [assembly: AssemblyCopyright("Copyright @ me 2008")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] </code></pre> <p>I'd like to display some of these values to the user of my program, so I'd like to know how to load them from the main program and from komponent assemblies I'm using.</p> http://stackoverflow.com/questions/1797789/c-pinvoke-sndgetsoundfilelist/1803687#1803687 Comment by Sam on c# pinvoke SndGetSoundFileList? Sam 2009-11-26T14:19:20Z 2009-11-26T14:19:20Z Using out IntPtr is easy, but I can't get Marshal.PtrToStructure to convert the ppSoundFiles to an array of the structure. Is there a trick there? http://stackoverflow.com/questions/72167/how-to-play-a-standard-windows-sound Comment by Sam on How to play a standard windows sound? Sam 2009-11-24T14:52:07Z 2009-11-24T14:52:07Z How/where did you find the appropiate alias name of the sound? I'm looking for example for the &quot;sms received&quot; sound. http://stackoverflow.com/questions/828761/error-database-in-use-when-installing-dynamics-ax-2009-team-server/1772478#1772478 Comment by Sam on Error "database in use" when Installing Dynamics AX 2009 Team Server. Sam 2009-11-24T09:49:11Z 2009-11-24T09:49:11Z As I wrote in my approved answer, you really need to use <b>exactly</b> the versions of Windows Server, SQL Server, ... the TFS install docs are referring to. Don't even install a Service Pack if it is not mentioned in the install docs. http://stackoverflow.com/questions/1782468/windows-mobile-program-without-form/1783285#1783285 Comment by Sam on Windows mobile program without form Sam 2009-11-24T09:00:31Z 2009-11-24T09:00:31Z But then I would need to multi-thread, letting the main thread wait for some event to end the program, since I don't have a form to handle events (sms interception, timer)? http://stackoverflow.com/questions/1782545/how-where-to-store-settings-in-windows-mobile-app/1782592#1782592 Comment by Sam on How/where to store settings in windows mobile app? Sam 2009-11-23T11:35:16Z 2009-11-23T11:35:16Z There is a config settings class? Great! Where can I find it? Or documentation about it? http://stackoverflow.com/questions/1769796/how-to-find-unread-sms-messages-in-windows-mobile/1769885#1769885 Comment by Sam on How to find unread sms messages in windows mobile Sam 2009-11-20T12:02:47Z 2009-11-20T12:02:47Z Great, that will do nicely! Thanks! http://stackoverflow.com/questions/1644108/win7-out-of-memory-exception-on-image-fromfile/1645772#1645772 Comment by Sam on Win7: Out of Memory exception on Image.FromFile Sam 2009-11-02T13:38:24Z 2009-11-02T13:38:24Z Btw, for your problem: did you dispose the image? I never had this problem even for tens of thousands of images, as long as I properly dispose them (I usually used using()) http://stackoverflow.com/questions/1644108/win7-out-of-memory-exception-on-image-fromfile Comment by Sam on Win7: Out of Memory exception on Image.FromFile Sam 2009-10-30T08:59:52Z 2009-10-30T08:59:52Z Chris, I tried this on x86 and x64 systems, on different hardware. I even tried to compile the program for x86 platform. All to no effect. The problem is independent of 32/64 bit. http://stackoverflow.com/questions/1644108/win7-out-of-memory-exception-on-image-fromfile/1645772#1645772 Comment by Sam on Win7: Out of Memory exception on Image.FromFile Sam 2009-10-30T08:57:54Z 2009-10-30T08:57:54Z I don't think this is related to my question at all, is it? http://stackoverflow.com/questions/1644108/win7-out-of-memory-exception-on-image-fromfile Comment by Sam on Win7: Out of Memory exception on Image.FromFile Sam 2009-10-29T16:01:02Z 2009-10-29T16:01:02Z The codec is not needed to <i>read</i> the file, it is needed to interpret the raw image data (which the image viewer needs to show the picture). http://stackoverflow.com/questions/1644108/win7-out-of-memory-exception-on-image-fromfile Comment by Sam on Win7: Out of Memory exception on Image.FromFile Sam 2009-10-29T16:00:08Z 2009-10-29T16:00:08Z iKenndac, no, as I wrote above: the image viewer shows the image if and only if the codec is installed. The test program above does work (or, on W7, not work) regardless of the codec. Installing (or removing) the codec does not change the behaviour of the code above, neither on XP/Vista nor on Windows 7. The problem is not connected to the installation state of the codec. http://stackoverflow.com/questions/1644108/win7-out-of-memory-exception-on-image-fromfile Comment by Sam on Win7: Out of Memory exception on Image.FromFile Sam 2009-10-29T15:40:41Z 2009-10-29T15:40:41Z divo, I can't find any abnormalities in process monitor. Of course there is a lot of noise (33,000 events) going on, so there might be something hidden. But since a fresh install did not fix, I'd be surprised. iKenndac, the native image viewer shows the file if, and only if, the nikon raw codec is installed (which works on all these systems). The load problem above persists regardless of the codec. This problem has no connection to the installation state of the codec. http://stackoverflow.com/questions/1644108/win7-out-of-memory-exception-on-image-fromfile/1644147#1644147 Comment by Sam on Win7: Out of Memory exception on Image.FromFile Sam 2009-10-29T15:06:32Z 2009-10-29T15:06:32Z Oh, might I add, installing the Nikon Raw Codec does not resolve the issue. And of course GDI+ does not support display of NEF files. But it did support reading the metatags from NEF, by exactly this method. So there must be something else broken. http://stackoverflow.com/questions/1644108/win7-out-of-memory-exception-on-image-fromfile/1644147#1644147 Comment by Sam on Win7: Out of Memory exception on Image.FromFile Sam 2009-10-29T14:48:44Z 2009-10-29T14:48:44Z Brian, you might be right, I'd consider your information as a useful answer, but this was not in the answer - and SO does not allow me to take the downvote back just because some comments where added. :( http://stackoverflow.com/questions/1644108/win7-out-of-memory-exception-on-image-fromfile/1644147#1644147 Comment by Sam on Win7: Out of Memory exception on Image.FromFile Sam 2009-10-29T14:46:51Z 2009-10-29T14:46:51Z Well, I don't think wrong information is useful, rather the opposite. Try for yourself, you'll notice my example code and file will work with Vista/Xp and won't for Windows 7, which no part of the answer explains.