User Simon Temlett - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T13:02:16Zhttp://stackoverflow.com/feeds/user/35453http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1593388/how-do-i-recognize-command-line-parameters-in-my-delphi-program/1595839#15958393Answer by Simon Temlett for How do I recognize command-line parameters in my Delphi program?Simon Temlett2009-10-20T16:24:23Z2009-10-20T16:24:23Z<p>You may wish to consider the <strong>FindCmdLineSwitch</strong> from the <strong>SysUtils</strong> unit.</p>
<pre><code>function FindCmdLineSwitch(const SwitchValue:string):Boolean;
function FindCmdLineSwitch(const SwitchValue:string; IgnoreCase:Boolean):Boolean;
function FindCmdLineSwitch(const SwitchValue:string; SwitchChars:TSysCharSet; IgnoreCase:Boolean):Boolean;
</code></pre>
<p>This allows to check for the presence of a command line switch, specify whether to ignore its case and optionally use different switch characters e.g. '-' or '/'</p>
http://stackoverflow.com/questions/1243484/recommended-barcode-type/1244070#12440703Answer by Simon Temlett for Recommended barcode type?Simon Temlett2009-08-07T10:41:43Z2009-08-07T10:41:43Z<p>I'd maybe suggest using EAN/UPC, especially if you're using it in a small shop.</p>
<p>The products in the shop will generally carry their own barcodes (which will be EAN8/13 if you're in Europe or UPCA/E in the States) and so those can be entered into your database and then only print a barcode label for those products that don't have a barcode.</p>
<p>The product id's that you generate will be then of the same format of those already on the product. You will need to start your own codes with a 2 (in the case of EAN13) as this is reserved for 'in house' barcodes and will be guaranteed not to overlap with any manufacturers barcodes.</p>
<p>One potential downside of not generating your own codes for everything is that a manufacturer is required to change the barcode on a product is there is a change of packaging. For example, an Olympic branded Snickers bar will have a different barcode to a standard Snickers bar. Same product, different packaging, different barcode which can present issues for stock taking, sales analysis, etc.</p>
<p>The ANL-80 is a CCD scanner and if you print your barcode at about 40 x 25mm I think you should get good readability, as at that size there is good separation between the barcode lines and the line density of the EAN symbology is not that great.</p>
<p>Simon</p>
http://stackoverflow.com/questions/1237000/how-to-calculate-the-number-of-rows-for-a-report-and-hide-a-header/1238866#12388660Answer by Simon Temlett for How to calculate the number of rows for a report and hide a header.Simon Temlett2009-08-06T13:24:03Z2009-08-06T13:24:03Z<p>I'm not familiar with Rave Reports but could you not default the header and footer to not being visible and then in the beforeprint, set them visible when you execute the code that triggers when the comment data is present.</p>
<p>Simon</p>
http://stackoverflow.com/questions/1154243/c-visual-studio-code-validation/1154261#11542611Answer by Simon Temlett for C# Visual Studio Code ValidationSimon Temlett2009-07-20T15:29:16Z2009-07-20T15:29:16Z<p>Are you thinking of <a href="http://code.msdn.microsoft.com/sourceanalysis" rel="nofollow">StyleCop</a>?</p>
http://stackoverflow.com/questions/1091710/c-timer-or-thread-sleep/1091786#10917860Answer by Simon Temlett for C# Timer or Thread.SleepSimon Temlett2009-07-07T11:22:17Z2009-07-07T11:22:17Z<p>I required a thread to fire once every minute (<a href="http://stackoverflow.com/questions/479376">see question here</a>) and I've now used a DispatchTimer based on the answers I received.</p>
<p>The answers provide some references which you might find useful.</p>
http://stackoverflow.com/questions/1012881/net-different-references-list-for-debug-release2.NET Different References List for Debug / ReleaseSimon Temlett2009-06-18T14:15:52Z2009-06-18T14:23:29Z
<p>In my debug build I have a reference to a DLL that is only required in the Debug configuration (the reference is for CodeSite, a logging tool).</p>
<p>Is it possible to exclude this reference in the Release build (my logging class only uses this reference when built in the Debug configuration).</p>
<p>Using VB.NET and VS2008.</p>
http://stackoverflow.com/questions/479376/wpf-net-best-way-to-trigger-an-event-every-minute6WPF .NET Best way to trigger an event every minuteSimon Temlett2009-01-26T10:38:38Z2009-06-10T05:59:20Z
<p>I have an app that needs to check a database table every minute. The table is indexed by the time of day and so the app needs to run this check every minute.</p>
<p>What's the best of way of doing this? I can create a background worker thread but if I set it to sleep for 60 secs after each check I will eventually miss a minute because of the overhead of calling the check.</p>
<p>Do I remember the minute I checked and then check, every 15 secs say and if the minute has changed performed the check then.</p>
<p>Or is there some other approach I should use?</p>
<p>I'm using WPF, VS2008 and VB.NET</p>
<p>TIA,</p>
<p>Simon</p>
http://stackoverflow.com/questions/949844/windows-installation-folders6Windows Installation FoldersSimon Temlett2009-06-04T10:56:16Z2009-06-04T12:54:23Z
<p>Where do I find a definitive guide as to where, when I am installing a new application into Windows, the application exe's, database tables, configuration files should go?</p>
<p>Also guidelines to which registry keys should be used for persisting user and application data.</p>
<p>Best regards,</p>
<p>Simon</p>
http://stackoverflow.com/questions/925348/printing-to-pdf/925501#9255010Answer by Simon Temlett for printing to pdfSimon Temlett2009-05-29T11:15:38Z2009-05-29T11:15:38Z<p>You don't say how you are generating your reports but <a href="http://www.gnostice.com" rel="nofollow">Gnostice</a> have a number of tools that may of help to you.</p>
http://stackoverflow.com/questions/848202/net-check-if-another-application-is-running0.NET Check if another application is runningSimon Temlett2009-05-11T13:51:07Z2009-05-11T17:30:35Z
<p>I have an application that provides core services for a series of other applications.</p>
<p>When another of these applications is started, I want to check that the service application is running and if not shutdown.</p>
<p>What is the best method to check for the existence of the other app? I'm thinking that I should be using a global mutex in the services app and checking for it's existence in the other apps. Is this the correct way to proceed?</p>
http://stackoverflow.com/questions/706902/best-auto-update-components-for-delphi/708773#7087731Answer by Simon Temlett for Best auto-update component(s) for DelphiSimon Temlett2009-04-02T08:14:38Z2009-04-02T08:14:38Z<p>I use TWebUpdate from <a href="http://tmssoftware.com" rel="nofollow">TMS Components</a> and am very happy with it. I haven't used LMD so unfortunately am not able to provide a comparison.</p>
<p>TMS also supply a whole raft of other components so if your re-writes require any else, especially if you want some shiny UI enhancements (TMS have a range of iPhone-style components) then the website is certainly worth a visit.</p>
<p>They seem fairly active in their support forums (although I haven't had need to use them for the WebUpdate component) and they have a fairly regular release cycle.</p>
http://stackoverflow.com/questions/515309/what-does-cmd-c-mean/515316#51531612Answer by Simon Temlett for What does cmd /C mean?Simon Temlett2009-02-05T10:26:34Z2009-02-05T10:26:34Z<p>/C Carries out the command specified by the string and then terminates</p>
<p>You can get all the cmd command line switches by typing cmd /?</p>
http://stackoverflow.com/questions/513870/delphi-prism-vs-2008-switching-from-code-to-design-with-one-key/515106#5151062Answer by Simon Temlett for Delphi Prism / VS 2008: Switching from code to design with one key?Simon Temlett2009-02-05T09:04:17Z2009-02-05T09:04:17Z<p>Have you seen the free <a href="http://www.usysware.com/dpack/" rel="nofollow">DPack</a>. This is a series of IDE enhancements designed to make you more productive and includes a Delphi keyboard mapping for Visual Studio.</p>
<p>Best regards,</p>
<p>Simon</p>
http://stackoverflow.com/questions/362321/wcf-socket-error-100450WCF Socket Error 10045Simon Temlett2008-12-12T09:38:32Z2009-01-22T13:11:41Z
<p>My colleague has an app that hosts a simple WCF service with a net.tcp endpoint. I can add the service reference to any app I create using the address net.tcp://192.168.0.22:9999/GSS-POS/QueryDispatcher/mex</p>
<p>However, when he tries to add the service reference to an app running on his machine he immediately gets a socket error 10045. We've tried using both net.tcp://localhost:9999/GSS-POS/QueryDispatcher/mex</p>
<p>and</p>
<p>net.tcp://192.168.0.22:9999/GSS-POS/QueryDispatcher/mex</p>
<p>He's tried re-installing Visual Studio 2008, Service Pack 1 and XP Service Pack 3 all to no avail. Can anybody provide any pointers?</p>
<p>UPDATE: This appears as though it is related to Visual Studio. By using the WCF Client test app, it is possible to see the service. It seems as though VS is having the problem adding the service reference.</p>
<p>UPDATE 2: Adding a reference with VS 2008 works with named pipe and http transport. The problem only manifests itself when trying to add a service reference which utilises a net.tcp endpoint.</p>
<p>Best regards,</p>
<p>Simon</p>
http://stackoverflow.com/questions/304550/spin-control-in-delphi/438393#4383930Answer by Simon Temlett for Spin Control in DelphiSimon Temlett2009-01-13T09:07:37Z2009-01-13T09:07:37Z<p><a href="http://tmssoftware.com" rel="nofollow">TMS Software</a> do a wide range of components including spin edits (fancy an iPhone style one!) and I have found their support through the newsgroups to be excellent.</p>
http://stackoverflow.com/questions/413919/want-to-display-a-3d-model-on-the-iphone-how-to-get-started/419942#4199421Answer by Simon Temlett for Want to display a 3D model on the iPhone: how to get started?Simon Temlett2009-01-07T11:20:53Z2009-01-07T11:20:53Z<p>I'm having a play with iPhone development for a bit of fun and bought Beginning iPhone Development by Dave Mark and Jeff LaMarche (ISBN13: 978-1-4302-1626-1) and am enjoying working through the chapters. I have a Win32 Delphi background with a bit of .NET and so Objective C is very new to me.</p>
<p>One of the chapters is on OpenGL and Quartz which may be of interest to you. I've haven't got that far yet so I can't really comment on how useful it will be for yourself but the writing style is very accessible and it's paced well (for me anyway).</p>
<p>The initial chapters explain exactly how to get up an running with a good introduction to Xcode and InterfaceBuilder.</p>
http://stackoverflow.com/questions/417010/can-i-use-a-net-dll-in-delphi-2007-for-win32/417082#417082-1Answer by Simon Temlett for Can I Use a .NET DLL in "Delphi 2007 for Win32"?Simon Temlett2009-01-06T16:02:25Z2009-01-06T16:02:25Z<p>I don't think you can do that, directly mixing managed and unmanaged code in the the same app.</p>
<p>However RemObjects have a framework called <a href="http://www.remobjects.com/hydra.aspx" rel="nofollow">Hydra</a> that allows you to use .Net and Win32 in the same application.</p>
http://stackoverflow.com/questions/369903/where-are-all-the-delphi-developers/370932#3709321Answer by Simon Temlett for Where are all the Delphi Developers?Simon Temlett2008-12-16T10:30:48Z2008-12-16T10:30:48Z<p>There is a good community in the UK on <a href="http://cix.co.uk" rel="nofollow">cix</a> which I have found invaluable over the years. There's unfortunately getting less traffic but the quality of postings and responses is generally excellent.</p>
<p>Ironically it was the Delphi conference on CIX that pointed me here :-)</p>
http://stackoverflow.com/questions/301604/creating-wcf-applications-without-svcutil-exe/301668#3016683Answer by Simon Temlett for Creating WCF applications without svcutil.exe?Simon Temlett2008-11-19T11:49:11Z2008-11-19T11:49:11Z<p>What version of Visual Studio are you using?</p>
<p>VS2008 incorporates the functionality of the svcutil tool. To generate the proxy, click on the Solution Explorer and select 'Add Service Reference', you can then enter the URL of the server, give the namespace a name and off you go.</p>
<p>You may want to expand your question to provide some more details of what you are wanting to achieve.</p>
http://stackoverflow.com/questions/1561062/is-installshield-the-only-way-to-go-for-delphi-installations/1561082#1561082Comment by Simon Temlett on Is Installshield the only way to go for Delphi Installations?Simon Temlett2009-10-13T16:15:37Z2009-10-13T16:15:37Z+1 I replaced Wise with InnoSetup and ISTool a long time ago and have never looked back. http://stackoverflow.com/questions/1012881/net-different-references-list-for-debug-release/1012933#1012933Comment by Simon Temlett on .NET Different References List for Debug / ReleaseSimon Temlett2009-06-18T15:00:06Z2009-06-18T15:00:06ZThank you, exactly as required. Thanks also Jon.http://stackoverflow.com/questions/925348/printing-to-pdf/925501#925501Comment by Simon Temlett on printing to pdfSimon Temlett2009-05-29T16:38:59Z2009-05-29T16:38:59ZWith the mix of report formats I think, as others have said, your best bet is to go down the printer route.http://stackoverflow.com/questions/479376/wpf-net-best-way-to-trigger-an-event-every-minute/479392#479392Comment by Simon Temlett on WPF .NET Best way to trigger an event every minuteSimon Temlett2009-01-26T11:22:50Z2009-01-26T11:22:50ZSo it does! Thanks a lot.