active questions tagged delphi+windows - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T06:20:36Z http://stackoverflow.com/feeds/tag/delphi+windows http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1911426/odd-behaviour-with-components-with-akright-alignment 0 Odd behaviour with components with akRight alignment Ricardo Acras 2009-12-16T00:16:02Z 2009-12-16T16:11:44Z <p>In one customer computer (windows vista) almost all forms of my app are oddly unnaligned.</p> <p>Making some investigation I noticed that every component with akRight anchor acts oddly, being positioned way more for the right.</p> <p>Searching in SO I found <a href="http://stackoverflow.com/questions/1355258/delphi-7-forms-anchors-not-working-in-vista">this</a> issue wich is similar to mine but not exacly the same.</p> <p>Since I cannot reproduce the issue in my computer and my access to my customer´s computer is restrict to a few minutes and via remote desktop I´d like to know if my issue described here could be solved by the same fix.</p> http://stackoverflow.com/questions/1911907/what-does-shfileoperation-do-when-the-recycle-bin-is-full 6 What does ShFileOperation do when the recycle bin is full? Irwan 2009-12-16T02:36:20Z 2009-12-16T06:59:42Z <p>I use this procedure:</p> <pre><code>function MoveToRecycle(sFileName: widestring): Boolean; var fos: TSHFileOpStructW; begin FillChar(fos, SizeOf(fos), 0); with fos do begin wnd := 0; wFunc := FO_DELETE; pFrom := PWideChar(sFileName + #0 + #0); pTo := #0 + #0; fFlags := FOF_FILESONLY or FOF_ALLOWUNDO or FOF_NOCONFIRMATION or FOF_SILENT; end; Result := (ShFileOperationW(fos) = 0); end; </code></pre> <p>What will happen if the recycle bin is full, does it return false or delete file permanently ?</p> <p>Any help would be appreciated.</p> http://stackoverflow.com/questions/1906107/what-is-the-preferred-method-of-passing-data-between-a-service-and-an-application 0 What is the preferred method of passing data between a service and an application [closed] norgepaul 2009-12-15T09:01:44Z 2009-12-15T11:47:55Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1260181/delphi-2009-how-to-communicate-between-windows-service-desktop-application-und">Delphi 2009: How to communicate between Windows service &amp; desktop application under Vista?</a> </p> </blockquote> <p>I have a server running as a Windows service. To control the service and to display it's state I have an application running as a tray icon. I would like to pass data (log strings) from the service to the application. </p> <p>What's the best way to do this?</p> http://stackoverflow.com/questions/1880271/how-can-i-add-the-thumbnails-view-to-tshelllist-in-delphi 0 How can I add the Thumbnails view to TShellList in Delphi? plainth 2009-12-10T11:06:57Z 2009-12-10T18:31:40Z <p>Hi,</p> <p>The TShellList component is based on TListView which (unfortunately) doesn't have in its ViewStyle property a 'vsThumbnail' (or similar).</p> <p>How can I display thumbnails in TShellList in a similar manner in which Windows Explorer does?</p> <p>A simple Delphi snippet would be appreciated.</p> <p>TIA</p> http://stackoverflow.com/questions/1868006/delphi-sdi-application-not-handling-cascade-tile-horizontal-tile-vertically 0 Delphi SDI application - Not handling cascade/tile horizontal & tile vertically? James 2009-12-08T16:14:11Z 2009-12-09T13:32:39Z <p>My application doesn't seem to receive or handle the same windows messages for the Cascade, Tile Horizontal/Tile Vertical on specific windows versions.</p> <blockquote> Windows XP x32 - Not working<br/> Windows XP x64 - Not tested<br/> Windows Vista x32 - Not working<br/> Windows Vista x64 - <b>Works fine??</b><br/> Windows 7 x32 - Not tested<br/> Windows 7 x64 - Not working </blockquote> <p>Anyone any idea's as to why this may be the case? Is there anything specific to Vista x64 that isn't with the others, I wouldn't have thought so myself!</p> <p><b>Update</b><br/></p> <p>More specifically I am referring to when I have one or more instances of my application open and I hold Ctrl and select these from the task bar and then try to Cascade/Tile.</p> <p>Older versions of our application prior to upgrading to Delphi 2009 seem to work as expected. Differences from this is we are now using the DevExpress ribbon components. Even more frustratingly is we have another version of the application which is in Delphi 2009 and using the ribbons and that works fine!</p> http://stackoverflow.com/questions/1862116/application-is-visible-on-taskbar 0 Application is visible on taskbar? Leo 2009-12-07T18:57:43Z 2009-12-08T07:44:26Z <p>How to know if a Application is visible on taskbar?</p> <p>I am using Delphi on windows.</p> http://stackoverflow.com/questions/1804308/how-can-i-access-blackfish-for-windows-over-jdbc 0 How can I access Blackfish for Windows over JDBC? mjustin 2009-11-26T15:26:40Z 2009-12-08T05:52:29Z <p>For Blackfish for Windows which is included in Delphi 2009 I would like to write a Java client and use a JDBC connection. If I understand correctly, this is supported: <a href="http://edn.embarcadero.com/de/article/36851" rel="nofollow">http://edn.embarcadero.com/de/article/36851</a></p> <p>Where can I find the JDBC driver for Blackfish?</p> http://stackoverflow.com/questions/1629317/memory-mapped-files-optional-write-possible 0 Memory mapped files optional write possible? Alan Clark 2009-10-27T07:56:07Z 2009-12-07T18:09:25Z <p>When using memory-mapped files it seems it is either read-only, or write-only. By this I mean you can't:</p> <ul> <li>have one open for writing, and later decide not to save it <li>have open open for reading, and later decide to save it </ul> <p>Our application uses a writeable memory-mapped file to save data files, but since the user might want to exit without saving changes, we have to use a temporary file which the user actually edits. When the user opts to save the changes, the original file is overwritten with the temporary file so it has the latest changes. This is cumbersome because the files can be very large (>1GB) and it takes a long time to copy them.</p> <p>I've tried many combinations of the flags used to create the file mapping but none seem to allow the flexibility of saving on demand. Can anyone confirm this is the case? Our application is written in Delphi, but it uses the standard Windows API to create the mapping, in our case</p> <pre><code>FMapHandle := CreateFileMapping(FFileHandle, nil, PAGE_READWRITE, 0, 2 * 65536, nil); FBasePointer := MapViewOfFile(FileMapHandle, FILE_MAP_WRITE, FileOffsetHigh, FileOffsetLow, NumBytes); </code></pre> http://stackoverflow.com/questions/1858673/connect-with-a-database-over-the-lan 0 Connect with a database over the LAN Leo 2009-12-07T08:44:02Z 2009-12-07T09:35:49Z <p>How to connect with a database over the LAN?</p> <p>I have only the name of the computer.</p> http://stackoverflow.com/questions/1840666/is-there-any-alternate-way-to-supply-similar-functions-as-com-does 0 Is there any alternate way to supply similar functions as COM does? Chau Chee Yang 2009-12-03T15:31:58Z 2009-12-03T18:54:04Z <p>Window's COM allow us to wrap our application function for out-of-process invocation. If the COM interfaces are well defined and design, it is certainly great to consume the services via scripts and any programming platform that support COM/Automation/Active-X.</p> <p>I am just wondering if there exist any alternate methods to design of what COM does? Or something close or similar methodology?</p> <p>I am using Delphi in Win32 platform.</p> http://stackoverflow.com/questions/1766583/working-with-ime-names-in-delphi 0 Working with IME names in Delphi Pavan 2009-11-19T21:10:37Z 2009-11-20T02:02:15Z <p>Hi,</p> <p>Delphi TScreen object has a collection that accepts IME names. And the TControl offers SetIMEName method.</p> <p>Are these IME names constant? Are they same as ISO language names?</p> <p>Platform: Windows XP.</p> <p>Thanks, Pavan.</p> http://stackoverflow.com/questions/1714685/delphi-printing-primer 1 Delphi printing primer Eric Fortier 2009-11-11T11:46:22Z 2009-11-12T02:26:55Z <p>I need to add printing capabilities to an app and I have been looking around for information about printing. Logical/physical sizes, dpi, font scaling, etc, lots to digest since I never programmed printing into any app before.</p> <p>Are there any sites that would offer a primer on the topics of page sizes, margins and all the other elements required to understand printing on Windows? I've been looking around for a while but what I find is either cryptic or years old...</p> <p>I've been playing around with TPrinter, but I would like to build solid printing functionalities and understand what I'm doing better. </p> <p>Using a report solution is not an option, even though I'm sure it would provide better results much sooner.</p> <p>Thank you,</p> <p>Eric F.</p> http://stackoverflow.com/questions/1528610/split-large-file-without-copy 6 Split large file without copy? tikinoa 2009-10-06T23:17:43Z 2009-11-10T13:06:17Z <p><strong>Question:</strong> Are there Windows API calls (perhaps NTFS only) which allows one to split a very large file into many others without actually copying any data (in other words, specify the logical breakpoints between joined files, with file names and sizes)?</p> <p><em>Examples:</em> SetFileValidData, NtSetInformationFile</p> <p><strong>Scenario:</strong> I need to programatically distribute/copy 10GB of files from a non-local drive (including network, USB and DVD drives). This is made up of over 100,000 individual files with median size about 16kbytes, but joined into ~2GB chunks. </p> <p>However, using simple FileStream api's (64kb buffer) to extract files from the chunks on non-local drives to individual files on a local hard drive seems to be limited on my machine to about 4MB/s, whereas copying the entire chunks using Explorer occurs at over 80MB/s! </p> <p>It seems logical to copy entire chunks, but give Windows enough info to logically split the files (which theoretically should be able to happen very, very fast). </p> <p>Doesn't the Vista install do something like this?</p> http://stackoverflow.com/questions/1687074/how-can-i-test-my-applications-against-the-popular-virus-scanners 6 How can I test my applications against the popular virus scanners? mj2008 2009-11-06T11:42:21Z 2009-11-06T19:19:45Z <p>I need to find out whether my apps are being flagged as viruses by the most popular anti-virus packages (not best, but biggest by user base). I therefore would like to know how others go about this. Some background:</p> <p>I have an application written in Delphi. Ever since the Delphi virus was found, I've had problems with false positives on my applications, particularly my demonstration versions for some reason (they all share the same code). AVG has been good, and I can now whitelist my files easily, but then I got the latest DevExpress installer and it was false-positived too. Given this is getting more widespread, it struck me that I need to find out if my apps are being flagged by the most popular anti-virus packages. I therefore would like to know how others go about this. I don't want people to be downloading our demonstration versions, getting an AV warning, and deciding not to try it.</p> <p>The only options I have so far are buying a load of AV packages and putting them in a VM, or using a service like <a href="http://www.virustotal.com/sobre.html" rel="nofollow">VirusTotal</a>. The latter seemed an ideal option but for the fact that they limit the test to files under 20Mb, and my files are bigger than this. There is no paid for option either to expand the capability. (I thought this an odd limit, but Kaperskis free checker is limited to 1Mb!)</p> <p>How do you check your applications?</p> http://stackoverflow.com/questions/1667745/fileexists-timeout 0 FileExists timeout [closed] silent 2009-11-03T14:40:35Z 2009-11-03T15:17:38Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/1438923/faster-directoryexists-function">Faster DirectoryExists function?</a> </p> </blockquote> <p>I want to check if some file exists on a network drive. But FileExists is too slow if drive is disconnected. How can I check it with some timeout?</p> <p>Examples are welcome.</p> http://stackoverflow.com/questions/1648975/how-can-i-efficiently-retrieve-the-number-of-files-in-a-directory 5 How can I efficiently retrieve the number of files in a directory? Smasher 2009-10-30T10:16:51Z 2009-10-30T22:06:02Z <p>Is there a way (on windows using Delphi 2010) to get the number of files in a dirctory without actually traversing all files?</p> <p>I want to implement a progress bar during some file system indexing operation. For that reason I need to know how many files are in the directory.</p> <p>What is the fastest way to get the number of files in a directory?</p> http://stackoverflow.com/questions/1644242/get-drive-information-free-space-etc-for-drives-on-windows-and-populate-a-mem -14 Get drive information (free space, etc.) for drives on Windows and populate a memo box Jim Moore 2009-10-29T14:45:30Z 2009-10-30T11:30:32Z <p>I am trying to get all the information about my hard drives displayed in a memo or some other control so I can see free space and total space on the drives. I know there is a shell call I can use, but cannot figure out the usage.</p> <p>Can anyone give me an example or explain what I am doing wrong?</p> http://stackoverflow.com/questions/1646326/how-to-deploy-python-to-windows-users 2 How to deploy Python to Windows users? mamcx 2009-10-29T20:28:34Z 2009-10-30T05:27:32Z <p>I'm soon to launch a <a href="http://www.bestsellerapp.com/" rel="nofollow">beta app</a> and this have the option to create custom integration scripts on <a href="http://en.wikipedia.org/wiki/Python%5F%28programming%5Flanguage%29" rel="nofollow">Python</a>.</p> <p>The app will target <a href="http://en.wikipedia.org/wiki/Mac%5FOS%5FX" rel="nofollow">Mac OS X</a> and Windows, and my problem is with Windows where Python normally is not present.</p> <p>My actual aproach is silently run the Python 2.6 install. However I face the problem that is not activated by default and the path is not set when use the <a href="http://www.python.org/download/releases/2.5/msi/" rel="nofollow">command line options</a>. And I fear that if Python is installed before and I upgrade to a new version this could break something else...</p> <p>So, I wonder how this can be done cleanly. Is it OK if I copy the whole Python 2.6 directory, and put it in a sub-directory of my app and install everything there? Or with virtualenv is posible run diferents versions of Python (if Python is already installed in the machine?).</p> <p>I also play before embedding Python with a DLL, and found it easy but I lost the ability to debug, so I switch to command-line plug-ins.</p> <p>I execute the plug-ins from command line and read the STDOUT and STDERR output. The app is made with Delphi/Lazarus. I install others modules like JSON and RPC clients, Win32com, ORM, etc. I create the installer with <a href="http://bitrock.com/" rel="nofollow">bitrock</a>.</p> <p>UPDATE: The end-users are small business owners, and the Python scripts are made by developers. I want to avoid any additional step in the deployment, so I want a fully integrated setup.</p> http://stackoverflow.com/questions/1635947/how-to-make-sure-that-a-file-was-permanently-saved-on-usb-when-user-doesnt-use 9 How to make sure that a file was permanently saved on USB, when user doesn't use "Safely Remove Hardware"? max 2009-10-28T08:54:07Z 2009-10-28T13:44:29Z <p>When I save a file on a USB within my delphi application, how can I make sure the file is really (permanently) saved on the USB, when "Safely Remove Hardware" is not performed (especially forgotten to use)?<br> Telling our customer to use the windows feature "Safely Remove Hardware" doesn't work.<br> Is there a windows API command to flush the buffer, so that all data are written to the USB drive permanently?</p> http://stackoverflow.com/questions/1632470/accessing-a-single-file-with-multiple-threads 5 Accessing a single file with multiple threads Raymond Wilson 2009-10-27T17:39:41Z 2009-10-28T02:16:03Z <p>I need to access a file concurrently with multiple threads. This needs to be done concurrently, without thread serialisation for performance reasons.</p> <p>The file in particular has been created with the 'temporary' file attribute that encourages windows to keep the file in the system cache. This means most of the time the file read wont go near the disk, but will read the portion of the file from the system cache.</p> <p>Being able to concurrently access this file will significantly improve performance of certain algorithms in my code.</p> <p>So, there are two questions here:</p> <ol> <li>Is it possible for windows to concurrently access the same file from different threads?</li> <li>If so, how do you provide this ability? I've tried creating the temp file and opening the file again to provide two file handles, but the second open does not succeed.</li> </ol> <p>Here's the create:</p> <pre><code>FFileSystem := CreateFile(PChar(FFileName), GENERIC_READ + GENERIC_WRITE, FILE_SHARE_READ + FILE_SHARE_WRITE, nil, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL OR FILE_FLAG_RANDOM_ACCESS OR FILE_ATTRIBUTE_TEMPORARY OR FILE_FLAG_DELETE_ON_CLOSE, 0); </code></pre> <p>Here's the second open:</p> <pre><code>FFileSystem2 := CreateFile(PChar(FFileName), GENERIC_READ, FILE_SHARE_READ, nil, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL OR FILE_FLAG_RANDOM_ACCESS OR FILE_ATTRIBUTE_TEMPORARY OR FILE_FLAG_DELETE_ON_CLOSE, 0); </code></pre> <p>I've tried various combinations of the flags with no success so far. The second file open always fails, with messages to the affect that the file cannot be accessed as it is in use by another process.</p> <p>Edit: </p> <p>OK, some more information (I was hoping to not get lost in the weeds here...)</p> <p>The process in question is a Win32 server process running on WinXP 64. It's maintaining large spatial databases and would like to keep as much of the spatial database as possible in memory in an L1/L2 cache structure. L1 already exists. L2 exists as a 'temporary' file that stays in the windows system cache (it's somewhat of a dirty trick, but gets around win32 memory limitations somewhat). Win64 means I can have lots of memory used by the system cache so memory used to hold the L2 cache does count towards process memory.</p> <p>Multiple (potentially many) threads want to concurrently access information contained in the L2 cache. Currently, access is serialised, which means one thread gets to read it's data while most (or the rest) of the threads are blocked pending completion of that operation.</p> <p>The L2 cache file does get written to, but I'm happy to globally serialise/interleave read and write type operations as long as I can perform concurrent reads.</p> <p>I'm aware there are nasty potential thread concurrency issues, and I'm aware there are dozens of ways to skin this cat in other contexts. I have this particular context, and I'm trying to determine if there is a way to permit concurrent thread read access within the file and within the same process.</p> <p>Another approach I have considered would be two split the L2 cache into multiple temporary files, where each file serialises thread access the way the current single L2 cache file does.</p> <p>And yes, this somewhat desparate approach is because 64 bit Delphi wont be with us any time soon :-(</p> <p>Thanks, Raymond.</p> http://stackoverflow.com/questions/1594906/how-do-i-make-my-delphi-5-app-display-password-blobs 2 How do I make my Delphi 5 app display password "blobs"? Drarok 2009-10-20T14:14:27Z 2009-10-20T18:46:19Z <p>Pretty simple one, but I can't find the answer.</p> <p>I'm building an app in Delphi 5 Enterprise, and want my app to use the new bold black dot in a password field instead of an asterisk.</p> <p>How can I do this?</p> http://stackoverflow.com/questions/1592989/how-can-i-closecomm-opencomm-writecomm-and-readcomm-with-the-windows-unit 0 How can i CloseComm, OpenComm, WriteComm and ReadComm with the windows unit? Makaku00 2009-10-20T07:29:45Z 2009-10-20T07:33:31Z <p>I have an old comm unit that uses WinTypes,WinProcs. As i understand these were merged too the Windows unit. Are there similar functions in the Windows unit?</p> http://stackoverflow.com/questions/1530169/place-a-window-behind-any-other-existing-third-party-window 0 Place a window behind any other existing third party window John Riche 2009-10-07T07:58:24Z 2009-10-07T19:16:14Z <p>In order to take a screenshot of a specific window, I need to place a white colored TForm behind that window. What Windows API could I use to change the z-order of my window and place it correctly ?</p> http://stackoverflow.com/questions/1530170/what-errors-exceptions-trigger-windows-error-reporting 2 What errors / exceptions trigger Windows Error Reporting? Smasher 2009-10-07T07:58:27Z 2009-10-07T15:29:09Z <p>When running a Delphi application outside the debugger most exceptions that occur seem to be silently ignored (like an access violation). Sometimes however there appears the Windows error reporting dialog (send or not send, you probably know what I mean). What exactly does this mean? What errors trigger this behaviour?</p> <p>Additional info: I have a global exception handler for my application that should log all unhandled exceptions. So, no exceptions should leave the application unhandled.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1526637/selecting-all-instances-of-a-word-in-a-trichedit 1 Selecting all instances of a word in a TRichEdit [closed] Uri 2009-10-06T16:23:31Z 2009-10-06T23:36:45Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/1375639/mark-all-the-instances-of-a-word-delphi-richtext">mark all the instances of a word (Delphi, RichText)</a> </p> </blockquote> <p>I'm trying to select (or more correctly mark) all the instances of a word in a RichEdit control on Delphi 6. The idea is that if a user double clicks on a word, all the instances of that word would be marked with their background in yellow color or something similar. The moment the user clicks something else, then all the marked words return to normal.</p> <p>Is there any way to achieve this? If yes, can you post sample code?</p> <p>thanks!</p> http://stackoverflow.com/questions/1505983/system-wide-keyboard-hook-on-vista-and-later 3 System wide keyboard hook on Vista and later Scrapdog 2009-10-01T19:32:22Z 2009-10-02T00:16:14Z <p>I have a system-wide keyboard hook DLL that I have created that has been working successfully for years in Windows XP.</p> <p>However, it appears that in certain later versions of Windows (Vista Home Premium, and Windows 7, to name a couple), the hook either does not work at all, or it simply works only locally within the application that installed it.</p> <p>I have seen it suggested in a couple of places on the internet to change the WH-KEYBOARD to WH-KEYBOARD-LL in the call to SetWindowsHookEx, but this doesn't appear to help when I tried it. Is there something else I need to change in addition to changing the hook type to WH-KEYBOARD-LL?</p> <p>(P.S.: I had to define WH-KEYBOARD-LL as 13, since it not defined in Delphi. I'm assuming this is accurate.) </p> http://stackoverflow.com/questions/1096498/delphi-and-hdd-i-o-quoting-resource-pre-caching-read-write-seek-parameter-lim 1 Delphi and HDD I/O Quoting , Resource Pre-Caching , Read/Write/seek parameter limiting. HX_unbanned 2009-07-08T06:58:33Z 2009-09-28T06:15:49Z <p>Hello proggies!</p> <p>I have dynamic array filled with bytes, which are read from .raw file with BlockRead() and this operation, logically, requieres hell of a Shell resources and I wanned to know if there is any methods to reserve some amount or limit maximum amount of Read/Write/Seek used for Program runetime from Hard Disk Drive*****</p> <p><strong>[Clarification]</strong>: I meant to set maximum reading speed from HDD while performing action with windows shell / internal app resources. In this moment app is very sensitive to hdd's performance, but it causes on several machines to freez / lock because system cannot manage disk operations...</p> <p>I wanted to know about any methods, tutorials, in worst case unit in which function declarations and class info can be found.</p> <p>As much I know, Pascal as the base of Deplhi does not provide very easy approach as the best could be TStream or TPipeline usage (TSocket should not be good, right?)... As much I have used streams, I did not like it because there were some underwater stones with TFileStream ...</p> <p>Anyway - please give me at least intro to disk performance management...</p> http://stackoverflow.com/questions/1472325/saving-a-records-containing-a-member-of-type-string-to-a-file-delphi-windows 0 saving a records containing a member of type string to a file (Delphi, Windows) wonderer 2009-09-24T15:08:57Z 2009-09-25T07:55:37Z <p>I have a record that looks similar to:</p> <pre><code>type TNote = record Title : string; Note : string; Index : integer; end; </code></pre> <p>Simple. The reason I chose to set the variables as string (as opposed to an array of chars) is that I have no idea how long those strings are going to be. They can be 1 char long, 200 or 2000. Of course when I try to save the record to a type file (file of...) the compiler complains that I have to give a size to string. Is there a way to overcome this? or a way to save those records to an untyped file and still maintain a sort of searchable way?</p> <p>Please do not point me to <em>possible solutions</em>, if you know the solution please post code. Thank you</p> http://stackoverflow.com/questions/1129864/imagelistadd-returns-1-on-pc-controlled-with-pcanywhere 1 ImageList_Add returns -1 on PC controlled with pcAnywhere Andreas 2009-07-15T07:12:31Z 2009-09-24T23:02:19Z <p>One of our applications fails on computers that are controlled via pcAnywhere because the ImageList_Add() WinAPI function fails to add the image/mask after some time. The function returns -1 and the number of icons in the imagelist doesn't change. On all other computers this is no problem. What is interesting is that we can add 99 bitmaps (LoadBitmap) to the imagelist but by adding the 100th bitmap ImageList_Add stops working.</p> <p>I tried to write a simple test application that fills the imagelist by a specified number of bitmaps but that didn't cause the problem. So I'm standing in the rain. Does anybody have seen this strange behavior or has a solution or explanation for it?</p> http://stackoverflow.com/questions/1355258/delphi-7-forms-anchors-not-working-in-vista 7 Delphi 7 forms, anchors not working in Vista Robo 2009-08-31T00:01:43Z 2009-09-21T22:59:08Z <p>The software is built on Delphi 7.</p> <p>On my XP machine, the form resizes as I expect. However, on two Vista machines, I have components with anchors set to [akLeft, akTop, akRight, akBottom], but when I resize the form, the components don't stretch with the form, leaving blank spaces on the right and bottom edge. On the XP machine, the components correctly stretch with the form.</p> <p>So, it seems like the Vista machine is ignoring the anchor property. Any ideas what's causing this and how to fix it?</p> <p><strong>Important update (François):</strong><br /> We had the same problem with our <strong>D2007</strong> application and <strong>on all x64 windows</strong>.<br /> Andreas' answer was indeed the fix. So it is not D7 nor Vista related.</p>