User mliesen - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T11:50:28Zhttp://stackoverflow.com/feeds/user/20715http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1719711/does-anyone-know-of-an-http-server-library-that-works-on-the-compact-framework/1775627#17756270Answer by mliesen for Does anyone know of an HTTP Server library that works on the Compact Framework?mliesen2009-11-21T14:34:14Z2009-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#17756210Answer by mliesen for Does anyone know of an HTTP Server library that works on the Compact Framework?mliesen2009-11-21T14:29:44Z2009-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#16106080Answer by mliesen for Switch compilation between compact and full .net framework?mliesen2009-10-22T23:34:16Z2009-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#14567352Answer by mliesen for Windows CE or Windows Embedded Standard?mliesen2009-09-21T20:43:22Z2009-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 & .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#12627110Answer by mliesen for Rich GUI application in Delphimliesen2009-08-11T20:25:31Z2009-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#12572501Answer by mliesen for Exchange Data between two apps across PC on LANmliesen2009-08-10T21:14:12Z2009-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#11504181Answer by mliesen for issues of creating a new Windows Form in C#mliesen2009-07-19T17:41:52Z2009-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#9183820Answer by mliesen for Visual Studio 2008 non-obvious but useful featuresmliesen2009-05-27T23:01:03Z2009-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#8222512Answer by mliesen for Simple serial point-to-point communication protocolmliesen2009-05-04T21:51:06Z2009-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#1701183Answer by mliesen for What rare programming tools do you use?mliesen2008-10-04T10:54:15Z2009-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#7584060Answer by mliesen for how to integrate dotnet in embedded?mliesen2009-04-16T23:09:42Z2009-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#7583672Answer by mliesen for C to IEC 61131-3 IL compilermliesen2009-04-16T22:58:13Z2009-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#7278530Answer by mliesen for Do you have any recommended add-ons/plugins for Microsoft Visual Studio?mliesen2009-04-07T22:32:04Z2009-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#4671912Answer by mliesen for .Net Compact Framework Tips, Tricks, and Gotchasmliesen2009-01-21T21:55:53Z2009-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#2858950Answer by mliesen for Image DPI Explainedmliesen2008-11-13T00:11:02Z2008-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#2945672Answer by mliesen for Games to improve programming skillsmliesen2008-11-16T23:33:02Z2008-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-1Answer by mliesen for Is it correct to compare two rounded floating point numbers using the == operator?mliesen2008-10-25T14:44:02Z2008-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-2Answer by mliesen for What features of the upcoming Delphi Prism would you like to see in Delphi for win32?mliesen2008-11-06T22:13:13Z2008-11-06T22:13:13Z<p>Garbage collector</p>
http://stackoverflow.com/questions/170207/how-to-improve-garbage-collection-performance8How to improve garbage collection performance?mliesen2008-10-04T12:00:22Z2008-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#2433231Answer by mliesen for How do I get a "busy wheel" on Windows Mobile 6?mliesen2008-10-28T13:33:34Z2008-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#2432486Answer by mliesen for Will you use Delphi Prismmliesen2008-10-28T13:17:55Z2008-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#2317930Answer by mliesen for What features would you like to see in the win32 Delphi Compiler?mliesen2008-10-23T22:26:42Z2008-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#2023730Answer by mliesen for Start another application from a Compact .Net 1.0 appmliesen2008-10-14T18:54:56Z2008-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#1864843Answer by mliesen for Calculating days of week given a week numbermliesen2008-10-09T09:09:04Z2008-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#1689941Answer by mliesen for Time math in Delphimliesen2008-10-03T21:38:04Z2008-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#1689874Answer by mliesen for What real life good habits has programming given you?mliesen2008-10-03T21:32:06Z2008-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#1574740Answer by mliesen for Is mathematics necessary for programming?mliesen2008-10-01T13:03:37Z2008-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#1521634Answer by mliesen for Delphi Active Commercial Componentsmliesen2008-09-30T07:59:58Z2008-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#1521491Answer by mliesen for Delphi Active Commercial Componentsmliesen2008-09-30T07:56:02Z2008-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#1478853Answer by mliesen for Will learning a couple of languages in parallel blow my mind?mliesen2008-09-29T08:09:43Z2008-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#1339247Comment by mliesen on Which features define Delphi 2010?mliesen2009-08-27T23:26:15Z2009-08-27T23:26:15ZThis is old news
- NEW! Delphi 7 Classic mode layout option with tabbed toolbar
LOLhttp://stackoverflow.com/questions/1260670/rich-gui-application-in-delphi/1263605#1263605Comment by mliesen on Rich GUI application in Delphimliesen2009-08-12T18:18:16Z2009-08-12T18:18:16ZActually 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 "Delphi 2009" part.http://stackoverflow.com/questions/1260181/delphi-2009-how-to-communicate-between-windows-service-desktop-application-und/1260897#1260897Comment by mliesen on Delphi 2009: How to communicate between Windows service & desktop application under Vista?mliesen2009-08-11T20:10:33Z2009-08-11T20:10:33ZIs this absolute true? I've done a several windows services acting as both TCP server and TCP client. They have all run fine as "local system". I have always believed that the restriction is on network resources (//machine/resource/...).http://stackoverflow.com/questions/945236/compact-framework-charting/945410#945410Comment by mliesen on Compact Framework Chartingmliesen2009-06-08T20:47:44Z2009-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#142726Comment by mliesen on Delphi Free and Open Source Components that are still maintained.mliesen2009-05-21T00:43:01Z2009-05-21T00:43:01ZHas anybody managed to get Indy 9 to work in D2009?http://stackoverflow.com/questions/815758/simple-serial-point-to-point-communication-protocol/822251#822251Comment by mliesen on Simple serial point-to-point communication protocolmliesen2009-05-05T17:11:18Z2009-05-05T17:11:18ZIt'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#537624Comment by mliesen on Where do you keep your code?mliesen2009-02-11T23:55:32Z2009-02-11T23:55:32ZI actually use c:_projects as it makes it a bit faster to find.http://stackoverflow.com/questions/410112/linq-in-win32-delphi/410123#410123Comment by mliesen on LINQ in win32 DELPHImliesen2009-01-04T00:50:54Z2009-01-04T00:50:54Z- you have a small error, you need to replace "it" with "x".
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#396626Comment by mliesen on Are framework dependencies a problem?mliesen2008-12-30T00:08:27Z2008-12-30T00:08:27ZI 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 "unstable".http://stackoverflow.com/questions/289712/how-do-you-format-your-compound-statements-in-delphi-and-c/290132#290132Comment by mliesen on How do you format your Compound Statements in Delphi and C#?mliesen2008-11-15T23:06:43Z2008-11-15T23:06:43ZI fully like your first statement example, the compact format and the good use of indentation makes it much easier to read.
Conserning the "if x=y then z", 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#270528Comment by mliesen on What features of the upcoming Delphi Prism would you like to see in Delphi for win32?mliesen2008-11-07T22:26:23Z2008-11-07T22:26:23ZWicked 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#270327Comment by mliesen on What features of the upcoming Delphi Prism would you like to see in Delphi for win32?mliesen2008-11-07T01:01:38Z2008-11-07T01:01:38ZA 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#243248Comment by mliesen on Will you use Delphi Prismmliesen2008-10-28T22:03:19Z2008-10-28T22:03:19ZSorry, 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#237760Comment by mliesen on Delphi to .NET + C#mliesen2008-10-28T13:28:42Z2008-10-28T13:28:42ZI would add "Interface" 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#230977Comment by mliesen on What features would you like to see in the win32 Delphi Compiler?mliesen2008-10-26T13:54:12Z2008-10-26T13:54:12ZHaHaha. For free, you crack me up. The decent thing would be to make each end every version solid through bug fixes.