User Atlas - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T18:24:25Z http://stackoverflow.com/feeds/user/30787 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1138323/delphi-7-compile-getting-slower-over-time 2 Delphi 7 compile getting slower over time? Atlas 2009-07-16T15:13:02Z 2009-12-12T03:25:25Z <p>My project has around 400 units, it takes 20-40secs to compile after a fresh reboot, then than <strong>1-5secs</strong> for sub-sequent re-compiles, so far so good.</p> <p>After working for over 3-6 hours, compiling takes <strong>1-3mins</strong> for sub-sequent re-compiles, which forces me to reboot everytime.</p> <p>Is there a leak somewhere in D7? Is it problem of Windows XP? It's getting very frustrating...</p> <p>Anybody encountered this problem?</p> <p><strong>Edit1</strong> DelphiSpeedup doesn't seem to improve the problem, it still occurs....</p> http://stackoverflow.com/questions/1824711/algorithm-for-fitting-2d-polygons-in-an-area 4 Algorithm for fitting 2D polygons in an area? Atlas 2009-12-01T08:13:45Z 2009-12-02T10:40:42Z <p>Is there a standard for this? Algorithm name?</p> <p>Say: I have 10 polygons of different sizes. I have an area of specific size.</p> <p>I want to know how to fill the most polygons in that area, and how they are fitted.</p> <p>Note: Polygons may be rotated depending on the restriction set.</p> http://stackoverflow.com/questions/237725/how-to-begin-with-ruby-on-rails-using-windows 4 How to begin with Ruby on Rails using Windows Atlas 2008-10-26T08:22:14Z 2009-11-11T18:21:17Z <p>I've tried downloading the Rails package and installing it on Windows, but have no idea to make it work.</p> <p>I have had some experience with this commbination:</p> <ul> <li>PHP 4.x + 5.x (Windows)</li> <li>LIGHTTPD (Windows)</li> <li>Connecting to a Firebird Database (Windows)</li> </ul> <p>Can anybody enlighten me?</p> http://stackoverflow.com/questions/1516082/delphi-virtualtreeview-onafteritempaint-issue-when-scrolling 1 Delphi VirtualTreeview.OnAfterItemPaint issue when scrolling? Atlas 2009-10-04T10:08:25Z 2009-10-13T07:59:06Z <p>I'm getting issues drawing using <strong>OnAfterItemPaint</strong> event when horizontal scrolling is performed.</p> <p>Basically what I want to achieve is the merging of selected cells effect, say for example 1 text for column 1 &amp; 2, another text for column 3 &amp; 4, etc... So far VT doesn't have any support for column merging, so I have to manually draw it.</p> <p>Is there a workaround or another event that I should use instead?</p> <p>Using: Delphi 7 + VirtualTreeview 4.8.5</p> <p>Event source:</p> <pre><code>begin TargetCanvas.TextOut(ItemRect.Left+ VT1.OffsetX, ItemRect.Top, '1234567890ABCDEF1234567890ABCDEF1234567890ABCDEF'); end; </code></pre> <p>Before scroll:</p> <p><img src="http://a.imagehost.org/0869/screen1.gif" alt="alt text" /></p> <p>After scroll (Scroll Right, then Scroll Left):</p> <p><img src="http://a.imagehost.org/0645/screen2.gif" alt="alt text" /></p> http://stackoverflow.com/questions/229630/delphi-multi-threading-message-loop 2 Delphi Multi-Threading Message Loop Atlas 2008-10-23T13:05:21Z 2009-10-04T10:49:30Z <p>Hi There,</p> <p>My application has several threads: 1) Main Thread 2) 2 Sub-Main Threads (each with Message Loop, as shown below), used by TFQM 3) n Worker Threads (simple loop, containing Sleep())</p> <p>My problem is, when I close my application, the Worker Threads manage to exit properly, but 1 of the 2 Sub-Main Threads hangs (never exits) when I issue WM_QUIT to close them.</p> <p><hr /></p> <pre><code>procedure ThreadProcFQM(P: Integer); stdcall; var Msg: TMsg; _FQM: TFQM; begin _FQM := Ptr(P); try _FQM.fHandle := AllocateHwnd(_FQM.WndProc); while GetMessage(Msg, 0, 0, 0) do begin TranslateMessage(Msg); DispatchMessage(Msg); end; finally DeallocateHWnd(_FQM.fHandle); SetEvent(_FQM.hTerminated); end; end; </code></pre> <p><hr /></p> <pre><code>procedure TFQM.Stop; begin PostMessage(fHandle, WM_QUIT, 0, 0); WaitForSingleObject(hTerminated, INFINITE); if hThread &lt;&gt; INVALID_HANDLE_VALUE then begin CloseHandle(hThread); hThread := INVALID_HANDLE_VALUE; end; end; </code></pre> http://stackoverflow.com/questions/1485814/windows-printer-driver-information-utility 0 Windows printer driver information utility? Atlas 2009-09-28T07:17:39Z 2009-09-28T07:17:39Z <p>There used to be some utility called WinPrInfo (GUI based) or something alike, that would display information about all installed printers using GetDeviceCaps/DeviceCapabilities.</p> <p>But I can't seem to find it on the web, anyone can help?</p> http://stackoverflow.com/questions/1189976/html-email-using-css 1 HTML Email using CSS Atlas 2009-07-27T18:59:19Z 2009-09-13T14:08:36Z <p>I'm trying to build an HTML email using DIVs instead of tables, and I'm quite new to CSS.</p> <p>What I'm trying to achieve would look something like:</p> <pre><code>******************* XXXXXXXXXXXX XXXXXXXXXXX * image here * XXXXXXXXXXXX XXXXXXXXXXX ******************* XXXXXXXXXXXX XXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX </code></pre> <p>X = Some Text</p> <p>1 image + 5 lines of text</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1352080/delphi-incremental-changes-from-d7-to-d2009 6 Delphi incremental changes? From D7 to D2009 Atlas 2009-08-29T18:37:33Z 2009-08-31T14:04:53Z <p>Is there a website or documentation that details the changes made from each version?</p> <p>Say, D7 -> D2005 -> D2006 -> D2007 -> D2009</p> <ul> <li>Language features?</li> <li>DB features?</li> <li>RTTI?</li> <li>IDE?</li> </ul> http://stackoverflow.com/questions/1287064/php-session-timeout-callback 3 PHP session timeout callback? Atlas 2009-08-17T09:45:26Z 2009-08-17T10:05:29Z <p>I'm running a PHP + APACHE + CENTOS Linux combination.</p> <p>I have implemented a login &amp; logout on the website. </p> <p>My question is, how can I know when the php session has timed-out (User has closed his browser without logging-out)?</p> <p>The reason is, I want perform some cleanups and/or database updates (calling another PHP) when the user has done any of the following: (1) LOGGED-OUT or (2) TIMED-OUT</p> <p>My guess is that I would have to make use of Apache/Linux, right?</p> http://stackoverflow.com/questions/1073351/windows-service-do-work-at-specified-times-delphi 4 Windows Service: Do work at specified times (Delphi) Atlas 2009-07-02T09:17:35Z 2009-08-04T18:43:09Z <p>Just checking if there's any best practice when writing a Windows Service.</p> <p>The Service (Single-thread) needs to work at specified time intervals, right now I can only think of:</p> <ol> <li>Use sleep(), then check the time in a loop?</li> <li>Use a TTimer?</li> </ol> <p>Any advice?</p> http://stackoverflow.com/questions/1212007/is-there-programmatical-way-to-get-short-day-names-in-windows 3 Is there programmatical way to get short day names in windows? Atlas 2009-07-31T11:20:56Z 2009-08-04T05:44:32Z <p>Is there a way to get a 2 character day-name of the week such as MO/TU/WE/TH/FR/SA/SU?</p> <p>Currently I only know of using FormatDateTime():</p> <pre><code> "ddd" returns "Fri" "dddd" returns "Friday" </code></pre> <p>The main reason is that I want to obtain localized version of the 1 or 2 character day names:</p> <p>Say FRIDAY in "ddd" would return:<br /> French Windows = "Vendredi", the 2 char would be "VE", note it's the 1st and 2nd char.<br /> Chinese Windows = "星期五", the char would be "五", note it's the 3rd char.<br /> Japanese Windows = "金曜日", the char would be "金", note it's the 1st char. </p> <p><strong>Edit1:</strong> Currently using Delphi, but i think applies to other languages too.</p> <p><strong>Edit2:</strong> Simply put, I'm looking to obtain the <strong>shorter</strong> version of "ShortDayName" through the use of some functions or constants, so that I don't have to build a table of constants containing the 7 day "Shorter" day names for every possible windows language. </p> <p>I wonder if such functions really exist.<br /> Maybe the calendar 1 or 2 char day names in Outlook are hard-coded themselves, right?</p> http://stackoverflow.com/questions/1164843/where-can-i-obtain-weekdays-glyphs -1 Where can I obtain Weekdays glyphs? [closed] Atlas 2009-07-22T12:12:52Z 2009-07-22T13:22:39Z <p>Anybody know where to get glyphs (16x16) of Weekdays?</p> <p>The glyphs might show MO,TU,WE,TH,FR,SA,SU which represent the day of a week.</p> http://stackoverflow.com/questions/1085933/delphi-indy-connection-closed-gracefully 1 Delphi + Indy: Connection closed gracefully Atlas 2009-07-06T08:13:37Z 2009-07-06T08:17:58Z <p>Using D7 + Indy 10 latest build.</p> <p>My code is using TIdSMTP to send email. I keep getting "Connection closed gracefully" at some end-users, and the email is never sent.</p> <p>The code is like:</p> <pre><code>try ~~~~ ~~~~ _idSMTP := TIdSmtp.Create; with _idSMTP do begin Host := 'myhost'; Connect; try Send(_EmailMsg); Result := True; except on E: Exception do begin MsgDlgErr(Self.Handle, E.Message) end end; end; finally _idSMTP.Disconnect; _idSMTP.Free; end; </code></pre> <p>Any advice?</p> http://stackoverflow.com/questions/976110/website-security-question-with-php-probably-applies-to-asp-rails-etc-too 0 Website security question with PHP? (Probably applies to ASP/Rails/etc.. too) Atlas 2009-06-10T14:55:33Z 2009-06-10T15:58:52Z <p>Say, I have "index.htm" and "routines.php".</p> <p>"index.htm" will call eventually call "routines.php" using JS (AJAX).</p> <p>So, my question is, how can "routines.php" verify that the request came from the same local server and not outside? Is there a global variable I can check at PHP level or HTTP level?</p> <p><strong>Edit 1:</strong> Using AJAX</p> http://stackoverflow.com/questions/785371/which-php-web-framework-for-firebird 1 Which PHP Web framework for Firebird? Atlas 2009-04-24T10:49:06Z 2009-05-21T14:41:39Z <p>Is there any PHP web framework that works cleanly with the <strong>Firebird</strong> database?</p> <p>By "cleanly", I mean out-of-the-box, no hacks/customization/self-made drivers.</p> <p>So far, I've checked out frameworks like <strong>CodeIgniter</strong> &amp; <strong>CakePHP</strong>, but their support for Firebird is vague or little at most.</p> http://stackoverflow.com/questions/370518/how-do-i-start-with-working-sub-version-delphi 14 How do I start with working Sub-Version + Delphi? Atlas 2008-12-16T05:18:06Z 2008-12-24T00:00:01Z <p>Hi there,</p> <p>I'm new to this SCM, but since SVN is gaining popularity I was going to give it a try.</p> <p>Things I noticed:</p> <ol> <li>SVN is only the backbone of the SCM, no front-end?</li> <li>Why is there several versions of Windows Binaries? Tigris? SlikSVN? VisualSVN?</li> <li>Do I need a Web Server like Apache in order to use SVN?</li> <li>There's dozens of front-end, Tortoise, WinSVN, etc... Which one is recommended?</li> </ol> <p>The whole thing is rather confusing and I got no idea where to start. I'm using Delphi and would like to use it to store my source files.</p> <p>Update 1: Seems I got it working using the "file:///" protocol, thanks. Now, how do I configure it as a server with client PCs.</p> http://stackoverflow.com/questions/318434/any-good-converter-for-gb-big5-unicode/352352#352352 0 Answer by Atlas for Any good converter for GB, Big5, Unicode Atlas 2008-12-09T10:40:42Z 2008-12-09T10:40:42Z <p>If it's a converting tool that you need, you can try:</p> <pre><code>http://alf-li.pcdiscuss.com/c_convertz.html </code></pre> <p>Really useful to me, it does GB/BIG5/UNICODE.</p> http://stackoverflow.com/questions/247787/delphi-2009-and-firebird-2-1-full-unicode 4 Delphi 2009 and Firebird 2.1 = Full Unicode? Atlas 2008-10-29T17:58:31Z 2008-11-01T17:50:38Z <p>Has anyone started making Unicode Apps or converting Existing Apps into Unicode?</p> <p>How are you tweaking Firebird to have the least problems, especially the CHARSET attribute?</p> <p>Is there any problem encountered? Any thing else that I should be aware of?</p> <p>I'm just preparing myself so that I get less surprises, before jumping onto the Unicode train.</p> http://stackoverflow.com/questions/239002/duplicating-components-at-run-time 5 Duplicating components at Run-Time Atlas 2008-10-27T03:23:51Z 2008-10-28T02:12:40Z <p>Is there a simple way to duplicate all child components under parent component, including their published properties?</p> <p>For example:</p> <ul> <li>TPanel <ul> <li>TLabel</li> <li>TEdit</li> <li>TListView</li> <li>TSpecialClassX</li> </ul></li> </ul> <p>Of course the most important factor, it should duplicate any new component which I drop on the TPanel without modifying the code under normal circumstances.</p> <p>I've heard of the RTTI, but never used it actually. Any ideas?</p> http://stackoverflow.com/questions/237715/delphi-to-net-c 1 Delphi to .NET + C# Atlas 2008-10-26T08:07:28Z 2008-10-26T09:48:32Z <p>Hi,</p> <p>I've been a Delphi (D7) developer for many sometime already, I've always been wondering about the .NET + C# stuffs. What I mean are about not the "Delphi for .NET" or "Oxygene" tech/plugin, but clean .NET/C#.</p> <p>How much different is it from Delphi? And some other questions...</p> <ul> <li>Is Mono/SharpDevelop (any others that I should know of?) as capable as the Non-Free Visual Studio? </li> <li>In terms of deployment, how does it work? The Assembly + Framework + Executable?</li> <li>The Framework (3.5 latest?) works something like the JVM for the Java world, correct? Does it take care of the supporting/making use of techs like Multi-Cores or Windows specific optimizations?</li> <li>C# has some similarities to Object Pascal, shouldn't be too tough to adapt, right?</li> </ul> <p>Thanks.</p> http://stackoverflow.com/questions/1516082/delphi-virtualtreeview-onafteritempaint-issue-when-scrolling/1516438#1516438 Comment by Atlas on Delphi VirtualTreeview.OnAfterItemPaint issue when scrolling? Atlas 2009-10-06T09:30:48Z 2009-10-06T09:30:48Z Thanks, the issue has been fixed, I should have used TextMargin instead of OffsetX. http://stackoverflow.com/questions/1516082/delphi-virtualtreeview-onafteritempaint-issue-when-scrolling/1516438#1516438 Comment by Atlas on Delphi VirtualTreeview.OnAfterItemPaint issue when scrolling? Atlas 2009-10-05T00:22:20Z 2009-10-05T00:22:20Z @mghie: I trying to do the cell merging effect. Say merge column 1 &amp; 2, thus truncation will occur if the text width is larger than the width of col 1 &amp; 2. I was guessing this event was mostly suitable for this task, but it goes berserk when scrolling occurs. :P http://stackoverflow.com/questions/1352080/delphi-incremental-changes-from-d7-to-d2009 Comment by Atlas on Delphi incremental changes? From D7 to D2009 Atlas 2009-08-31T04:17:33Z 2009-08-31T04:17:33Z Yep, I agree. There are lot of minor changes from what I can see. Such an example are the procs/funcs in SysUtils, not much of a breakthru, but it can make our life easier by coding less and smarter :P http://stackoverflow.com/questions/1352080/delphi-incremental-changes-from-d7-to-d2009 Comment by Atlas on Delphi incremental changes? From D7 to D2009 Atlas 2009-08-30T05:34:42Z 2009-08-30T05:34:42Z Hi, my question could seem somewhat vague, but I would like to know about the new language features by jumping from D7 to D2009 (eg. things that needed dozens of code lines to achieve, but maybe only 1 proc/func in D2009?). I think most Delphi programmers would also be interested too, unless he/she was fortunate enough to use every single version I mentioned :P Besides, I don't think my post is worst than the &quot;whats-your-favorite-programmer-cartoon&quot;, which is so far left non-closed :P http://stackoverflow.com/questions/1212007/is-there-programmatical-way-to-get-short-day-names-in-windows/1212291#1212291 Comment by Atlas on Is there programmatical way to get short day names in windows? Atlas 2009-08-05T03:34:49Z 2009-08-05T03:34:49Z Alexander, seems like it is what I was looking for. But I cannot test it since I don't own any Vista, anyone tried this? http://stackoverflow.com/questions/1212007/is-there-programmatical-way-to-get-short-day-names-in-windows Comment by Atlas on Is there programmatical way to get short day names in windows? Atlas 2009-07-31T17:57:51Z 2009-07-31T17:57:51Z Scott, correct but this would only work alphabets such as western languages, asian languages are different. Rob, yes I was using alphabets as reference, so it is 2 chars. But for asian languages, it's normally 1 char, don't ask me why, it's a cultural thing :) http://stackoverflow.com/questions/1212007/is-there-programmatical-way-to-get-short-day-names-in-windows Comment by Atlas on Is there programmatical way to get short day names in windows? Atlas 2009-07-31T11:35:11Z 2009-07-31T11:35:11Z Using Delphi, but applies to other languages too. http://stackoverflow.com/questions/1189976/html-email-using-css Comment by Atlas on HTML Email using CSS Atlas 2009-07-27T19:04:08Z 2009-07-27T19:04:08Z Sinan, they are subparts http://stackoverflow.com/questions/1085933/delphi-indy-connection-closed-gracefully/1085945#1085945 Comment by Atlas on Delphi + Indy: Connection closed gracefully Atlas 2009-07-06T08:37:06Z 2009-07-06T08:37:06Z The exception doesn't occur in the IDE, but on end-user computers. http://stackoverflow.com/questions/976110/website-security-question-with-php-probably-applies-to-asp-rails-etc-too Comment by Atlas on Website security question with PHP? (Probably applies to ASP/Rails/etc.. too) Atlas 2009-06-10T15:57:50Z 2009-06-10T15:57:50Z yes, my mistake sorry, this AJAX thing is quite new to me. So my problem would be calling routines.php http://stackoverflow.com/questions/976110/website-security-question-with-php-probably-applies-to-asp-rails-etc-too/976207#976207 Comment by Atlas on Website security question with PHP? (Probably applies to ASP/Rails/etc.. too) Atlas 2009-06-10T15:13:28Z 2009-06-10T15:13:28Z thanks, i'll check them out. http://stackoverflow.com/questions/976110/website-security-question-with-php-probably-applies-to-asp-rails-etc-too/976153#976153 Comment by Atlas on Website security question with PHP? (Probably applies to ASP/Rails/etc.. too) Atlas 2009-06-10T15:11:11Z 2009-06-10T15:11:11Z yep, opening routines.php from any browser won't do anything. But what if, someone make a similar index.htm, and it calls getdata() from my routines.php, the request is considered valid, no? http://stackoverflow.com/questions/976110/website-security-question-with-php-probably-applies-to-asp-rails-etc-too Comment by Atlas on Website security question with PHP? (Probably applies to ASP/Rails/etc.. too) Atlas 2009-06-10T15:06:07Z 2009-06-10T15:06:07Z yes, using AJAX http://stackoverflow.com/questions/976110/website-security-question-with-php-probably-applies-to-asp-rails-etc-too/976153#976153 Comment by Atlas on Website security question with PHP? (Probably applies to ASP/Rails/etc.. too) Atlas 2009-06-10T15:03:36Z 2009-06-10T15:03:36Z Forgot to mention, using AJAX :P http://stackoverflow.com/questions/370518/how-do-i-start-with-working-sub-version-delphi/370531#370531 Comment by Atlas on How do I start with working Sub-Version + Delphi? Atlas 2008-12-16T05:29:40Z 2008-12-16T05:29:40Z It means that I don't need to install any SVN server software?