User Peter M - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T09:59:12Z http://stackoverflow.com/feeds/user/31326 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1736405/would-it-be-so-tragic-not-to-obfuscate-my-product/1742705#1742705 0 Answer by Peter M for Would it be so tragic not to Obfuscate my product? Peter M 2009-11-16T15:01:41Z 2009-11-16T15:01:41Z <p>This question sort of falls under the basic question of </p> <pre><code>"How much security should I incorporate in my product?" </code></pre> <p>There are many ways you can secure a product but I think that the general approach is to layer enough security such that the economics of buying the product are cheaper than the economics of breaking the security of that product.</p> <p>Thus if you are selling a product worth $10 then you only need to incorporate a security system that would "cost" the hacker $15 and the incentive will be to buy the product rather than hack. Likewise for a product that costs $10,000 you could spend resources to ensure that the hacking "cost" was well over $10,000. However you would also need to factor in things such as the likelyhood of your broken product being served up on the Internet.</p> <p>As long as the breaking costs are less than the product cost there will always be financial incentive to break your program. (So part of your development should be playing hacker and trying to figure out how easy it would be to break your own security)</p> <p>But to play Devil's advocate, the people trying to break your program may be interested in the challenge and not be interested in economics, in which case it doesn't really matter how much security you layer on your product as eventually it will be hacked.</p> http://stackoverflow.com/questions/928122/using-f1-help-chm-format-with-wpf/1657713#1657713 0 Answer by Peter M for Using F1 Help (CHM format) With WPF Peter M 2009-11-01T17:21:32Z 2009-11-01T17:21:32Z <p>I am trying out <a href="http://peteohanlon.wordpress.com/2009/05/01/easy-help-with-wpf/" rel="nofollow">Easy Help with WPF</a>, which also addresses context sensitive help based on key words. So far it seems good .. Alll I need to do is get cracking and write soem decent help!</p> http://stackoverflow.com/questions/1601893/why-are-c-c-and-lisp-so-prevalent-in-embedded-devices-and-robots/1624375#1624375 0 Answer by Peter M for Why are C, C++, and LISP so prevalent in embedded devices and robots? Peter M 2009-10-26T11:52:27Z 2009-10-26T11:52:27Z <p>I just read some introductory Erlang materials and one of the first things they said was that Erlang was suitable for "Soft" real-time control. This is not something that I would want in any robot near me. </p> <p>In addition I would say that robots (as in industrial) currently have no real need for hot swapped code. They are working on a piece basis and there will always be scheduled downtime to reload code at an appropriate moment - which of course is well tested in an offline unit.</p> http://stackoverflow.com/questions/757543/c-to-iec-61131-3-il-compiler 0 C to IEC 61131-3 IL compiler Peter M 2009-04-16T18:53:23Z 2009-10-15T12:25:32Z <p>I have a requirement for porting some existing C code to a <a href="http://en.wikipedia.org/wiki/IEC%5F61131-3" rel="nofollow">IEC 61131-3</a> compliant PLC. </p> <p>I have some options of splitting the code into discrete function blocks and weaving those blocks into a standard solution (Ladder, FB, Structured Text etc). But this would require carving up the C code in order to build each function block. </p> <p>When looking at the IEC spec I realsied that the <a href="http://en.wikipedia.org/wiki/Instruction%5Flist" rel="nofollow">IEC Instruction List</a> form could be a target language for a compiler. The wikepedia article lists two development tools:</p> <ol> <li><a href="http://www.3s-software.com/" rel="nofollow">CoDeSys</a></li> <li><a href="http://www.beremiz.org/" rel="nofollow">Beremiz</a></li> </ol> <p>But these seem to be targeted compiling IEC languages to C, not C to IEC.</p> <p>Another possible solution is to push the C code through a C to Pascal translator and use that as a starting point for a <a href="http://en.wikipedia.org/wiki/Structured%5Ftext" rel="nofollow">Structured Text</a> solution.</p> <p>If not any of these I will go down the route of splitting the code up into function blocks.</p> <p>Does anyone have any other suggestions/ideas?</p> <p>Regards Peter</p> <p><b>Edit</b></p> <p>As prompted by mlieson's reply I should have mentioned that the C code is an existing real-time control system. So the programs algorithms should already suit a PLC environment. </p> http://stackoverflow.com/questions/1469899/whats-the-worst-security-hole-youve-ever-seen/1569208#1569208 1 Answer by Peter M for What's the worst security hole you've ever seen? Peter M 2009-10-14T21:50:10Z 2009-10-14T23:04:20Z <p>I hate to admit this .. but I found out how to hack VSS 2005 one day when I didn't have the admin password to a repository (the hate part is in <strong>having</strong> to use VSS :D )</p> <p>If you create a local computer account with admin privileges that has the same name as the VSS account, and log on, VSS says:</p> <pre><code> "Hey great .. you are logged on to the computer with an account name that I recognize as being the same as one of my accounts, and your account has admin privileges on the computer .. so I am going to bypass *my* security and give you admin privileges to all of VSS!!!!" </code></pre> <p>That hack was about the first link I saw on google when trying to crack the VSS password</p> <p>Of course it doesn't give you the VSS password that you are missing</p> http://stackoverflow.com/questions/1569271/what-is-the-cost-of-an-unused-sproc/1569336#1569336 0 Answer by Peter M for What is the cost of an unused sproc Peter M 2009-10-14T22:20:12Z 2009-10-14T22:20:12Z <p>In addition to ChrisF's answer, if the sprocs were autogenerated as you suspect, then they were created for a reason - to create a uniform API for accessing the dB. </p> <p>So pruning the unused sprocs will prune the API, which is all well and good until someone comes along expecting that missing API call to still be there.</p> http://stackoverflow.com/questions/1554558/best-way-to-create-an-environment-object-in-c/1554577#1554577 0 Answer by Peter M for Best way to create an Environment object in C++ Peter M 2009-10-12T13:25:47Z 2009-10-12T13:25:47Z <p>What you need to do is to wrap your environment class in a Singleton Pattern. See this SO question for more info: <a href="http://stackoverflow.com/questions/1008019/c-singleton-design-pattern">C++ Singleton design Pattern</a></p> http://stackoverflow.com/questions/1550769/book-for-advanced-c-learning/1550775#1550775 3 Answer by Peter M for book for advanced c++ learning Peter M 2009-10-11T14:09:10Z 2009-10-11T14:09:10Z <p>Anything by <a href="http://www.aristeia.com/books.html" rel="nofollow">Scott Meyers</a></p> <p>Although I just noted how old they were. Given that I haven't done any serious C++ for 5+ years I am not sure if any more up to date books are available</p> http://stackoverflow.com/questions/1532806/photo-storage-quandry/1532941#1532941 1 Answer by Peter M for Photo Storage Quandry Peter M 2009-10-07T17:08:04Z 2009-10-07T17:08:04Z <p>Given the number of photos it doesn't sound unreasonable to store them as blobs. I have shoe-horned similar numbers of megabyte sized pics into SQL Server with no detrimental effects to my system. However YMMV and I'd suggest that you code up a simple MySQL Db and shove 2 or 3,000 pics of the applicable size in and see how your system behaves. You should be able to do that in a very short amount of time.</p> http://stackoverflow.com/questions/1527682/has-c-net-builtin-conversion-routines-for-length-units/1527750#1527750 0 Answer by Peter M for Has C#/.NET builtin conversion routines for length units? Peter M 2009-10-06T19:57:17Z 2009-10-06T19:57:17Z <p>Totally gratuiitous off topic reply</p> <p>F# has built in support for units. This is a random blog I just Binged <a href="http://blogs.msdn.com/andrewkennedy/archive/2008/09/02/units-of-measure-in-f-part-two-unit-conversions.aspx" rel="nofollow">Units Of Measure In F#</a> </p> http://stackoverflow.com/questions/1517428/coming-from-a-visual-studio-background-what-do-you-recommend-i-use-to-start-my-v/1517467#1517467 3 Answer by Peter M for Coming from a Visual Studio background, what do you recommend I use to start my VERY FIRST Python project? Peter M 2009-10-04T21:47:05Z 2009-10-04T21:52:52Z <p>How about <a href="http://www.codeplex.com/Wiki/View.aspx?ProjectName=IronPython" rel="nofollow">IronPython</a></p> <p>As of VS 2010 it will become a first class .Net language</p> <p>Or currently in a VS2008 shell <a href="http://www.codeplex.com/IronPythonStudio" rel="nofollow">IronPythonStudio</a></p> <p>Not that I have used any of these</p> <p>In hindsight this may not make for a very good cross platform solution, but it will allow you to leverage your VS experience</p> http://stackoverflow.com/questions/1505466/how-do-i-query-xml-stored-as-text/1505511#1505511 0 Answer by Peter M for How do I query XML stored as text? Peter M 2009-10-01T18:04:09Z 2009-10-01T18:04:09Z <p>If you are using SQL server (2005 onwards), one possibility could be to write a user defined function in a .Net language that parses out the XML from a field and returns that data as part of teh query</p> http://stackoverflow.com/questions/1462628/marketing-a-point-of-sale-solution/1504384#1504384 1 Answer by Peter M for Marketing a Point of Sale Solution Peter M 2009-10-01T14:43:30Z 2009-10-01T14:43:30Z <p>If you need to target a specific group then you need to network with that group. This involves getting out there and doing the leg work in order to explain why your solution is better than anyone elses.</p> <p>Possible areas to where this can be done include:</p> <ul> <li>Joining online communities such as LinkedIn where your marks congregate</li> <li>Joining local chamber of commerce groups where your marks congregate</li> <li>Basic upfront cold calling to retail businesses in order to get face time with your marks</li> </ul> http://stackoverflow.com/questions/1452122/c-class-design-without-using-internal-or-static 1 C# class design without using "Internal" or "Static"? Peter M 2009-09-20T21:52:32Z 2009-09-22T03:40:14Z <p>I have a bunch of data I want to instantiate in a class, and for each variable I want to ensure a specific set of methods are also defined. IE:</p> <pre><code>[TypeA] VarA [TypeB] VarB [TypeC] VarC FA1() which is a function of VarA and VarB FA2() which is a function of VarA and VarC FB1() which is a function of VarB and VarA FB2() which is a function of VarB and VarC ... </code></pre> <p>As there will be a large number of variables (and hence even more functions) I want to split my source code up into manageable chunks. So I am looking for an automatic way of ensuring that all of the functions for each variable are instantiated.</p> <p>I have come up with 3 possible methods to organize my code and I am not too happy with each of them and I am looking or advice as to which method is the better (or even if I have missed a completely different implementation method): </p> <p><strong>1. Partial Class</strong></p> <pre><code>partial class Base { } partial class Base { [TypeA] VarA; FA1 { .. }; // function of VarA and VarB FA2 { .. }; // function of VarA and VarC } partial class Base { [TypeB] VarB; FB1 { .. }; // function of VarB and VarA FB2 { .. }; // function of VarB and VarC } </code></pre> <p>Pros:</p> <ol> <li>Simple </li> <li>Variables can only be accessed from within class Base. </li> <li>If there are two variables of the same type then the functions for each variable can implement its own function differently.</li> </ol> <p>Cons:</p> <ol> <li>Cannot automatically ensure that all functions are created for each variable</li> <li>Need to manually ensure that there are no name collisions between each function name.</li> </ol> <p>Note that the Cons may be solved by a code generator of some sort (maybe time to learn T4??) </p> <p><hr /></p> <p><strong>2. Internal class</strong></p> <pre><code>class Base { internal [ClassA] ObjA = new [ClassA](); internal [ClassB] ObjB = new [ClassB](); } class [BaseClassA] { public [TypeA] VarA; public virtual F1 { .. }; public virtual F2 { .. }; } class [ClassA] : [BassClassA] { public override F1 { .. }; // function of VarA and ObjB.VarB public override F2 { .. }; // function of VarA and ObjC.VarC } ... </code></pre> <p>Pros: </p> <ol> <li>Class hierarchy enforces that all functions are created and that variables are there to be accessed.</li> <li>Through use of virtual functions can create instance specific implementations of functions</li> </ol> <p>Cons:</p> <ol> <li>Use of <strong>Internal</strong> means that data is visible <strong>everywhere</strong> in the assembly.</li> </ol> <p><hr /></p> <p><strong>3. Static data</strong></p> <pre><code>abstract class Data { static [TypeA] VarA; static [TypeB] VarB; ... } abstract class [BaseClassA] : Data { public virtual F1 { .. }; public virtual F2 { .. }; } class [ClassA] : [BassClassA] { public override F1 { .. }; // function of VarA and VarB public override F2 { .. }; // function of VarA and VarC } class Base { [ClassA] ObjA = new [ClassA](); [ClassB] ObjB = new [ClassB](); } </code></pre> <p>Pros:</p> <ol> <li>System ensures that all routines are instantiated</li> <li>Data is not blasted all around the assembly</li> <li>Within each function you can directly reference the other variables as per the 'partial class' solution</li> </ol> <p>Cons:</p> <ol> <li>The use of <strong>static</strong> smells like I have just re-invented global data.</li> </ol> <p><hr /></p> <p>What I want is to somehow cherry pick the best points of each method:</p> <ol> <li>The direct manner of accessing variables of the "Partial class" and "Static" methods</li> <li>The local data of the "Partial class" method</li> <li>The automatic enforcing of function implementation of the "Internal" and "Static" methods.</li> </ol> <p>And I want to avoid:</p> <ol> <li>The lack of enforcing function generation in the "Partial class"</li> <li>The global access of data in the "Internal" method</li> <li>The re-invention of global data in the "Static" method</li> </ol> <p>If I was going to have my druthers I'd say that what I want is to somehow apply an interface to an instance of a variable - like:</p> <pre><code>[TypeA] VarA : IFunctions; [TypeB] VarB : IFunctions; </code></pre> <p>And somehow have the compiler auto-generate the final function names from the interface names and the vaiable name.</p> <p>So can people suggest which of the 3 methods they would prefer to implement, or suggest any other methods that may suit.</p> http://stackoverflow.com/questions/1452596/offensive-interview-questions/1452608#1452608 1 Answer by Peter M for Offensive Interview Questions Peter M 2009-09-21T02:29:15Z 2009-09-21T02:29:15Z <p>I am offended that you state we can only agree or disagree :D</p> <p>But to the point, why do you consider this offensive</p> <pre><code>I believe nearly everyone has taken something of value from their employer. </code></pre> <p>When you do not consider this offensive</p> <pre><code>I always give back any extra change I receive. </code></pre> <p>Both are questions about theft, but framed differently</p> http://stackoverflow.com/questions/1428937/managed-code-in-visual-studio/1428971#1428971 3 Answer by Peter M for Managed code in Visual Studio Peter M 2009-09-15T18:44:15Z 2009-09-15T18:50:32Z <p>The answer to both of these questions is yes.</p> <p>You can create unmanaged c++ code projects in VS which do not need .Net. You can also link unmanaged C++ code to managed C++ code and (sort of) get the best of both worlds - although the matching of calling parameters between the to systems is interesting. </p> <p>You can also use the ngen .Net utility to pre-compile .Net projects to pure code. However in doing so you loose some flexibility. The JIT compiler will take account of local capabilities when compiling a .Net project. So if you distribute a .Net project as generated by VS then ngen on the local machine that runs the program will do the compiliing. However if you use ngen on your machine the precompiled code will be tied to the processsor capabilities of your system.</p> <p>As per Joel's comment. regardless of using ngen or not, you still need .Net framework on the target machine.</p> <p>In thinking about it, the use of ngen to pre-compile a .Net project probably is no worse than compiling an unmanaged c++ project to native code.</p> http://stackoverflow.com/questions/1395208/reverse-engneering-a-query/1395321#1395321 0 Answer by Peter M for reverse engneering a query Peter M 2009-09-08T17:46:54Z 2009-09-08T17:46:54Z <p>The query that you supplied pulls data from 3 separate tables. A single SQL insert query will only insert data into a single table. Thus in order to add each record to the system you are going to have to do at least 3 inserts per record. ie</p> <p>For a new record of 10, cfil123, cfil456 you would need:</p> <pre><code>INSERT INTO catalog_topics(catalogID, .. other required fields) VALUE(10, other required fields) INSERT INTO catalog_files(catalogFileID, .. other required fields) VALUE('cfil123', other required fields) INSERT INTO catalog_files_join(catalogFileID, .. other required fields) VALUE('cfil456', other required fields) </code></pre> <p>In addition you should wrap the set of inserts with a start/end transaction pair so that either all of the inserts per record happen or none of them happen.</p> http://stackoverflow.com/questions/1394853/answer-modem-using-voip/1394945#1394945 1 Answer by Peter M for Answer modem using voip Peter M 2009-09-08T16:30:08Z 2009-09-08T16:42:26Z <p>Tom's suggestion about <a href="http://www.asterisk.org/" rel="nofollow">Asterisk</a> is a good one for the overall system. </p> <p>However you will still need to decode the data sent from your remote equipment from an audio signal to a data signal. That task is what the "dem" part of Modem stands for (Modulate/Demodulate). Either you do this with a canned hardware/software package (as you are currently doing with a commercial modem) or you have to emulate the modem in software yourself which will be extremely tricky to code at the very least if you attempt it yourself (heaps of standards that you have to comply with for a general modem solution, plus the solution needs to work in real time)</p> <p>For the software approach could start with this page <a href="http://www.linmodems.org/" rel="nofollow">Linmodems.org</a> (just a something I saw on google prompted by your question). Alternatively do lots of searches on google for software modems. Getting someone else's code is the best approach for this sort of code :)</p> http://stackoverflow.com/questions/1394328/ensure-connection-to-a-posprinter-connected-via-com/1394348#1394348 0 Answer by Peter M for Ensure connection to a POSPrinter connected via COM Peter M 2009-09-08T14:30:18Z 2009-09-08T14:50:59Z <p>About all you can do is write out a character string to the com port and wait and see if your printer responds with a reply. However the string you write and the string you expect will depend on the printer itself.</p> <p>Refer to the <a href="http://www.crs-usa.com/DEALER/snbc/BTP-2002NP%5FPROGRAMMING%5FMANUAL%5FV1.00.pdf" rel="nofollow">BTP 2002NP printers programming manual</a> for examples (the first link in google that I looked at)</p> <p>From looking at the manual an appropriate string to send to the printer is the "DLE EOT n" command which requests that the printer send back its current status. </p> <p>As for other printers in the range, check out <a href="http://www.crs-usa.com/softsnbc.asp" rel="nofollow">this list of drivers and manuals</a></p> http://stackoverflow.com/questions/1369643/wpf-error-styles-only-being-rendered-properly-on-visible-tab-of-a-tab-control 2 WPF Error Styles only being rendered properly on visible tab of a tab control Peter M 2009-09-02T19:26:41Z 2009-09-07T21:52:32Z <p>I have a data object used to contain my UI data that supports INotifyPropertyChanged and IDataErrorInfo. Originally I had all of the UI controls displaying in one big WPF application and was happily seeing errors flagged via this custom style:</p> <pre><code> &lt;!-- Set error style for textboxes --&gt; &lt;Style x:Key="txtBoxErrStyle" TargetType="{x:Type TextBox}"&gt; &lt;Style.Triggers&gt; &lt;Trigger Property="Validation.HasError" Value="True"&gt; &lt;Setter Property="ToolTip" Value="{Binding RelativeSource={x:Static RelativeSource.Self}, Path=(Validation.Errors)[0].ErrorContent}" /&gt; &lt;/Trigger&gt; &lt;/Style.Triggers&gt; &lt;Setter Property="Validation.ErrorTemplate"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate&gt; &lt;DockPanel DockPanel.Dock="Right"&gt; &lt;AdornedElementPlaceholder /&gt; &lt;Image Source="Error.png" Height="16" Width="16" ToolTip="{Binding Path=AdornedElement.ToolTip, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type Adorner}}}" /&gt; &lt;/DockPanel&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> <p>I was reorganizing the program today and decided to distribute the various UI controls over several pages of a tab control. The structure layout I am using for this is:</p> <pre><code>&lt;tabcontrol&gt; &lt;tabitem&gt; &lt;AdornerDecorator&gt; [.. various Stack Panels, Groups and UI controls moved from original layout ..] &lt;/AdornerDecorator&gt; &lt;/tabItem&gt; &lt;tabitem&gt; &lt;AdornerDecorator&gt; [.. various Stack Panels, Groups and UI controls moved from original layout ..] &lt;/AdornerDecorator&gt; &lt;/tabItem&gt; ... &lt;/tabcontrol&gt; </code></pre> <p>(I am using the AdornerDecorator as I had experienced in a previous program the error style not being re-rendered when swapping tab pages. I can't remember where I saw this but it did help me out.)</p> <p>Now when I start my program the error style correctly renders on the TabItem that is open when the program starts, but does not correctly render on the other (hidden) TabItems. When I select (and reveal) one of those TabItems the tool-tip of the error style is set, but the error icon image is not displayed.</p> <p>I also tested removing the custom style and revert back to the default WPF error style for textboxes and I still get a similar behaviour, i.e. no red box around the control on the TabItems that are hidden when the program opens.</p> <p>So it seems that I am totally missing something that is stopping the error styles from correctly rendering on other than the open tab Item. Any ideas?</p> <p><strong>Edit Sep 3</strong> Changed description to support a better understanding of what I have seen</p> http://stackoverflow.com/questions/1357044/how-do-you-put-an-large-existing-database-schema-under-source-control/1357087#1357087 0 Answer by Peter M for How do you put an large existing database (schema) under source control? Peter M 2009-08-31T11:50:46Z 2009-08-31T11:50:46Z <p>Its not clear from you question if you want to protect the data in the Db or the schemas in the Db. If the latter then you could identify all the important schemas and run an cron job that pulls the schema definitions from the Db and inserts them automatically into a source control system (perhaps even via triggers on the schemas??).</p> <p>But this still just amounts to backing the system up more often. For what you envision you would need source control integrated with the Db tools and I don't know of any product that does that.</p> <p>(and I shudder to think of VSS integrated into SQL management studio :-(( )</p> http://stackoverflow.com/questions/1353044/is-it-a-good-idea-to-call-an-image-by-its-ip-address-instead-of-a-domain/1353047#1353047 3 Answer by Peter M for Is it a good idea to call an image by it's IP address instead of a domain? Peter M 2009-08-30T04:03:55Z 2009-08-30T04:03:55Z <p>Its a bit late at night for my timezone, but I thought that DNS lookups are cached in various spots, (even on the local machine??) so it is not as bad as you think.</p> <p>Thus the first call to lookup the domain will travel a fair way, but the results should be cached on in-between machines so that there is less performance hits with the later calls.</p> <p>I am sure that this sort of thing was thought long and hard about by the designers of the DNS protocols.</p> <p><strong>Edit notes</strong></p> <p>Its taken me 3 edits just to get my spelling and grammar straight - it is definitely too late at night for me</p> http://stackoverflow.com/questions/1284549/radio-button-error-style 1 Radio Button Error Style Peter M 2009-08-16T15:32:22Z 2009-08-24T22:01:46Z <p>I have implemented an error style for textboxes using the following code. This sets a tool tip and puts a nice error image to the right of the textbox if the element reports an error status via an IDataErrorInfo interface:</p> <pre><code> &lt;!-- Set error style for textboxes --&gt; &lt;Style x:Key="txtBoxErrStyle" TargetType="{x:Type TextBox}"&gt; &lt;Style.Triggers&gt; &lt;Trigger Property="Validation.HasError" Value="True"&gt; &lt;Setter Property="ToolTip" Value="{Binding RelativeSource={x:Static RelativeSource.Self}, Path=(Validation.Errors)[0].ErrorContent}" /&gt; &lt;/Trigger&gt; &lt;/Style.Triggers&gt; &lt;Setter Property="Validation.ErrorTemplate"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate&gt; &lt;DockPanel DockPanel.Dock="Right"&gt; &lt;AdornedElementPlaceholder /&gt; &lt;Image Source="Icons/Error.png" Height="16" Width="16" ToolTip="{Binding Path=AdornedElement.ToolTip, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type Adorner}}}" /&gt; &lt;/DockPanel&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> <p>This works really well for me by adding the tool tip text and setting the Error.png image to the right of the textbox. But what I want to do is give similar functionality to a radio button. I attempted to do this by copying the above code and changing the tag to be:</p> <pre><code> &lt;!-- Set error style for radio buttons --&gt; &lt;Style x:Key="radioBtnErrStyle" TargetType="{x:Type RadioButton}"&gt; </code></pre> <p>The field that the radio button is bound to reports errors via the IDataErrorInfo interface, and the radio button itself has ValidatesOnDataErrors set to true.</p> <p>This <strong>sort of</strong> worked for me. When the radio button is deemed to be in error, the tool tip <strong>is</strong> set to the error message returned from the IDataErrorInfo routine. But I cannot seem to get the Error.png image to display on the form.</p> <p>I have tried some basic screwing around with the style, such as swapping the order of the and elements, but nothing I tried seemed to work.</p> <p>So any ideas as to how I can get the image to display? </p> <p><strong>Update</strong></p> <p>Steffen's reply hit the nail on the head. Increasing the margin did allow room for the image to be displayed. </p> <p>However I have run into another, separate issue in that if the error condition is present when the program first starts then the tool tip will reflect the error condition, but the image will not be displayed. It is only when error condition is actively raised after the program start does the image also be displayed. I have seen this before but have not yet seen the correct way of handling it. Time to research another WPF topic!</p> http://stackoverflow.com/questions/1238496/c-correct-way-to-design-implement-this-ui/1238558#1238558 1 Answer by Peter M for C# Correct way to design/implement this UI? Peter M 2009-08-06T12:30:51Z 2009-08-06T12:30:51Z <p>What I understand from your question is that when you click on the line in the RTB, your code scans the text on that line, identifies the extra data associated with that line and then inserts it into the tooltip for the RTB.</p> <p>Technically I believe that this is possible to do - although I am not 100% sure of the mechanics of inserting tooltip text. However as a user interface feature I would personally not do that as the tooltip text is displayed whenever the mouse pointer is anywhere over the RTB. Thus if a user clicks on line #1, (and sees the data associated from line #1) but hovers the mouse of line #3, they might think that the tooltip is associated with line #3.</p> <p>You could alleviate my concerns with a strongly worded tooltip, but I feel that what you are doing is misusing the tooltip for something other than what it was intended to be used for. IMHO it may be that you are better off displaying your data with a tree control rather than with a RTB, as the tree control more naturally expresses the functionality that you desire (click on a node, expand it to see details etc).</p> http://stackoverflow.com/questions/1220196/wpf-binding-a-combobox-to-an-enum-nested-in-a-class 1 wpf binding a combobox to an enum nested in a class Peter M 2009-08-02T23:42:13Z 2009-08-03T14:17:25Z <p>I have been going crazy with binding a combobox to an enum typed property of a class, where the enum itself is declared in that same class. </p> <p>I am trying to follow the answer provided here <a href="http://stackoverflow.com/questions/878356/wpf-combobox-binding-to-enum-what-i-did-wrong">(wpf combobox binding to enum what i did wrong?)</a> Specifically I am using the suggested MarkupExtension code and the matching xaml code.</p> <p>My working code is:</p> <p>Defining the Enum in a separate file.</p> <pre><code>namespace EnumTest { public enum TestEnum {one, two, three, four }; } </code></pre> <p>Class that uses the Enum (Note that the propertyChanged code has been removed to simplify things):</p> <pre><code>namespace EnumTest { public class Test : INotifyPropertyChanged { private TestEnum _MyVar; public TestEnum MyVar { get { return _MyVar; } set { _MyVar = value; OnPropertyChanged("MyVar"); } } public Test() { _MyVar = TestEnum.three; } } } </code></pre> <p>Program file that uses the class:</p> <pre><code>namespace EnumTest { public partial class Window1 : Window { Test _oTest = new Test(); public Window1() { InitializeComponent(); cmbBox.DataContext = _oTest; } } } </code></pre> <p>Extension method for displaying the Enum</p> <pre><code>namespace EnumTest { [MarkupExtensionReturnType(typeof(object[]))] public class EnumValuesExtension : MarkupExtension { public EnumValuesExtension() { } public EnumValuesExtension(Type enumType) { this.EnumType = enumType; } [ConstructorArgument("enumType")] public Type EnumType { get; set; } public override object ProvideValue(IServiceProvider serviceProvider) { if (this.EnumType == null) throw new ArgumentException("The enum type is not set"); return Enum.GetValues(this.EnumType); } } } </code></pre> <p>And the xaml code that is used to display the data:</p> <pre><code>&lt;Window x:Class="EnumTest.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:w="clr-namespace:EnumTest" Title="Window1" Height="300" Width="300"&gt; &lt;Grid&gt; &lt;ComboBox Name="cmbBox" Height="20" Width="80" ItemsSource="{Binding Source={w:EnumValues EnumType=w:TestEnum}}" SelectedItem="{Binding Path=MyVar}" /&gt; &lt;/Grid&gt; &lt;/Window&gt; </code></pre> <p>The above is all good and dandy, but I want to define the Enum <strong>within</strong> the Test class and ditch the Enum from being defined at the global scope. Like so:</p> <pre><code>namespace EnumTest { public class Test : INotifyPropertyChanged { // Declare Enum **INSIDE** the class public enum TestEnum {one, two, three, four }; private TestEnum _MyVar; public TestEnum MyVar { get { return _MyVar; } set { _MyVar = value; OnPropertyChanged("MyVar"); } } public Test() { _MyVar = TestEnum.three; } } } </code></pre> <p>The SO question I referred to alludes to the matching xaml syntax as being:</p> <pre><code> &lt;ComboBox Name="cmbBox" ... ItemsSource="{Binding Source={w:EnumValues EnumType=w:Test+TestEnum}}" ... /&gt; </code></pre> <p>But this (sort of) does not work for me. When I do a clean build I get a "Build succeeded" message on the VS 2008 status bar, but I also get an error http://stackoverflow.com/questions/1200950/wpf-databinding-to-composite-class-patterns 1 WPF databinding to composite class patterns? Peter M 2009-07-29T15:05:31Z 2009-07-29T18:53:42Z <p>I am trying out WPF for the first time and I am struggling with how to bind controls to a class that is built up using composition of other objects. For example, If I have class Comp that is built up of two separate classes (note various elements left out for clarity):</p> <pre><code>class One { int _first; int _second; } class Two { string _third; string _fourth; } class Comp { int _int1; One _part1; Two _part2; } </code></pre> <p>Now I understand that I can easily bind _int1 using a "get" defined in Comp. But how do I bind to the elements _part1._first, _part1._second. Do I have expose "getters" for them at the class Comp level? or can I expose them within the composite classes and use a binding path that points to them? And how does this work with setting the properties?</p> <p>Thus is this the pattern?</p> <pre><code>.... &lt;TextBlock Name="txtBlock" Text="{Binding Path=Third}" /&gt; .... class One { int _first; int _second; } class Two { string _third; string _fourth; } class Comp { int _int1; One _part1; Two _part2; int Int1 { get { return _int1; } set { _int1 = value; } } int First { get { return _part1._first; } set { _part1._first = value; } } int Second { get { return _part1._second; } set { _part1._second = value; } } string Third { get { return _part2._third; } set { _part2._third = value; } } string Fourth { get { return _part2.fourth; } set { _part2._fourth = value; } } } ... Comp oComp = new Comp(); txtBlock.DataContext = oComp; ... </code></pre> <p>Or is this the pattern? (where I am not sure what to put for the path)</p> <pre><code>.... &lt;TextBlock Name="txtBlock" Text="{Binding Path=_part2.Third}" /&gt; .... class One { int _first; int _second; int First { get { return _first; } set { _first = value; } } int Second { get { return _second; } set { _second = value; } } } class Two { string _third; string _fourth; string Third { get { return _third; } set { _third = value; } } string Fourth { get { return _fourth; } set { _fourth = value; } } } class Comp { int _int1; One _part1; Two _part2; int Int1 { get { return _int1; } } } ... Comp oComp = new Comp(); txtBlock.DataContext = oComp; ... </code></pre> <p>Or am I on on my way to reinvent M-V-VM (which I am slowly starting to comprehend)?</p> <pre><code>.... &lt;TextBlock Name="txtBlock" Text="{Binding Path=Third}" /&gt; .... class One { int _first; int _second; } class Two { string _third; string _fourth; } class Comp { int _int1; One _part1; Two _part2; } class CompView { Comp _comp; CompView( Comp comp ) { _comp = comp; } int Int1 { get { return _comp._int1; } set { _comp._int1 = value; } } int First { get { return _comp._part1._first; } set { _comp._part1._first = value; } } int Second { get { return _comp._part1._second; } set { _comp._part1._second = value; } } string Third { get { return _comp._part2._third; } set { _comp._part2._third = value; } } string Fourth { get { return _comp._part2.fourth; } set { _comp._part2._fourth = value; } } } ... Comp oComp = new Comp(); CompView oCompView = new CompView( oComp ); txtBlock.DataContext = oCompView; ... </code></pre> <p>So how should I do things? If it is the first or the third pattern, then it seems that I have take all of my lovely (disparate) hierarchal data and pound it down to a flat configuration so I can bind it to the UI elements. Is this how it has to happen, or is there a better way (second pattern??)</p> <p><strong>Edit</strong> </p> <p>I left out of the question that I really want two way binding. So the property accessors really should have get and set.</p> <p><strong>Edit</strong> </p> <p>Updated my pseudo code to show setters as well as getters</p> <p><strong>Edit</strong></p> <p>I followed through the pattern provided by Mark and Julien and implemented setters and was happy with the result. For some reason I convinced myself that the setting of a property would not follow all the way down to the final entity.</p> http://stackoverflow.com/questions/1161710/photoshop-mock-up-font-isnt-same-as-in-html/1161757#1161757 0 Answer by Peter M for Photoshop Mock Up Font isn't same as in HTML Peter M 2009-07-21T21:06:13Z 2009-07-21T21:06:13Z <p>Another thing that you will have to understand is that it is the people with the Web browsers that ultimately control how your page will look. So no matter how much fiddling you do to get a website the way you want to see it, it will view differently on someone else's computer</p> http://stackoverflow.com/questions/901912/locking-removable-drive/993169#993169 1 Answer by Peter M for Locking removable drive? Peter M 2009-06-14T16:37:18Z 2009-06-14T16:37:18Z <p>Not having used this, I would say that you want to look at the win32 <a href="http://msdn.microsoft.com/en-us/library/aa363416.aspx" rel="nofollow">IOCTL&#95;STORAGE&#95;MEDIA&#95;REMOVAL Control Code</a> parameter to DeviceIoControl() which <em>"..Enables or disables the mechanism that ejects media, for those devices possessing that locking capability..."</em></p> http://stackoverflow.com/questions/956676/can-i-provide-a-datable-row-with-a-name/956839#956839 0 Answer by Peter M for Can I provide a datable row with a name? Peter M 2009-06-05T16:27:46Z 2009-06-05T16:27:46Z <p>I'll go out on a limb here and suggest that the table structure you are using may not be the best one for storing your results. One reason is that it is not easily extensible - you have to physically modify the table if you add/subtract the markets that you are recording correlation for.</p> <p>I see a better structure for holding the data as:</p> <pre><code>ID | Market1 | Market2 | Correlation ------------------------------------ 1 | Gold | Silver | 0.8 2 | Gold | Bronze | 0.5 3 | Silver | Bronze | 0.1 etc With a Primary Key (PK) on (Market1, Market2) </code></pre> <p>This will handle all your data and will allow you to easily add markets in the future. The downside is that you have to ensure that you don't have multiple entries for the same data ie "Gold - Silver" and "Silver - Gold"</p> <p>With this structure you can just ask the Table for the Results at "Gold" and "Silver". </p> <p>However producing a tabular result of all markets will be a bit more complex and I'd leave that for another SO question :D</p> http://stackoverflow.com/questions/952929/how-can-i-make-a-complex-t-sql-update-query 2 How can I make a complex T-SQL update query? Peter M 2009-06-04T20:32:25Z 2009-06-05T02:22:50Z <p>I have a database table:</p> <pre><code>Col1 | Col2 | Col3 ------------------ 1 | 2 | - 2 | 3 | - 3 | 4 | - 4 | 5 | - </code></pre> <p>Columns 1 and 2 have data but 3 is null.</p> <p>What I want to achieve is to set <code>Col3</code> to the <code>Col1</code> value of the previous row (technically the previous row in which the <code>Col1</code> value equals the <code>Col2</code> value), to get this:</p> <pre><code>Col1 | Col2 | Col3 ------------------ 1 | 2 | - 2 | 3 | 1 3 | 4 | 2 4 | 5 | 3 </code></pre> <p>I am struggling over the update query in order to achieve this. I have been trying things like:</p> <pre><code>UPDATE Table SET [cur].Col3 = [prev].Col1 FROM Table [cur], Table [prev] WHERE [cur].Col1 = [prev].Col2 </code></pre> <p>But this doesn't seem to be working for me. SQL Server accepts the syntax in a stored procedure, but when it executes it generates an error:</p> <blockquote> <p>Table is ambiguous</p> </blockquote> <p>What am I doing wrong?</p> <p><hr /></p> <h3>Note:</h3> <p>The data in each column is already guaranteed to be unique and each combination of <code>Col1</code> and <code>Col2</code> is unique. </p> http://stackoverflow.com/questions/1738852/accents-on-numbers-in-html-like-a-over-1/1738868#1738868 Comment by Peter M on Accents on numbers in HTML (like a ^ over 1) Peter M 2009-11-15T22:03:15Z 2009-11-15T22:03:15Z Doesn't work with Firefox 3.5.5 on my Leopard either http://stackoverflow.com/questions/1738852/accents-on-numbers-in-html-like-a-over-1/1738868#1738868 Comment by Peter M on Accents on numbers in HTML (like a ^ over 1) Peter M 2009-11-15T22:00:58Z 2009-11-15T22:00:58Z On Safari 4.0.3 on OS X leopard I see a square box next to the &quot;1&quot; and the smiley face. I guess that it doesn't work for my setup for some reason. http://stackoverflow.com/questions/1645615/what-is-the-use-of-brainfuck Comment by Peter M on What Is The Use Of Brainfuck Peter M 2009-11-04T13:12:12Z 2009-11-04T13:12:12Z Pet rant here .. why bother trying to protect people from seeing &quot;fuck&quot; by saying &quot;brainf*ck&quot; in the title, but then tag it as &quot;brainfuck&quot;??? And as if people can't put 1+1=2 and figure out what the * means in the first place. http://stackoverflow.com/questions/1658574/proving-that-replacing-hardware-will-improve-developer-performance/1658615#1658615 Comment by Peter M on Proving that replacing hardware will improve developer performance... Peter M 2009-11-02T00:11:15Z 2009-11-02T00:11:15Z @vdh_ant .. then cannibalize another machine for its RAM to prove that inserting it into the first machine will speed up that machine. http://stackoverflow.com/questions/87350/what-are-good-grep-tool-for-windows/87394#87394 Comment by Peter M on What are good grep tool for Windows? Peter M 2009-10-30T15:14:31Z 2009-10-30T15:14:31Z As per what I found with GNU Grep, it seems that FindStr doesn't like 10Mb text files either. http://stackoverflow.com/questions/87350/what-are-good-grep-tool-for-windows/87378#87378 Comment by Peter M on What are good grep tool for Windows? Peter M 2009-10-30T15:05:07Z 2009-10-30T15:05:07Z I just started looking for a replacement for Gnu Grep as the windows version doesn't seem to be able to handle my 10 Mb text files. It just sits there and pretends not to have found anything. If I cut down the file size it starts to work. http://stackoverflow.com/questions/1630412/is-using-underscore-suffix-for-members-beneficial Comment by Peter M on Is using underscore suffix for members beneficial? Peter M 2009-10-27T12:38:48Z 2009-10-27T12:38:48Z I may be crazy, but it seems that putting he underscore at the end is violating other style guides that state the most important variations in a name should be at the start. To me dividing variables into regions (member vs non-member etc) is about as major as you can get - but then again I favour hierarchal conventions. http://stackoverflow.com/questions/1630412/is-using-underscore-suffix-for-members-beneficial/1630448#1630448 Comment by Peter M on Is using underscore suffix for members beneficial? Peter M 2009-10-27T12:35:07Z 2009-10-27T12:35:07Z @Luke there is always the case of member setter functions where the incoming parameter can then just be the member name minus the underscore. That kind of style aids in overall comprehension. http://stackoverflow.com/questions/1584854/how-to-draw-3d-sphere/1585123#1585123 Comment by Peter M on how to draw 3d sphere? Peter M 2009-10-18T15:21:36Z 2009-10-18T15:21:36Z Those examples are amazing. Although they suggest viewing them in Chrome, the waving flag picture and the iPhone (default renderer) worked pretty well in Safari. http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1556721#1556721 Comment by Peter M on Most horrifying line of code you have ever seen? Peter M 2009-10-14T16:12:07Z 2009-10-14T16:12:07Z @Austin .. to add to the pain in general there is some commercial code I work with that uses the .VB extension for VBScript files :-(( http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1566473#1566473 Comment by Peter M on Most horrifying line of code you have ever seen? Peter M 2009-10-14T15:37:39Z 2009-10-14T15:37:39Z I know what PI is, but I also know that the more times I have to explicitly type in 3.14159264 the more likely it is that I will get a typo and hence a very subtle programming error http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1565970#1565970 Comment by Peter M on Most horrifying line of code you have ever seen? Peter M 2009-10-14T15:35:37Z 2009-10-14T15:35:37Z The only thing that I don't like about it is that the initialisation of r and c is not visible. Otherwise it is a perfectly fine piece of code. http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1556721#1556721 Comment by Peter M on Most horrifying line of code you have ever seen? Peter M 2009-10-14T15:32:46Z 2009-10-14T15:32:46Z @Austin .. then that makes the language design horrible .. not the line of code itself. http://stackoverflow.com/questions/1559593/from-ms-net-to-web-development-options-on-osx Comment by Peter M on From MS .NET to Web development options on OSX Peter M 2009-10-13T11:53:41Z 2009-10-13T11:53:41Z @Andy .. I am basically with PeyloW on this. But I have to ask you why you bought a Mac in the first place if you want to continue your Windows coding experience? OS X sits firmly in the *nix camp and the manner of programming things on it has a different philosophy to the Windows world - and I say this from developing software on both and having one of each system sitting on my desk right now. http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1556721#1556721 Comment by Peter M on Most horrifying line of code you have ever seen? Peter M 2009-10-12T20:59:48Z 2009-10-12T20:59:48Z Except that in VBScript (Not VB) that is the only error flow control that you have :-((