User mliesen - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T11:50:28Z http://stackoverflow.com/feeds/user/20715 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1719711/does-anyone-know-of-an-http-server-library-that-works-on-the-compact-framework/1775627#1775627 0 Answer by mliesen for Does anyone know of an HTTP Server library that works on the Compact Framework? mliesen 2009-11-21T14:34:14Z 2009-11-21T14:34:14Z <p>If spending a lot of money is an option, checkout "Padarn" at <a href="http://www.opennetcf.com" rel="nofollow">http://www.opennetcf.com</a>. It is supposed to give you a small footprint ASP.NET on your CE device.</p> http://stackoverflow.com/questions/1719711/does-anyone-know-of-an-http-server-library-that-works-on-the-compact-framework/1775621#1775621 0 Answer by mliesen for Does anyone know of an HTTP Server library that works on the Compact Framework? mliesen 2009-11-21T14:29:44Z 2009-11-21T14:29:44Z <p>I'm using <a href="http://www.remobjects.com" rel="nofollow">RemObjects Internet Pack</a> for .NET (and CF .NET). It's free and source code is included.</p> <p>It contains a simple but working HTTP Server class. The webservices part you will have to code yourself.</p> http://stackoverflow.com/questions/1548141/switch-compilation-between-compact-and-full-net-framework/1610608#1610608 0 Answer by mliesen for Switch compilation between compact and full .net framework? mliesen 2009-10-22T23:34:16Z 2009-10-22T23:34:16Z <p>If you make a .NET CF library it will in most cases also run on the desktop .NET.</p> <p>You can even make this kind of development a bit easier by following the steps described <a href="http://www.danielmoth.com/Blog/2005/01/deploy-to-my-computer.html" rel="nofollow">here</a>. The link will help you set up Visual Studio so that you can compile for .NET CF but deploy to your desktop.</p> http://stackoverflow.com/questions/1442494/windows-ce-or-windows-embedded-standard/1456735#1456735 2 Answer by mliesen for Windows CE or Windows Embedded Standard? mliesen 2009-09-21T20:43:22Z 2009-09-21T20:51:47Z <p>Windows CE is</p> <p>(+) <strong>Much cheaper</strong>. A few $. If you are planing 100s of devices this is a big factor.</p> <p>(-) Not as easy to develop against, but the Windows API &amp; .NET are mostly the same.</p> <p>(+) Considered less vulnerable to viruses / hackers.</p> <p>(-) Lacking fancy stuff (like WPF, silverlight, good webserver/webbrowser).</p> <p>(+) <strong>Lighter</strong>, runs on less memory and slower CPU.</p> <p>Both XP embedded and Windows CE can be built using tools that allow you to add/remove components from med OS making it possible to trim it to your requirements. Most developer probably never does this but rather use what is "factory default" delivered with the hardware, or let the hardware guys make a custom made image for you.</p> <p>If you are only doing a few devices, XP embedded is the right choice.</p> http://stackoverflow.com/questions/1260670/rich-gui-application-in-delphi/1262711#1262711 0 Answer by mliesen for Rich GUI application in Delphi mliesen 2009-08-11T20:25:31Z 2009-08-11T20:25:31Z <p>Perhaps you should just draw the form yourself from onpaint ? (and handle all mouse, keyboard and focus issues)</p> <p>Just make you own mini-framework. Delphi is object oriented so it's a good tool for the job. I'm sure you can make it blitzing fast with a bit of help of GR32.</p> http://stackoverflow.com/questions/1254698/exchange-data-between-two-apps-across-pc-on-lan/1257250#1257250 1 Answer by mliesen for Exchange Data between two apps across PC on LAN mliesen 2009-08-10T21:14:12Z 2009-08-10T21:14:12Z <p>DCOM used to be a good method of interprocess communication. This was also one of Delphis strong points. Today I would <strong>strongly</strong> advice against using it.</p> <p>Depending on the nature of your project I'd choose either</p> <ul> <li>using a SQL server</li> <li>socket communication </li> </ul> http://stackoverflow.com/questions/1150397/issues-of-creating-a-new-windows-form-in-c/1150418#1150418 1 Answer by mliesen for issues of creating a new Windows Form in C# mliesen 2009-07-19T17:41:52Z 2009-07-19T17:41:52Z <p>All forms will run on the same thread, (unless you start a new thread and created the form within this thread).</p> http://stackoverflow.com/questions/918316/visual-studio-2008-non-obvious-but-useful-features/918382#918382 0 Answer by mliesen for Visual Studio 2008 non-obvious but useful features mliesen 2009-05-27T23:01:03Z 2009-05-27T23:01:03Z <p>With a little bit of tweaking, you can get your Compact Framework applications to deploy to your desktop instead of to the device/emulator. This makes debugging CF much nicer. </p> <p>Daniel Moth has a great blog post on the subject. </p> <p><a href="http://www.danielmoth.com/Blog/2005/01/deploy-to-my-computer.html" rel="nofollow">http://www.danielmoth.com/Blog/2005/01/deploy-to-my-computer.html</a></p> http://stackoverflow.com/questions/815758/simple-serial-point-to-point-communication-protocol/822251#822251 2 Answer by mliesen for Simple serial point-to-point communication protocol mliesen 2009-05-04T21:51:06Z 2009-05-04T21:51:06Z <p>My suggestion is modbus. It's an efficient and easy standard protocol for communication with devices that has sensors and parameters (for example a PLC). You can get the specifications at <a href="http://www.modbus.org" rel="nofollow">http://www.modbus.org</a>. It’s been around since 1979 and is gaining in popularity, you will have no problem finding examples and libraries. </p> http://stackoverflow.com/questions/170103/what-rare-programming-tools-do-you-use/170118#170118 3 Answer by mliesen for What rare programming tools do you use? mliesen 2008-10-04T10:54:15Z 2009-04-27T14:51:44Z <p>I often need to implement communication protocols. <a href="http://www.docklight.de/" rel="nofollow">DockLight</a> is a great tool for testing and debugging communication. It targets serial communication (RS232,RS485), but it's also nice when doing TCP/UDP stuff.</p> <p><a href="http://www.docklight.de/" rel="nofollow">http://www.docklight.de/</a></p> http://stackoverflow.com/questions/733672/how-to-integrate-dotnet-in-embedded/758406#758406 0 Answer by mliesen for how to integrate dotnet in embedded? mliesen 2009-04-16T23:09:42Z 2009-04-16T23:09:42Z <p>If your are talking about ASP.NET on a embedded device you will find that .NET Compact Framework has not built in support for ASP.NET.</p> <p>OpenNetCF has a product called <a href="http://www.opennetcf.com/Products/Padarn/tabid/267/Default.aspx" rel="nofollow">Padan</a> that brings a ASP.NET webserver to Windows CE.</p> http://stackoverflow.com/questions/757543/c-to-iec-61131-3-il-compiler/758367#758367 2 Answer by mliesen for C to IEC 61131-3 IL compiler mliesen 2009-04-16T22:58:13Z 2009-04-16T22:58:13Z <p>My guess is that a C to Pascal translator will not get you near enough for being worth the trouble. Structured text looks a lot like Pascal, but there are differences that you will need to fix everywhere.</p> <p>Not a bug issue, but don't forget that PLCs runtime enviroment is a bit different. A C applications starts at main() and ends when main() returns. A PLC calls it main() over and over again, 100:s of times per second and it never ends. Usally lengthy calculations and I/O needs to be coded in diffent fashion than a C appliation would use.</p> <p>Unless your C source is many many thousands lines of code - Rewrite it.</p> http://stackoverflow.com/questions/2767/do-you-have-any-recommended-add-ons-plugins-for-microsoft-visual-studio/727853#727853 0 Answer by mliesen for Do you have any recommended add-ons/plugins for Microsoft Visual Studio? mliesen 2009-04-07T22:32:04Z 2009-04-07T22:32:04Z <p>I don't fancy the Visual Studio bookmarks so I use DPACK to get the same kind of bookmarks as the Delph IDE provides.</p> <p><a href="http://www.usysware.com/dpack/" rel="nofollow">http://www.usysware.com/dpack/</a></p> http://stackoverflow.com/questions/363158/net-compact-framework-tips-tricks-and-gotchas/467191#467191 2 Answer by mliesen for .Net Compact Framework Tips, Tricks, and Gotchas mliesen 2009-01-21T21:55:53Z 2009-01-21T21:55:53Z <p>Most out of the ordinary stuff requires direct call the Windows API through P/Invoke. I have found <a href="http://www.pinvoke.net/" rel="nofollow">http://www.pinvoke.net/</a> to be a great resource for P/Invoke on both Win32 and Windows CE.</p> http://stackoverflow.com/questions/282580/image-dpi-explained/285895#285895 0 Answer by mliesen for Image DPI Explained mliesen 2008-11-13T00:11:02Z 2008-12-29T03:01:28Z <p>If the bitmap image has it's DPI specified we can print/display it as "intended" if we also know the DPI of the display/printer.</p> <p>I think one should think less about DPI and more about the intended size in cm/inch. One good thing about DPI is that it can give us a measurement of how good the output will look.</p> http://stackoverflow.com/questions/294198/games-to-improve-programming-skills/294567#294567 2 Answer by mliesen for Games to improve programming skills mliesen 2008-11-16T23:33:02Z 2008-11-16T23:33:02Z <p>C-robots.</p> <p><a href="http://en.wikipedia.org/wiki/Crobots" rel="nofollow">http://en.wikipedia.org/wiki/Crobots</a></p> http://stackoverflow.com/questions/236439/is-it-correct-to-compare-two-rounded-floating-point-numbers-using-the-operator/236507#236507 -1 Answer by mliesen for Is it correct to compare two rounded floating point numbers using the == operator? mliesen 2008-10-25T14:44:02Z 2008-11-07T22:41:10Z <p>If your absolut value is less than 2^23 for single or 2^52 for double you can use round() and then do the compare. Larger values can not be precisly stored and this opens for situations where N == N+1.</p> http://stackoverflow.com/questions/268537/what-features-of-the-upcoming-delphi-prism-would-you-like-to-see-in-delphi-for-wi/270528#270528 -2 Answer by mliesen for What features of the upcoming Delphi Prism would you like to see in Delphi for win32? mliesen 2008-11-06T22:13:13Z 2008-11-06T22:13:13Z <p>Garbage collector</p> http://stackoverflow.com/questions/170207/how-to-improve-garbage-collection-performance 8 How to improve garbage collection performance? mliesen 2008-10-04T12:00:22Z 2008-10-30T09:20:18Z <p>What kind of optimization patterns can be used to improve the performance of the garbage collector? </p> <p>My reason for asking is that I do a lot of embedded software using the Compact Framework. On slow devices the garbage collection can become a problem, and I would like to reduce the times the garbage collector kicks in, and when it does, I want it to finish quicker. I can also see that working with the garbage collector instead of against it could help improve any .NET or Java application, especially heavy duty web applications.</p> <p>Here are some of my thoughts, but I haven’t done any benchmarks.</p> <ul> <li>reusing temporary classes/arrays (keep down allocation count)</li> <li>keeping the amount of live objects to a minimum (faster collections)</li> <li>try to use structs instead of classes</li> </ul> http://stackoverflow.com/questions/243269/how-do-i-get-a-busy-wheel-on-windows-mobile-6/243323#243323 1 Answer by mliesen for How do I get a "busy wheel" on Windows Mobile 6? mliesen 2008-10-28T13:33:34Z 2008-10-28T13:33:34Z <p>Using compactframework.</p> <p>Spining wheel:</p> <p>System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.WaitCursor;</p> <p>Return to normal:</p> <p>System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.Default;</p> http://stackoverflow.com/questions/242584/will-you-use-delphi-prism/243248#243248 6 Answer by mliesen for Will you use Delphi Prism mliesen 2008-10-28T13:17:55Z 2008-10-28T13:17:55Z <p>If Delphi Prism had existed 5 years ago I would be using it right now (and loving it). </p> <p>But as Borland being a train wreck, I used C# for .NET development, and now I have kind of grown to like C# more than Delphi. </p> <p>Perhaps I'll use Delphi Prism to speed up migration of Delphi Win32 code to .NET.</p> http://stackoverflow.com/questions/230940/what-features-would-you-like-to-see-in-the-win32-delphi-compiler/231793#231793 0 Answer by mliesen for What features would you like to see in the win32 Delphi Compiler? mliesen 2008-10-23T22:26:42Z 2008-10-23T22:26:42Z <p>1) At all places where the compiler expects a list of stuff, allow the last element to be followed with the list separator. This makes is easier to move stuff around. It's in C# and I really like it!.</p> <pre><code>const mydata:array[0..2] of string=( 'one', 'two', 'three', ); </code></pre> <p>2) String litterals like in C#, </p> <pre><code>str:=@'This is line one this is the second line'; </code></pre> <p><em>Have not used Delphi 2009, so perhaps this is already onboard.</em></p> http://stackoverflow.com/questions/202147/start-another-application-from-a-compact-net-1-0-app/202373#202373 0 Answer by mliesen for Start another application from a Compact .Net 1.0 app mliesen 2008-10-14T18:54:56Z 2008-10-14T18:54:56Z <p>Take a look at</p> <p><a href="http://www.pinvoke.net/default.aspx/coredll/CreateProcess.html" rel="nofollow">http://www.pinvoke.net/default.aspx/coredll/CreateProcess.html</a></p> http://stackoverflow.com/questions/186431/calculating-days-of-week-given-a-week-number/186484#186484 3 Answer by mliesen for Calculating days of week given a week number mliesen 2008-10-09T09:09:04Z 2008-10-09T09:09:04Z <p>This calculation varies largely depending on where you live. For example, in Europe we start the week with a Monday, in US Sunday is the first day of the week. In UK week 1 is on Jan 1, others countries start week 1 on the week containing the first Thursday of the year.</p> <p>You can find more general information at <a href="http://en.wikipedia.org/wiki/Week#Week_number" rel="nofollow">http://en.wikipedia.org/wiki/Week#Week_number</a></p> http://stackoverflow.com/questions/168119/time-math-in-delphi/168994#168994 1 Answer by mliesen for Time math in Delphi mliesen 2008-10-03T21:38:04Z 2008-10-03T21:38:04Z <p>There is plenty of helpers in the SysUtils unit (and as gabr pointed out, also in DateUtils).</p> http://stackoverflow.com/questions/168805/what-real-life-good-habits-has-programming-given-you/168987#168987 4 Answer by mliesen for What real life good habits has programming given you? mliesen 2008-10-03T21:32:06Z 2008-10-03T21:32:06Z <p>I use merge sort whenever I got a big pile of stuff that needs to be sorted. </p> http://stackoverflow.com/questions/157354/is-mathematics-necessary-for-programming/157474#157474 0 Answer by mliesen for Is mathematics necessary for programming? mliesen 2008-10-01T13:03:37Z 2008-10-01T13:03:37Z <p>For your general GUI and Web applications only basic mathematics knowledge will ever be needed. </p> <p>Once a lifetime you might have an odd project where you need calculus or linear algebra.</p> <p>(If you do 3D game programming or some other specific field of programming, you might need it everyday thou)</p> http://stackoverflow.com/questions/147795/delphi-active-commercial-components/152163#152163 4 Answer by mliesen for Delphi Active Commercial Components mliesen 2008-09-30T07:59:58Z 2008-09-30T07:59:58Z <p>TeeChart - no D2009 yet.</p> <p>TeeChart Pro provides complete, quick and easy to use charting for Business, Real-Time, Financial and Scientific applications.</p> <p><a href="http://www.steema.com/" rel="nofollow">http://www.steema.com/</a></p> http://stackoverflow.com/questions/147795/delphi-active-commercial-components/152149#152149 1 Answer by mliesen for Delphi Active Commercial Components mliesen 2008-09-30T07:56:02Z 2008-09-30T07:56:02Z <p>XLSReadWrite II gives you fast and full access to xls and xlsx files without Excel. I use it all the time for reports and export/import data.</p> <p><a href="http://www.axolot.com/components/xlsrwii20.htm" rel="nofollow">http://www.axolot.com/components/xlsrwii20.htm</a></p> <p>No D2009 version available yet.</p> http://stackoverflow.com/questions/147865/will-learning-a-couple-of-languages-in-parallel-blow-my-mind/147885#147885 3 Answer by mliesen for Will learning a couple of languages in parallel blow my mind? mliesen 2008-09-29T08:09:43Z 2008-09-29T08:09:43Z <p>Probably no problem. Many languages share the same philosopy (C / Pascal), others share the same syntax (C#, Java, C, C++, Javascript). Others share the same framework (C#, F#, VB.NET)</p> <p>I would not try to something as different as Ruby and F# at the same time. But, on the other hand, they might be so different that it makes no harm.</p> http://stackoverflow.com/questions/1338294/which-features-define-delphi-2010/1339247#1339247 Comment by mliesen on Which features define Delphi 2010? mliesen 2009-08-27T23:26:15Z 2009-08-27T23:26:15Z This is old news - NEW! Delphi 7 Classic mode layout option with tabbed toolbar LOL http://stackoverflow.com/questions/1260670/rich-gui-application-in-delphi/1263605#1263605 Comment by mliesen on Rich GUI application in Delphi mliesen 2009-08-12T18:18:16Z 2009-08-12T18:18:16Z Actually lkessler example points to a WPF example, and that is not nativ controls. WPF is a VERY GOOD match for the requirements in this question if you skip the &quot;Delphi 2009&quot; part. http://stackoverflow.com/questions/1260181/delphi-2009-how-to-communicate-between-windows-service-desktop-application-und/1260897#1260897 Comment by mliesen on Delphi 2009: How to communicate between Windows service & desktop application under Vista? mliesen 2009-08-11T20:10:33Z 2009-08-11T20:10:33Z Is this absolute true? I've done a several windows services acting as both TCP server and TCP client. They have all run fine as &quot;local system&quot;. I have always believed that the restriction is on network resources (//machine/resource/...). http://stackoverflow.com/questions/945236/compact-framework-charting/945410#945410 Comment by mliesen on Compact Framework Charting mliesen 2009-06-08T20:47:44Z 2009-06-08T20:47:44Z .NET CF only supports integer pixel position (with a few exceptions), a fullframework library probably uses floating point positioning. http://stackoverflow.com/questions/139684/delphi-free-and-open-source-components-that-are-still-maintained/142726#142726 Comment by mliesen on Delphi Free and Open Source Components that are still maintained. mliesen 2009-05-21T00:43:01Z 2009-05-21T00:43:01Z Has anybody managed to get Indy 9 to work in D2009? http://stackoverflow.com/questions/815758/simple-serial-point-to-point-communication-protocol/822251#822251 Comment by mliesen on Simple serial point-to-point communication protocol mliesen 2009-05-05T17:11:18Z 2009-05-05T17:11:18Z It's a lot of documentation to read through, but it actually isn't a lot of code when you implement it. The effort is probably on pair with the suggested HDLC. http://stackoverflow.com/questions/537577/where-do-you-keep-your-code/537624#537624 Comment by mliesen on Where do you keep your code? mliesen 2009-02-11T23:55:32Z 2009-02-11T23:55:32Z I actually use c:&#95;projects as it makes it a bit faster to find. http://stackoverflow.com/questions/410112/linq-in-win32-delphi/410123#410123 Comment by mliesen on LINQ in win32 DELPHI mliesen 2009-01-04T00:50:54Z 2009-01-04T00:50:54Z - you have a small error, you need to replace &quot;it&quot; with &quot;x&quot;. Delphi Win32 lacks almost every feauture that makes the second example work. There is no VAR. string and char are not objects, and you don't have the short syntax lamda expressions. So if you can do it, it would be a lot uglier. http://stackoverflow.com/questions/395557/are-framework-dependencies-a-problem/396626#396626 Comment by mliesen on Are framework dependencies a problem? mliesen 2008-12-30T00:08:27Z 2008-12-30T00:08:27Z I my opinion Delphi is not stable. Almost no D1 - D2007 real world project will work with a simple recompiled in D2009. If you use any 3rd party components, upgrading to new Delphi is always a mess. I know programmers who has sticked with Delphi7 as every release since has been rather &quot;unstable&quot;. http://stackoverflow.com/questions/289712/how-do-you-format-your-compound-statements-in-delphi-and-c/290132#290132 Comment by mliesen on How do you format your Compound Statements in Delphi and C#? mliesen 2008-11-15T23:06:43Z 2008-11-15T23:06:43Z I fully like your first statement example, the compact format and the good use of indentation makes it much easier to read. Conserning the &quot;if x=y then z&quot;, I only write like this when z is very simple. Most often I write z on the next line with indentation. http://stackoverflow.com/questions/268537/what-features-of-the-upcoming-delphi-prism-would-you-like-to-see-in-delphi-for-wi/270528#270528 Comment by mliesen on What features of the upcoming Delphi Prism would you like to see in Delphi for win32? mliesen 2008-11-07T22:26:23Z 2008-11-07T22:26:23Z Wicked Flea, Your conservative logic is absurd. Why use a high level language at all when you can use assembler? CodeGear has many options to be backward compatible, ranging from compiler switches to introducing keywords for managed classes. http://stackoverflow.com/questions/268537/what-features-of-the-upcoming-delphi-prism-would-you-like-to-see-in-delphi-for-wi/270327#270327 Comment by mliesen on What features of the upcoming Delphi Prism would you like to see in Delphi for win32? mliesen 2008-11-07T01:01:38Z 2008-11-07T01:01:38Z A very good list! and they look like features that Codegear could implement relativly easy. Perhaps not so important now that we have generics, but there must have been hundereds of placers where this one-liner would have made sense in my code, property count: integer read internalList.count; http://stackoverflow.com/questions/242584/will-you-use-delphi-prism/243248#243248 Comment by mliesen on Will you use Delphi Prism mliesen 2008-10-28T22:03:19Z 2008-10-28T22:03:19Z Sorry, English is not my native language. What I ment to say was that 5 years ago, the state of Borland made it attractive to look for solutions elsewhere. As I also need to address .NET Compact Framework it actually was no other option than going C#. http://stackoverflow.com/questions/237715/delphi-to-net-c/237760#237760 Comment by mliesen on Delphi to .NET + C# mliesen 2008-10-28T13:28:42Z 2008-10-28T13:28:42Z I would add &quot;Interface&quot; to the pleasant suprise list. Delphis interfaces are terrible to work with as they require reference couting. In C# they are smooth as silk. http://stackoverflow.com/questions/230940/what-features-would-you-like-to-see-in-the-win32-delphi-compiler/230977#230977 Comment by mliesen on What features would you like to see in the win32 Delphi Compiler? mliesen 2008-10-26T13:54:12Z 2008-10-26T13:54:12Z HaHaha. For free, you crack me up. The decent thing would be to make each end every version solid through bug fixes.