User Mihai Limbasan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T16:38:08Z http://stackoverflow.com/feeds/user/14444 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/318236/how-do-you-validate-that-a-string-is-a-valid-ip-address-in-c/318343#318343 10 Answer by Mihai Limbasan for How do you validate that a string is a valid IP address in C++? Mihai Limbasan 2008-11-25T18:12:10Z 2009-11-11T15:42:22Z <p>This looks deceptively simple but has a few pitfalls. For example, many of the solutions posted in the previous answers assume that the quads are in base 10 - but a quad starting with a zero <strong>must</strong> be treated as a base 8 (octal) number, hence for example any quad part starting with zero and containing the digits 8 or 9 is not valid. I.e, the IP number <code>192.168.1.010</code> is <em>not</em> <code>192.168.1.10</code> but in reality is <code>192.168.1.8</code>, and the IP number <code>192.168.019.14</code> is not valid since the third quad contains the invalid base 8 digit 9.</p> <p>I emphatically encourage you to use the functions provided by the socket library included in your operating system or compiler environment.</p> <p>Edit: (Thought it was implicit, but) of course, you can also have hexadecimal quads, a la <code>192.168.1.0x0A</code> for 192.168.1.10, and of course you can mix and match to your sadistic content happily using upper and lower case, a la <code>0xC0.0xa8.1.010</code> for 192.168.1.8. Try some examples using ping if you want to have fun. This works just fine cross-platform (tested a while back while swearing under Linux, NetBSD, and Win32.)</p> <p>Further edit in response to KaluSingh Gabbar's request: For example, you can specify <code>192.168.1.10</code> as <code>0xc0a8010a</code> and it still represents a valid IP number, a la:</p> <pre><code>[mihailim@home ~]$ ping 0xc0a8010a PING 0xc0a8010a (192.168.1.10) 56(84) bytes of data. ^C --- 0xc0a8010a ping statistics --- 3 packets transmitted, 0 received, 100% packet loss, time 2479ms </code></pre> http://stackoverflow.com/questions/1435431/compiling-openssl-on-windows/1435487#1435487 2 Answer by Mihai Limbasan for Compiling OpenSSL on windows Mihai Limbasan 2009-09-16T21:09:22Z 2009-09-16T21:09:22Z <p>Copy <code>C:\Program Files\Microsoft Visual Studio 9.0\VC\Include\io.h</code> under the name <code>unistd.h</code> in the same directory and retry the build.</p> http://stackoverflow.com/questions/1388339/delphi2010-compiler-error-f2084-internal-error-l1737/1388636#1388636 0 Answer by Mihai Limbasan for Delphi2010 Compiler error: F2084 Internal Error: L1737 Mihai Limbasan 2009-09-07T10:21:38Z 2009-09-07T10:21:38Z <p>No idea as such, but that's definitely a linker error (the code starts with L) and most of these, in turn, are related to function or operator overloading. Those can arise from compiler bugs too, though - for example, in some older Delphi versions (D5 for sure, I think it was fixed in D7) you would get a linker error when using overloaded constructors that took optional parameters.</p> http://stackoverflow.com/questions/1333807/how-can-i-make-a-file-trully-immutable-non-deletable-and-read-only/1333981#1333981 15 Answer by Mihai Limbasan for How can I make a file trully immutable (non-deletable and read-only)? Mihai Limbasan 2009-08-26T11:13:27Z 2009-08-26T11:13:27Z <p>This is one of the "what would happen if that were true?" questions. It has nothing to do with the operating system, the points apply equally to any general purpose computer.</p> <p>Imagine that there were a way to somehow create an immutable file.</p> <ul> <li><p>What's there to stop someone from filling up a file system with an immutable file (or many of them)?</p></li> <li><p>What if someone were to create immutable files with pathnames the operating system needs (Windows example - NTUSER.DAT for some user, *nix example - /bin/ls, etc.)?</p></li> <li><p>What if the operating system decides it must move the file (e.g., while defragmenting or otherwise reorganizing the file system)?</p></li> <li><p>What if a piece of malware replaces a system file with a copy of itself then makes that file immutable to prevent anyone from ever cleaning the system?</p></li> </ul> <p>I feel the question is incomplete as it is now. Could you edit it to include more details about the underlying problem you're trying to solve?</p> http://stackoverflow.com/questions/1221197/are-there-any-good-free-cheap-delphi-grid-controls/1221379#1221379 8 Answer by Mihai Limbasan for Are there any good free/cheap Delphi grid controls? Mihai Limbasan 2009-08-03T09:19:54Z 2009-08-03T09:19:54Z <p>Virtual TreeView is very much alive and development is continuing. See its new home here: <a href="http://code.google.com/p/virtual-treeview/" rel="nofollow">http://code.google.com/p/virtual-treeview/</a></p> http://stackoverflow.com/questions/934950/how-to-make-binary-distribution-of-qt-application-for-linux/935124#935124 1 Answer by Mihai Limbasan for How to make binary distribution of Qt application for Linux Mihai Limbasan 2009-06-01T14:42:25Z 2009-06-01T14:42:25Z <p>Not an answer as such (sybreon covered that), but please note that you are <strong>not</strong> allowed to distribute your binary if it is statically linked against Qt, unless you have bought a commercial license, otherwise your entire binary falls under the GPL (or you're in violation of Qt's license.)</p> <p>If you have a commercial license, never mind.</p> <p>If you don't have a commercial license, you have two options:</p> <ol> <li><p>Link dynamically against Qt v4.5.0 or newer (the LGPL versions - you may not use the previous versions except in open source apps), or</p></li> <li><p>open your source.</p></li> </ol> http://stackoverflow.com/questions/927214/how-can-i-get-around-the-lack-of-a-finally-block-in-php/927236#927236 4 Answer by Mihai Limbasan for How can I get around the lack of a finally block in PHP? Mihai Limbasan 2009-05-29T17:36:58Z 2009-05-29T17:36:58Z <p>Solution, no. Irritating cumbersome workaround, yes:</p> <pre><code>$stored_exc = null; try { // Do stuff } catch ($exc) { $stored_exc = $exc; // Handle an error } // "Finally" here, clean up after yourself if ($stored_exc) { throw($stored_exc); } </code></pre> <p>Yucky, but should work.</p> http://stackoverflow.com/questions/925348/printing-to-pdf/925868#925868 6 Answer by Mihai Limbasan for printing to pdf Mihai Limbasan 2009-05-29T13:08:08Z 2009-05-29T13:08:08Z <p>The free, open source <a href="http://sourceforge.net/projects/pdfcreator/" rel="nofollow">PDFCreator</a> can function as a virtual printer but it's also usable via COM. The default setup even includes COM examples.</p> <p>You can check the COM samples in the SourceForge SVN repository right here: <a href="http://pdfcreator.svn.sourceforge.net/viewvc/pdfcreator/trunk/COM/" rel="nofollow">http://pdfcreator.svn.sourceforge.net/viewvc/pdfcreator/trunk/COM/</a></p> <p>Delphi and ActiveX get along superbly so you should not have much trouble.</p> http://stackoverflow.com/questions/809794/use-both-static-and-dynamically-linked-libraries-in-gcc/809821#809821 0 Answer by Mihai Limbasan for Use both static and dynamically linked libraries in gcc Mihai Limbasan 2009-05-01T01:06:07Z 2009-05-01T01:06:07Z <p>Try passing in the paths to the library files you're linking against on the linker command line (be they .a or .so libraries) and drop -static. That should do the trick.</p> http://stackoverflow.com/questions/808737/how-do-you-create-a-computer-or-scripting-language-for-an-application/808749#808749 3 Answer by Mihai Limbasan for How do you create a computer or scripting language for an application? Mihai Limbasan 2009-04-30T19:57:11Z 2009-04-30T20:03:53Z <p>You could take a look at <a href="http://www.lua.org/about.html" rel="nofollow">LUA</a> - I've used it to great success each time I asked myself the question "How would I automate <em>insert task here</em> in <em>insert one of my apps here</em>?"</p> <p>Edit: Here are some examples (taken from the <a href="http://lua-users.org/wiki/LuaLinks" rel="nofollow">links page</a>, admittedly, unwieldy <a href="http://lua-users.org/wiki/" rel="nofollow">Lua Wiki</a>) on how you could embed Lua in your app:</p> <blockquote> <ul> <li><a href="http://www.heavycoder.com/tutorials/lua%5Fembed.php" rel="nofollow">Embedding Lua in C: Using Lua from inside C</a></li> <li><a href="http://www.debian-administration.org/articles/264" rel="nofollow">Embedding a scripting language inside your C/C++ code</a></li> <li><a href="http://www.ibm.com/developerworks/linux/library/l-lua.html" rel="nofollow">Embeddable scripting with Lua</a></li> </ul> </blockquote> http://stackoverflow.com/questions/794663/net-convert-number-to-string-representation-1-to-one-2-to-two-etc/794674#794674 0 Answer by Mihai Limbasan for .NET convert number to string representation (1 to one, 2 to two, etc...) Mihai Limbasan 2009-04-27T18:26:59Z 2009-04-27T18:26:59Z <p>No, there is no such built-in class or method.</p> http://stackoverflow.com/questions/783085/sqliite-how-to-add-special-data/783192#783192 0 Answer by Mihai Limbasan for SQLIite - how to add special data? Mihai Limbasan 2009-04-23T19:27:51Z 2009-04-23T19:27:51Z <p>No, there is no way to do that, you will have to use a "special" table to carry data within the file, or you will have to use external means.</p> <p>There are, however, two version counters stored within the database itself: the schema_version and the user_version (see <a href="http://www.sqlite.org/pragma.html#version" rel="nofollow">Pragmas to query/modify version values</a> for details.) Perhaps you could abuse those. Please keep in mind, though, that by default the sqlite3 shell application does not store those when you use the .dump command to dump the database into a textual representation.</p> http://stackoverflow.com/questions/769683/show-tables-in-postgresql/769706#769706 9 Answer by Mihai Limbasan for show tables in postgresql Mihai Limbasan 2009-04-20T19:12:57Z 2009-04-20T19:12:57Z <p>From the <code>psql</code> CLI, enter the <strong><code>\dt</code></strong> command. Programmatically (or from the <code>psql</code> interface too, of course),</p> <pre><code>SELECT * FROM pg_catalog.pg_tables </code></pre> <p>(the system tables live in the pg_catalog database.)</p> http://stackoverflow.com/questions/768347/setting-a-variable-from-an-executable/768404#768404 0 Answer by Mihai Limbasan for Setting a variable from an executable Mihai Limbasan 2009-04-20T14:08:27Z 2009-04-20T14:36:11Z <p>Edit: Romulo A. Ceccon posted <a href="http://stackoverflow.com/questions/768347#768524">a much better solution</a> which doesn't involve any file system access and dirty tricks. Left this here for reference (it works with command.com as well if you need 9x compatibility), but please prefer Romulo's solution.</p> <p><hr /></p> <p>Go through an environment variable you set by using an intermediate helper script you dynamically generate from a template. You will need write permissions somewhere, otherwise it cannot be done (the Windows command shell language is very, very limited.)</p> <p>Let's call your helper script template <code>helper.tpl</code> with the following contents:</p> <pre><code>set INTERMEDVAR= </code></pre> <p>Make sure that <code>helper.tpl</code> has only a single line (no trailing CRLF!) and make sure you don't have any spaces after the equals sign there.</p> <p>Now, in your main script, capture the output from your command into a temporary file (let's call it <code>my_output_file.tmp</code>):</p> <pre><code>cmd /k ""executable" "param1" "param2"" &gt; my_output_file.tmp </code></pre> <p>Then copy the contents of the helper template and the output together into your helper script, let's call it <code>my_helper_script.cmd</code>:</p> <pre><code>copy /b helper.tpl + my_output_file.tmp my_helper_script.cmd </code></pre> <p>Then evaluate the helper script in the current context:</p> <pre><code>call my_helper_script.cmd </code></pre> <p>Now the INTERMEDVAR variable is set to the first line of the output from "executable" (if it outputs more than one line, you're on your own...) You can now invoke IE:</p> <pre><code>start iexplore.exe "%INTERMEDVAR%" </code></pre> <p>And don't forget to clean up the created files:</p> <pre><code>del /q /f my_output_file.tmp my_helper_script.cmd </code></pre> <p>This will obviously not work when invoked multiple times in parallel - you'll have to parametrize the temporary file and helper script names using the current cmd.exe's PID (for example) so that they won't overwrite each other's output, but the principle is the same.</p> <p>However, if you can get a real shell, use that. cmd.exe is extremely cumbersome.</p> http://stackoverflow.com/questions/768125/prevent-pocket-pc-to-go-to-landscape-mode/768174#768174 1 Answer by Mihai Limbasan for Prevent Pocket-PC to go to landscape Mode. Mihai Limbasan 2009-04-20T13:09:32Z 2009-04-20T13:09:32Z <p>No, and even if there were it would involve hooks, which is a really, really bad idea on an embedded device.</p> <p>But you <em>can</em> change the screen orientation to whatever you like, since you obviously know what it should be. See <a href="http://msdn.microsoft.com/en-us/library/ms839354.aspx" rel="nofollow">Developing Screen Orientation-Aware Applications</a> -> <a href="http://msdn.microsoft.com/en-us/library/ms839354.aspx#screen%5Forientation%5Fawareness%5Ftopic2" rel="nofollow">Changing Screen Orientation</a> for more details.</p> <p>Edit: Just realized you're stuck with C# / .NETCF. Don't know that part of the framework, but I'll leave the answer here for reference, perhaps it will point you in the right direction. The concepts explained in tat article are still valid, of course.</p> http://stackoverflow.com/questions/763922/does-somebody-know-the-current-status-of-graphics32/763932#763932 3 Answer by Mihai Limbasan for Does somebody know the current status of Graphics32? Mihai Limbasan 2009-04-18T18:42:05Z 2009-04-19T11:50:58Z <p>You could try asking that on the mailing list here: <a href="http://news.graphics32.org" rel="nofollow">news.graphics32.org</a>. <a href="http://graphics32.org/news/newsgroups.php?search%5Ftxt=%22delphi%2B2009%22&amp;search=Search&amp;group=graphics32.general" rel="nofollow">This search for "delphi 2009" on that page</a> currently yields this result:</p> <p><a href="http://graphics32.org/news/newsgroups.php?art%5Fgroup=graphics32.general&amp;article%5Fid=8832" rel="nofollow">Graphic32 &amp; delphi 2009</a></p> <p>No, there is no public SCM repository.</p> http://stackoverflow.com/questions/764221/larger-than-memory-data-structures-and-how-they-are-typically-handled/764238#764238 1 Answer by Mihai Limbasan for Larger than memory data structures and how they are typically handled Mihai Limbasan 2009-04-18T21:27:46Z 2009-04-18T21:27:46Z <p>You might want to take a look at <a href="http://www.sqlite.org/" rel="nofollow">SQLite</a>. The <a href="http://www.sqlite.org/cvstrac/dir?d=sqlite/src" rel="nofollow">code base</a> is much smaller than Berkeley DB, it's public domain, it's very clearly organized and commented, and the <a href="http://www.sqlite.org/docs.html" rel="nofollow">out-of-source documentation</a> is excellent. Taught me a lot about btrees in the real world</p> http://stackoverflow.com/questions/760739/delphi-transparent-controls-turn-opaque-on-netbooks/760915#760915 3 Answer by Mihai Limbasan for Delphi: Transparent controls turn opaque on netbooks Mihai Limbasan 2009-04-17T15:34:46Z 2009-04-17T15:34:46Z <p>This has nothing to do with the brand of the system as such. In the order of likelihood, check these (assuming you're talking about Windows systems):</p> <ul> <li><p>Transparency requires the display bit depth to be 32. If the display is set to 16-bit color, you can't draw transparent controls. User fixable, you should not autoswitch modes.</p></li> <li><p>Video driver issue - ensure the users have the manufacturer-recommended video drivers. If those fail, try the latest ones.</p></li> <li><p>Transparency (alpha-blending, actually) is only supported on Windows 2000 or higher - are you sure they're not running something older?</p></li> </ul> <p>It would help a lot if you got more data from your users (or if you have that data, please post it.) We're shooting blind here since you didn't even mention the OS used.</p> http://stackoverflow.com/questions/756984/what-can-be-done-in-vc-native-that-cant-be-done-with-vc/757021#757021 0 Answer by Mihai Limbasan for What can be done in VC++ (native) that can't be done with VC#? Mihai Limbasan 2009-04-16T16:47:31Z 2009-04-16T16:47:31Z <p>For example, it makes sense to use C++ if it's harder to translate the header files for existing libraries than it is to give up the existing managed libraries.</p> http://stackoverflow.com/questions/753081/can-curl-be-used-to-read-php-code-from-php-files/753094#753094 4 Answer by Mihai Limbasan for can cURL be used to read php code from php files? Mihai Limbasan 2009-04-15T18:33:48Z 2009-04-15T18:33:48Z <p>No, it cannot. All cURL does is access an URL just like you would access it using a browser. If you can read the PHP source with a browser, so can cURL, if not, then not.</p> http://stackoverflow.com/questions/752822/smtp-incoming-data-timeout-when-sending-email-with-inline-images-using-indy-10/752862#752862 0 Answer by Mihai Limbasan for "SMTP incoming data timeout" when sending email with inline images using Indy 10 in Windows XP Mihai Limbasan 2009-04-15T17:32:31Z 2009-04-15T17:32:31Z <p>Have you confirmed you can send the same mail with a bona fide mail client, preferably a simple and portable one which doesn't integrate into the bowels of the system, like Mozilla Thunderbird or Opera's included mail client? There could be an antivirus / antispam / antiwhatever system interfering there - many of those transparently intercept outgoing 25/TCP and do stuff to the data.</p> http://stackoverflow.com/questions/752309/ensuring-c-doubles-are-64-bits/752322#752322 4 Answer by Mihai Limbasan for Ensuring C++ doubles are 64 bits Mihai Limbasan 2009-04-15T15:48:34Z 2009-04-15T15:48:34Z <p>You can use the <a href="http://www.boost.org/doc/libs/1%5F38%5F0/doc/html/boost%5Fstaticassert.html" rel="nofollow">Boost static assertions</a> to do this. Look at the <a href="http://www.boost.org/doc/libs/1%5F38%5F0/doc/html/boost%5Fstaticassert.html#boost%5Fstaticassert.namespace" rel="nofollow">Use at namespace scope</a> example.</p> http://stackoverflow.com/questions/751875/compress-data-from-database/751988#751988 0 Answer by Mihai Limbasan for Compress data from Database Mihai Limbasan 2009-04-15T14:34:19Z 2009-04-15T14:34:19Z <p>If your database access layer does not provide compression, you can set up a VPN link between the database server and the application host. Most serious VPN solutions compress data in transit. <a href="http://openvpn.net" rel="nofollow">OpenVPN</a> is a simple and easy to set up solution for quickly creating a tunnel. Data is compressed in transit. Probably won't be as efficient as a native compression, but it's a possible solution. And you get encryption thrown in for free :).</p> http://stackoverflow.com/questions/748965/what-is-a-multibyte-character-set/748973#748973 1 Answer by Mihai Limbasan for What is a multibyte character set? Mihai Limbasan 2009-04-14T19:19:13Z 2009-04-14T19:19:13Z <p>Typically the former, i.e. UTF-8-like. For more info, see <a href="http://en.wikipedia.org/wiki/Variable-width%5Fencoding" rel="nofollow">Variable-width encoding</a>.</p> http://stackoverflow.com/questions/742497/yield-statement-implementation/742503#742503 5 Answer by Mihai Limbasan for yield statement implementation Mihai Limbasan 2009-04-12T21:54:36Z 2009-04-12T21:54:36Z <p>Here's a start, from Raymond Chen's blog:</p> <ul> <li><a href="http://blogs.msdn.com/oldnewthing/archive/2008/08/12/8849519.aspx" rel="nofollow">The implementation of iterators in C# and its consequences (part 1)</a></li> <li><a href="http://blogs.msdn.com/oldnewthing/archive/2008/08/13/8854601.aspx" rel="nofollow">The implementation of iterators in C# and its consequences (part 2)</a></li> <li><a href="http://blogs.msdn.com/oldnewthing/archive/2008/08/14/8862242.aspx" rel="nofollow">The implementation of iterators in C# and its consequences (part 3)</a></li> </ul> http://stackoverflow.com/questions/742466/how-can-i-reverse-the-lines-in-a-file/742485#742485 18 Answer by Mihai Limbasan for How can I reverse the lines in a file? Mihai Limbasan 2009-04-12T21:44:04Z 2009-04-12T21:44:04Z <p>Also worth mentioning: <code>tac</code> (the, ahem, reverse of <code>cat</code>). Part of coreutils.</p> http://stackoverflow.com/questions/742413/return-code-when-os-kills-your-process/742430#742430 1 Answer by Mihai Limbasan for Return code when OS kills your process Mihai Limbasan 2009-04-12T21:07:11Z 2009-04-12T21:41:56Z <p>What signal was used to kill the processes?</p> <p>Exit codes between 0 and 127, inclusive, can be used freely, and codes above 128 indicate that the process was terminated by a signal, where the exit code is</p> <p><em>128 + the number of the signal used</em></p> http://stackoverflow.com/questions/742332/mono-xsp-license/742382#742382 2 Answer by Mihai Limbasan for Mono XSP License Mihai Limbasan 2009-04-12T20:35:18Z 2009-04-12T20:35:18Z <p>Yes, you are right. That's the <a href="http://www.opensource.org/licenses/mit-license.php" rel="nofollow">MIT License</a> - or see <a href="http://en.wikipedia.org/wiki/MIT%5FLicense" rel="nofollow">this Wikipedia entry on the topic</a>.</p> http://stackoverflow.com/questions/742182/defaulting-to-full-screen-or-allowing-users-to-choose-default-at-first-startup/742192#742192 2 Answer by Mihai Limbasan for Defaulting to full screen or allowing users to choose default at first startup? Mihai Limbasan 2009-04-12T18:45:22Z 2009-04-12T18:45:22Z <p>Before doing the opposite of what your requirements say, I'd have the requirements changed.</p> <p>However, what about giving the user the choice at <em>install time</em>?</p> http://stackoverflow.com/questions/735891/php-send-mail-error/735918#735918 3 Answer by Mihai Limbasan for PHP Send mail error Mihai Limbasan 2009-04-09T21:02:54Z 2009-04-09T21:10:10Z <p>You PHP installation (XAMPP, by the looks of it) does not support SSL. Ensure that the line</p> <pre><code>extension=php_openssl.dll </code></pre> <p>is <em>not</em> commented out in your php.ini, restart Apache, and if that still doesn't work try overwriting (or copying) ssleay32.dll and libeay32.dll from your PHP directory into Apache's binary (.exe) directory then restart Apache.</p> http://stackoverflow.com/questions/1828656/what-settings-storage-format-to-choose/1828770#1828770 Comment by Mihai Limbasan on What settings storage format to choose? Mihai Limbasan 2009-12-01T22:10:08Z 2009-12-01T22:10:08Z That's true, but in this case probably beside the point. I would definitely worry about silent data corruption and manual recovery for documents, work items and the like, but that's probably not a big issue for settings storage. http://stackoverflow.com/questions/1779112/qt-creator-project-build-error/1779177#1779177 Comment by Mihai Limbasan on Qt Creator Project Build Error Mihai Limbasan 2009-11-22T17:10:41Z 2009-11-22T17:10:41Z @kemiisto: Then it's broken anyway, at the moment there's no reasonable way to get the win32 port of dbus (which is badly outdated) to work with QtDBus... http://stackoverflow.com/questions/1779112/qt-creator-project-build-error/1779177#1779177 Comment by Mihai Limbasan on Qt Creator Project Build Error Mihai Limbasan 2009-11-22T16:28:11Z 2009-11-22T16:28:11Z Bingo. The fix is to remove the dbus module from the .pro file. Open it and either remove <code>dbus</code> from the <code>QT +=</code> line, or add another line reading <code>QT -= dbus</code> to the file. kemiisto, could you perhaps edit your answer to include this info? http://stackoverflow.com/questions/1741352/some-components-cause-block-threads Comment by Mihai Limbasan on Some components cause block threads Mihai Limbasan 2009-11-20T17:18:56Z 2009-11-20T17:18:56Z I don't think there is the slightest chance that anyone can help you without a <i>lot</i> more information about what those threads are doing, about how you're retrieving the data for the tree nodes, about possible access from the threads to the main VCL thread, and about how exactly you're synchronizing access to the worker thread results. http://stackoverflow.com/questions/1746163/what-principles-should-be-followed-to-make-a-dll-created-using-delphi-works-well/1746191#1746191 Comment by Mihai Limbasan on What principles should be followed to make a DLL created using Delphi works well in other Delphi version? Mihai Limbasan 2009-11-17T06:39:37Z 2009-11-17T06:39:37Z +1. Perhaps unrelated, but don't forget to declare all (non-COM) DLL exports as stdcall if you're going to consume them in languages other than Delphi. http://stackoverflow.com/questions/1669788/how-do-i-make-tab-control-take-over-entire-window-in-qt-creator/1669810#1669810 Comment by Mihai Limbasan on How do I make tab control take over entire window in Qt Creator? Mihai Limbasan 2009-11-03T21:31:51Z 2009-11-03T21:31:51Z Instead of adding a completly pointless answer, perhaps it would be more productive for you to bookmark the question by upvoting it and by marking it as a favorite by clicking the star under the vote arrows... http://stackoverflow.com/questions/1420085/delphi-wont-run Comment by Mihai Limbasan on Delphi won't run! Mihai Limbasan 2009-09-15T15:09:19Z 2009-09-15T15:09:19Z Welcome aboard :) http://stackoverflow.com/questions/1420085/delphi-wont-run Comment by Mihai Limbasan on Delphi won't run! Mihai Limbasan 2009-09-14T08:15:31Z 2009-09-14T08:15:31Z No'am, seeing that Paul-Jan's solution worked, can you please accept his answer? http://stackoverflow.com/questions/763922/does-somebody-know-the-current-status-of-graphics32/763932#763932 Comment by Mihai Limbasan on Does somebody know the current status of Graphics32? Mihai Limbasan 2009-09-02T16:15:35Z 2009-09-02T16:15:35Z Thanks, good to know. http://stackoverflow.com/questions/1268710/delphi-4-error-file-not-foundhtmlcons-inc Comment by Mihai Limbasan on Delphi 4 error:- file not found:'htmlcons.inc' Mihai Limbasan 2009-08-12T21:13:46Z 2009-08-12T21:13:46Z You're missing a file which is included by some other file in the project. But you have provided almost no information on what you're doing. What project? There is absolutely no way anyone can help you with this little information. http://stackoverflow.com/questions/1221197/are-there-any-good-free-cheap-delphi-grid-controls/1221379#1221379 Comment by Mihai Limbasan on Are there any good free/cheap Delphi grid controls? Mihai Limbasan 2009-08-03T20:00:47Z 2009-08-03T20:00:47Z Yup, I only ran across the link to the new repository a few days ago, more or less by accident, while looking for a patch for a worker thread bug (I still need to support D5.) The new repository is awesome since it benefits from the Google Code infrastructure - the ability to cherry-pick and easily contribute patches should instil new life into this component. http://stackoverflow.com/questions/735415/activex-control-will-not-load Comment by Mihai Limbasan on ActiveX Control will not load Mihai Limbasan 2009-07-14T15:25:42Z 2009-07-14T15:25:42Z Deleted my factually wrong response - Eric is right, of course. Thanks. http://stackoverflow.com/questions/1002064/screen-capture-from-windows-service Comment by Mihai Limbasan on Screen capture from windows service Mihai Limbasan 2009-06-18T12:55:00Z 2009-06-18T12:55:00Z @bezieur: The current incarnation is much better phrased, thanks :) http://stackoverflow.com/questions/1002064/screen-capture-from-windows-service Comment by Mihai Limbasan on Screen capture from windows service Mihai Limbasan 2009-06-16T15:51:41Z 2009-06-16T15:51:41Z @bezieur: &quot;It is expected to work&quot; != &quot;will work&quot;, or even &quot;has a remote chance of working&quot;. You shouldn't operate with &quot;it is expected to work&quot;, you should test it. The Win32 service model has changed significantly in Vista and up. http://stackoverflow.com/questions/1002064/screen-capture-from-windows-service Comment by Mihai Limbasan on Screen capture from windows service Mihai Limbasan 2009-06-16T15:10:57Z 2009-06-16T15:10:57Z What operating systems is running on the computers on which your service fails to operate properly?