User Mihai Limbasan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T16:38:08Zhttp://stackoverflow.com/feeds/user/14444http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/318236/how-do-you-validate-that-a-string-is-a-valid-ip-address-in-c/318343#31834310Answer by Mihai Limbasan for How do you validate that a string is a valid IP address in C++?Mihai Limbasan2008-11-25T18:12:10Z2009-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#14354872Answer by Mihai Limbasan for Compiling OpenSSL on windowsMihai Limbasan2009-09-16T21:09:22Z2009-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#13886360Answer by Mihai Limbasan for Delphi2010 Compiler error: F2084 Internal Error: L1737Mihai Limbasan2009-09-07T10:21:38Z2009-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#133398115Answer by Mihai Limbasan for How can I make a file trully immutable (non-deletable and read-only)?Mihai Limbasan2009-08-26T11:13:27Z2009-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#12213798Answer by Mihai Limbasan for Are there any good free/cheap Delphi grid controls?Mihai Limbasan2009-08-03T09:19:54Z2009-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#9351241Answer by Mihai Limbasan for How to make binary distribution of Qt application for LinuxMihai Limbasan2009-06-01T14:42:25Z2009-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#9272364Answer by Mihai Limbasan for How can I get around the lack of a finally block in PHP?Mihai Limbasan2009-05-29T17:36:58Z2009-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#9258686Answer by Mihai Limbasan for printing to pdfMihai Limbasan2009-05-29T13:08:08Z2009-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#8098210Answer by Mihai Limbasan for Use both static and dynamically linked libraries in gccMihai Limbasan2009-05-01T01:06:07Z2009-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#8087493Answer by Mihai Limbasan for How do you create a computer or scripting language for an application?Mihai Limbasan2009-04-30T19:57:11Z2009-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#7946740Answer by Mihai Limbasan for .NET convert number to string representation (1 to one, 2 to two, etc...)Mihai Limbasan2009-04-27T18:26:59Z2009-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#7831920Answer by Mihai Limbasan for SQLIite - how to add special data?Mihai Limbasan2009-04-23T19:27:51Z2009-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#7697069Answer by Mihai Limbasan for show tables in postgresqlMihai Limbasan2009-04-20T19:12:57Z2009-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#7684040Answer by Mihai Limbasan for Setting a variable from an executableMihai Limbasan2009-04-20T14:08:27Z2009-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"" > 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#7681741Answer by Mihai Limbasan for Prevent Pocket-PC to go to landscape Mode.Mihai Limbasan2009-04-20T13:09:32Z2009-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#7639323Answer by Mihai Limbasan for Does somebody know the current status of Graphics32?Mihai Limbasan2009-04-18T18:42:05Z2009-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&search=Search&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&article%5Fid=8832" rel="nofollow">Graphic32 & 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#7642381Answer by Mihai Limbasan for Larger than memory data structures and how they are typically handledMihai Limbasan2009-04-18T21:27:46Z2009-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#7609153Answer by Mihai Limbasan for Delphi: Transparent controls turn opaque on netbooksMihai Limbasan2009-04-17T15:34:46Z2009-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#7570210Answer by Mihai Limbasan for What can be done in VC++ (native) that can't be done with VC#?Mihai Limbasan2009-04-16T16:47:31Z2009-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#7530944Answer by Mihai Limbasan for can cURL be used to read php code from php files?Mihai Limbasan2009-04-15T18:33:48Z2009-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#7528620Answer by Mihai Limbasan for "SMTP incoming data timeout" when sending email with inline images using Indy 10 in Windows XP Mihai Limbasan2009-04-15T17:32:31Z2009-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#7523224Answer by Mihai Limbasan for Ensuring C++ doubles are 64 bitsMihai Limbasan2009-04-15T15:48:34Z2009-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#7519880Answer by Mihai Limbasan for Compress data from Database Mihai Limbasan2009-04-15T14:34:19Z2009-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#7489731Answer by Mihai Limbasan for What is a multibyte character set?Mihai Limbasan2009-04-14T19:19:13Z2009-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#7425035Answer by Mihai Limbasan for yield statement implementationMihai Limbasan2009-04-12T21:54:36Z2009-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#74248518Answer by Mihai Limbasan for How can I reverse the lines in a file?Mihai Limbasan2009-04-12T21:44:04Z2009-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#7424301Answer by Mihai Limbasan for Return code when OS kills your processMihai Limbasan2009-04-12T21:07:11Z2009-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#7423822Answer by Mihai Limbasan for Mono XSP LicenseMihai Limbasan2009-04-12T20:35:18Z2009-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#7421922Answer by Mihai Limbasan for Defaulting to full screen or allowing users to choose default at first startup?Mihai Limbasan2009-04-12T18:45:22Z2009-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#7359183Answer by Mihai Limbasan for PHP Send mail errorMihai Limbasan2009-04-09T21:02:54Z2009-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#1828770Comment by Mihai Limbasan on What settings storage format to choose?Mihai Limbasan2009-12-01T22:10:08Z2009-12-01T22:10:08ZThat'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#1779177Comment by Mihai Limbasan on Qt Creator Project Build Error Mihai Limbasan2009-11-22T17:10:41Z2009-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#1779177Comment by Mihai Limbasan on Qt Creator Project Build Error Mihai Limbasan2009-11-22T16:28:11Z2009-11-22T16:28:11ZBingo. 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-threadsComment by Mihai Limbasan on Some components cause block threadsMihai Limbasan2009-11-20T17:18:56Z2009-11-20T17:18:56ZI 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#1746191Comment by Mihai Limbasan on What principles should be followed to make a DLL created using Delphi works well in other Delphi version?Mihai Limbasan2009-11-17T06:39:37Z2009-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#1669810Comment by Mihai Limbasan on How do I make tab control take over entire window in Qt Creator?Mihai Limbasan2009-11-03T21:31:51Z2009-11-03T21:31:51ZInstead 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-runComment by Mihai Limbasan on Delphi won't run!Mihai Limbasan2009-09-15T15:09:19Z2009-09-15T15:09:19ZWelcome aboard :)http://stackoverflow.com/questions/1420085/delphi-wont-runComment by Mihai Limbasan on Delphi won't run!Mihai Limbasan2009-09-14T08:15:31Z2009-09-14T08:15:31ZNo'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#763932Comment by Mihai Limbasan on Does somebody know the current status of Graphics32?Mihai Limbasan2009-09-02T16:15:35Z2009-09-02T16:15:35ZThanks, good to know.http://stackoverflow.com/questions/1268710/delphi-4-error-file-not-foundhtmlcons-incComment by Mihai Limbasan on Delphi 4 error:- file not found:'htmlcons.inc'Mihai Limbasan2009-08-12T21:13:46Z2009-08-12T21:13:46ZYou'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#1221379Comment by Mihai Limbasan on Are there any good free/cheap Delphi grid controls?Mihai Limbasan2009-08-03T20:00:47Z2009-08-03T20:00:47ZYup, 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-loadComment by Mihai Limbasan on ActiveX Control will not loadMihai Limbasan2009-07-14T15:25:42Z2009-07-14T15:25:42ZDeleted my factually wrong response - Eric is right, of course. Thanks.http://stackoverflow.com/questions/1002064/screen-capture-from-windows-serviceComment by Mihai Limbasan on Screen capture from windows serviceMihai Limbasan2009-06-18T12:55:00Z2009-06-18T12:55:00Z@bezieur: The current incarnation is much better phrased, thanks :)http://stackoverflow.com/questions/1002064/screen-capture-from-windows-serviceComment by Mihai Limbasan on Screen capture from windows serviceMihai Limbasan2009-06-16T15:51:41Z2009-06-16T15:51:41Z@bezieur: "It is expected to work" != "will work", or even "has a remote chance of working". You shouldn't operate with "it is expected to work", you should test it. The Win32 service model has changed significantly in Vista and up.http://stackoverflow.com/questions/1002064/screen-capture-from-windows-serviceComment by Mihai Limbasan on Screen capture from windows serviceMihai Limbasan2009-06-16T15:10:57Z2009-06-16T15:10:57ZWhat operating systems is running on the computers on which your service fails to operate properly?