active questions tagged delphi - Stack Overflow most recent 30 from stackoverflow.com 2010-02-09T19:39:05Z http://stackoverflow.com/feeds/tag/delphi http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2231831/differences-between-visual-component-libraryvcl-and-winapi 0 Differences between visual component library(vcl) and WinApi Azad Salahli 2010-02-09T19:23:25Z 2010-02-09T19:35:29Z <p>Is there any difference between using vcl components in Delphi and WinApi functions to create gui application.</p> http://stackoverflow.com/questions/2228071/is-learning-the-cache-database-hard-coming-from-relational-databases-and-object-o 1 Is learning the Caché database hard coming from relational databases and object oriented programming language like Delphi ? Edelcom 2010-02-09T09:44:49Z 2010-02-09T18:43:52Z <p>I am currently running the local version of <strong>Caché</strong> on my system in order to determine if I can (and will) take on a new possible project.</p> <p>The current project uses <strong>Delphi 7</strong> as a front end calling a Caché dll where the business logic is stored in the database.</p> <p>I have a background of Sqlserver and Firebird (and before Access and Paradox) as databases.</p> <p>I use Delphi 7 for 95% of my Windows development, so I know about object programming.</p> <p><strong>I would like to recieve opinions from persons having used Caché and either SqlServer, Firebird or Oracle and having developed in Delphi (or C++ or C# - an object oriented language).</strong></p> <p>I have read the pro's and con's from other questions, but I am not asking for this, I need input from Caché developers.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/2230019/framework-for-delphi-similar-to-castor 1 Framework for Delphi similar to Castor Mielofon 2010-02-09T15:07:41Z 2010-02-09T18:41:24Z <p>Can anyone suggest: a framework for Delphi for work with XML / XSD like the one that makes <a href="http://www.castor.org/" rel="nofollow">Castor for JAVA</a>?<br> Borland XML Data Binding does not offer - he is not flexible.</p> http://stackoverflow.com/questions/2228661/draw-and-manipulate-shapes-at-run-time 0 Draw and manipulate shapes at run time Bruce McGee 2010-02-09T11:30:27Z 2010-02-09T17:39:03Z <p>What's the best way to draw shapes interactively at run time using Delphi? I need to be able to select, drag and resize the shapes. This will be used to mark up existing images and documents.</p> <p>This looks like a <a href="http://www.programmingforums.org/showthread.php?t=26196" rel="nofollow">good starting point</a>, but I'm wondering if there's a more complete library (preferably free) available that will save some time.</p> http://stackoverflow.com/questions/2229930/why-does-shgetfolderpath-return-nil-when-the-folder-exists-on-some-vista-pcs 1 Why does ShGetFolderPath return nil when the folder exists on some Vista pc's Bill 2010-02-09T14:53:48Z 2010-02-09T15:29:30Z <p>While testing our apps we found that using ShGetFolderPath to return the AppData path the function returns nil even though the folder exists on a test PC. On the development PC ShGetFolderPath returns the AppData path with no error.</p> <p>The development PC and the test PC are running Vista.</p> <pre><code>function GetShellFolder( ID: Cardinal; Create: Boolean = False ): string; // This function is a superset of SHGetSpecialFolderPath, included with // earlier versions of the Shell. On systems preceeding those including // Shell32.dll version 5.0 (Windows Millennium Edition (Windows Me) and // Windows 2000), SHGetFolderPath was obtained through SHFolder.dll, // distributed with Microsoft Internet Explorer 4.0 and later versions. // Takes the CSIDL of a folder and returns the path or 'Could not determine // folder path' if it does not exist. Creates the folder if it does not // exist if Create is true. var Res: HResult; Path: array [ 0 .. Max_Path ] of Char; begin if Create then ID := ID or csidl_Flag_Create; Res := ShGetFolderPath( 0, ID, 0, shgfp_Type_Current, Path ); if S_OK &lt;&gt; Res then begin Result := 'Could not determine folder path'; raise Exception.Create( 'Could not determine folder path' ); end; Result := Path; end; GetShellFolder( CSIDL_LOCAL_APPDATA, False ); </code></pre> <p>On the development machine the CSIDL_LOCAL_APPDATA path is returned successfully, but on a test PC the CSIDL_LOCAL_APPDATA folder is not returned.</p> <p>Does anyone know why the CSIDL_LOCAL_APPDATA folder is not returned on the test PC even though the folder exists on the hard drive? The test machine returns the history folder with CSIDL_HISTORY, yet it does not return the local appdata folder with CSIDL_LOCAL_APPDATA.</p> <p>On the test PC explorer shows the CSIDL_LOCAL_APPDATA folder as users\user\AppData\Local. On the test PC explorer shows the CSIDL_HISTORY folder as users\user\AppData\Local\Microsoft\Windows\History.</p> <p>if we call GetShellFolder( CSIDL_LOCAL_APPDATA, True) the function still does not return the folder path.</p> <p>What am I doing wrong or how can I fix this problem?</p> http://stackoverflow.com/questions/2229699/ok-to-use-virtualprotect-to-change-resource-in-delphi 0 Ok to use VirtualProtect to change resource in Delphi? user257188 2010-02-09T14:22:17Z 2010-02-09T14:22:17Z <p>I'm working o a simple localization effort in D2010. I'm handling all strings on forms because ETM seems like overkill for my needs, as did other 3rd party tools... (although I'm not so sure at this point!) </p> <p>Is the code below for changing the Const.pas strings considered safe to change the button labels on standard message boxes?</p> <pre><code>procedure HookResourceString(rs: PResStringRec; newStr: PChar); var oldprotect: DWORD; begin VirtualProtect(rs, SizeOf(rs^), PAGE_EXECUTE_READWRITE, @oldProtect); rs^.Identifier := Integer(newStr); VirtualProtect(rs, SizeOf(rs^), oldProtect, @oldProtect); end; const NewOK: PChar = 'New Ok'; NewCancel: PChar = 'New Cancel'; Procedure TForm.FormCreate; begin HookResourceString(@SMsgDlgOK, NewOK); HookResourceString(@SMsgDlgCancel, NewCancel); end; </code></pre> http://stackoverflow.com/questions/2228737/is-delphi-generic-tinterfacelist-possible 0 Is Delphi generic TInterfaceList possible? Alan Clark 2010-02-09T11:45:28Z 2010-02-09T12:34:23Z <p>In Delphi 2010, I have defined a generic TInterfaceList as follows:</p> <pre><code>type TInterfaceList&lt;I: IInterface&gt; = class(TInterfaceList) function GetI(index: Integer): I; procedure PutI(index: Integer; const Item: I); property Items[index: Integer]: I read GetI write PutI; default; end; implementation function TInterfaceList&lt;I&gt;.GetI(index: Integer): I; begin result := I(inherited Get(Index)); end; procedure TInterfaceList&lt;I&gt;.PutI(index: Integer; const Item: I); begin inherited Add(Item); end; </code></pre> <p>I haven't had any problems yet, but is there anything inherently risky about doing this? Would it be possible to add an enumerator to it to allow for..in loops to work on it? If there's nothing wrong with it, I wonder why something similar isn't already defined in the RTL.</p> http://stackoverflow.com/questions/2228586/painting-tpaintbox-during-dragdrop-with-dragimage 0 Painting TPaintBox during Drag&Drop with DragImage Ulrich Gerhardt 2010-02-09T11:16:42Z 2010-02-09T12:20:24Z <p>In my application (Delphi 2007) I want to drag items from a ListView to a PaintBox and highlight corresponding areas in the PaintBox's OnPaint handler. However I always get ugly artefacts. Do you have any advice how I can get rid of them?</p> <p><strong>Test project:</strong> Just create a new VCL application and replace the code in Unit1.pas with the following. Then start the app and drag list items over the rectangle in the PaintBox.</p> <pre><code>unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls, ComCtrls, ImgList; type TForm1 = class(TForm) private PaintBox1: TPaintBox; ListView1: TListView; ImageList1: TImageList; FRectIsHot: Boolean; function GetSensitiveRect: TRect; procedure PaintBox1DragOver(Sender, Source: TObject; X, Y: Integer; State: TDragState; var Accept: Boolean); procedure PaintBox1Paint(Sender: TObject); public constructor Create(AOwner: TComponent); override; end; var Form1: TForm1; implementation {$R *.dfm} uses TypInfo; const IconIDs: array[TMsgDlgType] of PChar = (IDI_EXCLAMATION, IDI_HAND, IDI_ASTERISK, IDI_QUESTION, nil); { TForm1 } constructor TForm1.Create(AOwner: TComponent); var Panel1: TPanel; mt: TMsgDlgType; Icon: TIcon; li: TListItem; begin inherited Create(AOwner); Width := 600; Height := 400; ImageList1 := TImageList.Create(Self); ImageList1.Name := 'ImageList1'; ImageList1.Height := 32; ImageList1.Width := 32; ListView1 := TListView.Create(Self); ListView1.Name := 'ListView1'; ListView1.Align := alLeft; ListView1.DragMode := dmAutomatic; ListView1.LargeImages := ImageList1; Panel1 := TPanel.Create(Self); Panel1.Name := 'Panel1'; Panel1.Caption := 'Drag list items here'; Panel1.Align := alClient; PaintBox1 := TPaintBox.Create(Self); PaintBox1.Name := 'PaintBox1'; PaintBox1.Align := alClient; PaintBox1.ControlStyle := PaintBox1.ControlStyle + [csDisplayDragImage]; PaintBox1.OnDragOver := PaintBox1DragOver; PaintBox1.OnPaint := PaintBox1Paint; PaintBox1.Parent := Panel1; ListView1.Parent := Self; Panel1.Parent := Self; Icon := TIcon.Create; try for mt := Low(TMsgDlgType) to High(TMsgDlgType) do if Assigned(IconIDs[mt]) then begin li := ListView1.Items.Add; li.Caption := GetEnumName(TypeInfo(TMsgDlgType), Ord(mt)); Icon.Handle := LoadIcon(0, IconIDs[mt]); li.ImageIndex := ImageList1.AddIcon(Icon); end; finally Icon.Free; end; end; function TForm1.GetSensitiveRect: TRect; begin Result := PaintBox1.ClientRect; InflateRect(Result, -PaintBox1.Width div 4, -PaintBox1.Height div 4); end; procedure TForm1.PaintBox1Paint(Sender: TObject); var r: TRect; begin r := GetSensitiveRect; if FRectIsHot then begin PaintBox1.Canvas.Pen.Width := 5; PaintBox1.Canvas.Brush.Style := bsSolid; PaintBox1.Canvas.Brush.Color := clAqua; end else begin PaintBox1.Canvas.Pen.Width := 1; PaintBox1.Canvas.Brush.Style := bsClear; end; PaintBox1.Canvas.Rectangle(r.Left, r.Top, r.Right, r.Bottom); end; procedure TForm1.PaintBox1DragOver(Sender, Source: TObject; X, Y: Integer; State: TDragState; var Accept: Boolean); var r: TRect; MustRepaint: Boolean; begin MustRepaint := False; if State = dsDragEnter then begin FRectIsHot := False; MustRepaint := True; end else begin r := GetSensitiveRect; Accept := PtInRect(r, Point(X, Y)); if Accept &lt;&gt; FRectIsHot then begin FRectIsHot := Accept; MustRepaint := True; end; end; if MustRepaint then PaintBox1.Invalidate; end; end. </code></pre> <p><strong>Edit:</strong> Here is a picture of the glitch:<img src="http://img269.imageshack.us/img269/6535/15778780.png" alt="DragImage artefact"></p> <p>I expect to see the complete blue rectangle with thick border. However beneath the drag image one can see the un-highlighted rectangle.</p> http://stackoverflow.com/questions/2204216/advice-for-converting-a-large-monolithic-singlethreaded-application-to-a-multithr 19 Advice for converting a large monolithic singlethreaded application to a multithreaded architecture? David M 2010-02-05T00:15:46Z 2010-02-09T11:32:27Z <p>My company's main product is a large monolithic C++ application, used for scientific data processing and visualisation. Its codebase goes back maybe 12 or 13 years, and while we have put work into upgrading and maintaining it (use of STL and Boost - when I joined most containers were custom, for example - fully upgraded to Unicode and the 2010 VCL, etc) there's one remaining, very significant problem: it's fully singlethreaded. Given it's a data processing and visualisation program, this is becoming more and more of a handicap.</p> <p>I'm both a <b>developer</b> and <b>the project manager</b> for the next release where we want to tackle this, and this is going to be a difficult job in both areas. I'm seeking <b>concrete, practical, and architectural advice</b> on how to tackle the problem.</p> <p>The program's data flow might go something like this:</p> <ul> <li>a window needs to draw data</li> <li>In the paint method, it will call a GetData method, often hundreds of times for hundreds of bits of data in one paint operation</li> <li>This will go and calculate or read from file or whatever else is required (often quite a complex data flow - think of this as data flowing through a complex graph, each node of which performs operations)</li> </ul> <p>Ie, the paint message handler will block while processing is done, and if the data hasn't already been calculated and cached, this can be a long time. Sometimes this is minutes. Similar paths occur for other parts of the program that perform lengthy processing operations - the program is unresponsive for the entire time, sometimes hours.</p> <p>I'm seeking advice on how to approach changing this. Practical ideas. Perhaps things like:</p> <ul> <li>design patterns for asynchronously requesting data?</li> <li>storing large collections of objects such that threads can read and write safely?</li> <li>handling invalidation of data sets while something is trying to read it?</li> <li>are there patterns and techniques for this sort of problem?</li> <li>what should I be asking that I haven't thought of?</li> </ul> <p>I haven't done any multithreaded programming since my Uni days a few years ago, and I think the rest of my team is in a similar position. What I knew was academic, not practical, and is nowhere near enough to have confidence approaching this.</p> <p>The ultimate objective is to have a fully responsive program, where all calculations and data generation is done in other threads and the UI is always responsive. We might not get there in a single development cycle :)</p> <hr> <p><strong>Edit:</strong> I thought I should add a couple more details about the app:</p> <ul> <li>It's a 32-bit desktop application for Windows. Each copy is licensed. We plan to keep it a desktop, locally-running app</li> <li>We use <a href="http://www.embarcadero.com/products/cbuilder" rel="nofollow">Embarcadero (formerly Borland) C++ Builder 2010</a> for development. This affects the parallel libraries we can use, since most seem (?) to be written for GCC or MSVC only. Luckily they're actively developing it and its C++ standards support is much better than it used to be. The compiler supports <a href="http://blogs.embarcadero.com/ddean/2009/11/11/34858" rel="nofollow">these Boost components</a>.</li> <li>Its architecture is not as clean as it should be and components are often too tightly coupled. This is another problem :)</li> </ul> <p><strong>Edit #2:</strong> Thanks for the replies so far!</p> <ul> <li>I'm surprised so many people have recommended a multi-process architecture (it's the top-voted answer at the moment), not multithreading. My impression is that's a very Unix-ish program structure, and I don't know anything about how it's designed or works. Are there good resources available about it, on Windows? Is it really that common on Windows?</li> <li>In terms of concrete approaches to some of the multithreading suggestions, are there design patterns for asynchronous request and consuming of data, or threadaware or asynchronous MVP systems, or how to design a task-oriented system, or articles and books and post-release deconstructions illustrating things that work and things that don't work? We can develop all this architecture ourselves, of course, but it's good to work from what others have done before and know what mistakes and pitfalls to avoid.</li> <li>One aspect that isn't touched on in any answers is project managing this. My impression is estimating how long this will take and keeping good control of the project when doing something as uncertain as this may be hard. That's one reason I'm after recipes or practical coding advice, I guess, to guide and restrict coding direction as much as possible.</li> </ul> <p>I haven't yet marked an answer for this question - this is not because of the quality of the answers, which is great (and thankyou) but simply that because of the scope of this I'm hoping for more answers or discussion. Thankyou to those who have already replied!</p> http://stackoverflow.com/questions/2155436/delphi-madexcept-checking-state-of-checkbox-in-custom-assistant-before-attachi 1 [delphi] madExcept, checking state of checkbox in custom assistant before attaching additional files to the report Vegar 2010-01-28T15:05:44Z 2010-02-09T11:32:02Z <p>Hi,</p> <p>I have modified the send-assistant of madExcept with a new checkbox. If the use checks this box, I want to send additional attachments with the bug report (a copy of the users data files).</p> <p>How can I check if the user checked the box?</p> <p>regards, -Vegar</p> http://stackoverflow.com/questions/2227465/derive-intraweb-forms-from-parent-and-not-tiwappform-directly-error-in-ide 1 Derive IntraWeb forms from parent and not TIWAppForm directly - error in IDE Ralph Rickenbach 2010-02-09T07:33:22Z 2010-02-09T10:58:25Z <p>I have forms in my application that I derive from a common ancestor, like:</p> <p>TAtFormBaseIW = class( TIWAppForm ) and TAtFormExplorerIW = class( TAtFormBaseIW )</p> <p>This works for certain forms, but not for others.</p> <p>Let me make a wild guess: it seems to work for all forms that where created in Delphi prior to IW 10, but not for forms I created with IW 10. What happens with newer forms: HWenever I want to load them into the IDE, they are interpreted as win32 forms, some properties are ignored (all typical win32 properties such as ClientWidth), and I am told that I cannot put IW components on these forms.</p> <p>Making them direct descendants of TIWAppForm, saving them and using a normal text editor to change them back works. After a recompile they show up fine in the browser, but never in the IDE.</p> <p>Any idea of what is happening?</p> http://stackoverflow.com/questions/2226475/delph-builder-drag-and-drop-with-image-image-disappears-when-leaving-control 0 Delph/Builder drag and drop with image, image disappears when leaving control gbrandt 2010-02-09T03:03:36Z 2010-02-09T09:09:44Z <p>I have a tree control that implements drag and drop. I use an overridden OnStartDrag() to get my own TDragObjectEx that shows an image while dragging. This works perfectly within the tree control, but as soon as I leave the tree control the image disappears. The cursor stays though.</p> <p>I tried implementing OnDragOver, to reset the image but that does not appear to work. </p> <p>Any hints on this? I am using C++ builder 2010, but delphi would do the same thing.</p> <p>Update: Found setting csDisplayDragImage on each control in the form controls, and in form itself solves this issue. Is there some automated way to have csDisplayDragImage set in an entire form rather than have to set it manually in Create for each item?</p> <pre><code>void __fastcall TForm1::FormCreate(TObject *Sender) { ControlStyle &lt;&lt; csDisplayDragImage; RMU-&gt;ControlStyle &lt;&lt; csDisplayDragImage; Button1-&gt;ControlStyle &lt;&lt; csDisplayDragImage; } </code></pre> http://stackoverflow.com/questions/2227501/intraweb-application-in-ie8-loses-iwedit-text-in-onasyncchange 0 Intraweb application in IE8 loses IWEdit.Text in OnAsyncChange Ralph Rickenbach 2010-02-09T07:42:58Z 2010-02-09T07:52:02Z <p>I have an application using IntraWeb 10 and Delphi-2006 that works perfectly using Firefox or Chrome, but misbehaves using IE 8.</p> <p>I am using templates on my forms to give the designer some freedom over the placement of the main components on the screen, mainly regions and menus. Within the regions I do not use frames. Several components are placed on the regions (both Atozed Intraweb and TMS Intraweb), all featuring these events</p> <ul> <li>OnAsyncEnter: no specific action taken for components in question</li> <li>OnAsyncChange: changed value promoted to business logic layer</li> <li>OnAsyncExit: some evaluation of component dependencies are made (visibility and enabling)</li> </ul> <p>In IE8, the sender passed to the Delphi code behind OnAsnycChange (the component that has changed) loses its text attribute and always returns ''. </p> <p>This behaviour is not true if not using templates. Test applications do not show the same behaviour, even though the same templates, CSS, ServerController properties are used. Any idea on what is happening here?</p> http://stackoverflow.com/questions/1913529/ensuring-functions-within-a-webservice-are-secure-in-delphi 3 Ensuring functions within a webservice are secure in delphi delphigirl 2009-12-16T09:50:00Z 2010-02-09T06:40:02Z <p>I am in the process of designing a server side webservice dll which will be accessible by developers from other companies to access data on a central server. the issues i need to consider are - ensuring they only see the data which they are allowed to see - allowing them to upload/ download files. again only ones they are allowed to.</p> <p>I can devise a sql query which will contain the data which they will be able to see but i need to make sure that they can't edit the query to access other data. Also i will need to ensure that the upload, download functions are secure enough that they can't download other peoples files. Will it be enough to place the function procedures and objects I don't want them to see in the private declarations or will i need to do a bit more to control access.</p> <p>I am also looking at controlling the webservice by password control. what is the best means of doing this within a webservice.</p> http://stackoverflow.com/questions/2059343/twain-scanning-components-for-delphi 6 TWAIN scanning components for Delphi. Larry Lustig 2010-01-13T18:53:05Z 2010-02-09T06:38:54Z <p>I need to add TWAIN scanning to an Delphi application and am having trouble locating an off-the-shelf component to do so.</p> <p>I downloaded TDelphiTwain but, when used in D2010 on Windows Vista, it does not appear to recognize any Twain sources on my system. I also tried the trial version of Twain Toolkit for Delphi from MCM which has the advantage of being currently updated (DelphiTwain's last update was 2004), but the Twain Toolkit will not even compile on my system (I think some of the DCUs are out of date).</p> <p>Can anyone suggest a simple method of getting TWAIN scanning into my Delphi application?</p> <p><strong>UPDATE:</strong> Using vcldeveloper's update to DelphiTwain (see below) I was able to get this working. Also, I also discovered that <a href="http://www.intervalsoftware.com/envision.html" rel="nofollow">Envision Image Library</a> supports Twain scanning as well as assisting in handling multi-page TIFFs, and has been updated for compatibility with D2010.</p> <p><strong>Late Breaking UPDATE</strong> VCLDeveloper's code, below, works fine. However, I settled on Envision library which includes the ability to easily create multi-page TIFF files. I got the Envision scanning, including multi-page file handling, implemented in a few hours.</p> http://stackoverflow.com/questions/1048982/good-version-control-software-for-delphi-2009 3 good version control software for Delphi 2009 Attilah 2009-06-26T12:55:58Z 2010-02-09T03:59:26Z <p>does anyone have a good idea for what I might use ?</p> http://stackoverflow.com/questions/2225533/handling-item-checked-in-a-tlistview-descendant 0 Handling item checked in a TListView descendant. Larry Lustig 2010-02-08T22:57:32Z 2010-02-09T03:52:42Z <p>I have a TListView descendant which introduces additional features like sorting and loading from a dataset.</p> <p>I now wish to modify the class so that whenever an item is checked or unchecked it is added or removed in an internal list of checked items so that an application using an instance of the component can easily read the number and location of checked items without having to iterate over all the items in the list view.</p> <p>Unfortunately, rather than abstracting handling of the check/uncheck operation into some internal method (like DoCheck) that I could override, TCustomListView seems to embed the check logic deep in a large message-handling function.</p> <p>The only way I can think of to introduce my own behavior neatly into the component is to hijack the OnItemChecked property, causing that property to read and write FOnItemCheckedUser (for example) rather than FOnItemChecked, put my own code in FOnItemChecked, and call FOnItemCheckedUser from my code.</p> <p>Is there a more straightforward way to handle this? If not, is my idea feasible and safe to implement?</p> http://stackoverflow.com/questions/2210025/how-to-mark-all-tclientdataset-records-as-inserted 1 How to mark all TClientDataSet records as Inserted? dmajkic 2010-02-05T20:00:48Z 2010-02-08T22:46:36Z <p>I have a complex transaction that saves data from multiple TClientDataSets in database.</p> <p>One of those ClientDataSets always append data to underlaying table, eg. generate INSERT statements, regardless of where existing records came from. </p> <p>I'm forcing inserts right now with: </p> <pre><code>// Create temp table, assign all target data, // Empty target table, append data from temp Tmp := TClientDataSet.Create; Tmp.Data := Table.Data; Table.MergeChangeLog; Table.EmptyDataSet; Tmp.First; // Append all records While not Tmp.Eof do begin Table.Append; for i := 0 to Table.FieldCount - 1 do Table.Fields[i].Value := Tmp.Fields[i].Value Table.Post; Tmp.Next; end; Tmp.Free; </code></pre> <p>Is there a simpler way to just mark all records as inserted?</p> http://stackoverflow.com/questions/2225287/why-cant-i-register-this-method-with-the-pascalscript-compiler 0 Why can't I register this method with the PascalScript compiler? Ryan J. Mills 2010-02-08T22:16:41Z 2010-02-08T22:42:35Z <p>My question is below.</p> <p>Here is my setup:</p> <pre><code>interface uses windows, {...,} uPSComponent_Default, uPSComponent, uPSRuntime, uPSComponent_Controls; TForm1 = class(TForm) //... PSScript1: TPSScript; PSImport_Classes1: TPSImport_Classes; PSImport_Controls1: TPSImport_Controls; procedure PSScript1Compile(Sender: TPSScript); //... Private procedure NewItem(const Caption:string; const SubItems:TStringList); //... end; implementation {...} procedure TForm1.PSScript1Compile(Sender: TPSScript); begin //... Sender.AddMethod(Self, @TForm1.NewItem, 'procedure NewItem(const Caption:string; const SubItems:TStringList);'); //... end; </code></pre> <p>Why am I getting the following error when I try to compile any script.</p> <pre><code>[Error] (1:1): Unable to register function procedure NewItem(const Caption:string; const SubItems:TStringList); </code></pre> <p>I know it has to do with my attempt to import the NewItem method into the PS compiler but I don't know why it will not accept the TStringList. I know it's the TStringList because if I take out the TStringList param and just use the method with the following signature then everything works.</p> <pre><code> procedure NewItem(const Caption:string); </code></pre> <p>I can't find any references saying that I can't pass objects back and forth between the compiler/script and my Delphi code but I'm beginning to think that there maybe a limitation in doing exactly this type of thing.</p> <p>Would it make more sense to try and pass an array of strings instead of a TStringList?</p> http://stackoverflow.com/questions/2222937/activex-control-not-processing-arrow-keys-correctly-when-hosted-in-delphi-applica 2 ActiveX control not processing arrow keys correctly when hosted in Delphi application Jamie 2010-02-08T16:09:30Z 2010-02-08T22:15:25Z <p>I have an ActiveX control hosted in our application. The control was imported using Delphi Import component menu.</p> <p>The ActiveX control contains an edit box for user input. When I run the control in its own sandbox application(not a Delphi app) the arrow keys work as expected moving the cursor within the edit control.<br> However when I run my Delphi application the arrow key behaviour seems to change. It seems to work more like a tab key instead.</p> <p>I assume this is happening because of the way the VCL processes key strokes. Any ideas how to get around this?</p> http://stackoverflow.com/questions/2223577/can-a-timage-handle-a-32bpp-jpg-image 0 Can a TImage handle a 32bpp JPG Image? Larry Hengen 2010-02-08T17:38:10Z 2010-02-08T19:47:05Z <p>For some reason, when I load a JPG image at design-time, the image shows as a grey scale image with vertical bars reminiscent of TV scan lines. and the image is not sized properly. The image is 500x364 32 bpp, and previews beautifully.</p> <p>Is there a limitation of TImage in terms of colour depth? </p> http://stackoverflow.com/questions/2223734/setting-application-handle-as-a-top-level-window-owner 0 Setting Application.Handle as a top-level window' owner Serg 2010-02-08T18:03:01Z 2010-02-08T18:43:52Z <p>I want the main form to appear above some other application forms (in z-order), so I override CreateParams method for these forms as follows:</p> <pre><code>procedure TForm3.CreateParams(var Params: TCreateParams); begin inherited; Params.WndParent:= Application.Handle; end; </code></pre> <p>I know the Application.Handle was the top-level windows' owner before Vista (and Delphi 2007). What is wrong with it in Vista (and Windows 7)? What potential problems may arise if I set Application.Handle as a top-level window owner?</p> http://stackoverflow.com/questions/2217068/why-should-i-care-about-rtti-in-delphi 19 Why should I care about RTTI in Delphi? Mick 2010-02-07T14:32:37Z 2010-02-08T18:22:12Z <p>I've heard a lot about the new/improved <a href="http://www.malcolmgroves.com/blog/?p=476" rel="nofollow">RTTI capabilities of Delphi 2010</a>, but I must admit my ignorance...I don't understand it. I know every version of Delphi has supported RTTI...and I know that RTTI (Runtime Type Information) allows me to access type information while my application is running.</p> <p>But what exactly does that <em>mean</em>? Is Delphi 2010's RTTI support the same thing as <a href="http://msdn.microsoft.com/en-us/library/f7ykdhsy%28VS.71%29.aspx" rel="nofollow">reflection in .NET</a>?</p> <p>Could someone please explain why RTTI is useful? Pretend I'm your pointy haired boss and help me understand why RTTI is cool. How might I use it in a real-world application?</p> http://stackoverflow.com/questions/2208054/surprising-error-in-a-delphi-program 0 Surprising error in a Delphi program JosephStyons 2010-02-05T14:59:58Z 2010-02-08T18:10:44Z <p>I am using <a href="http://stackoverflow.com/questions/337300/how-do-integrate-delphi-with-active-directory/339123#339123">this unit</a> in a Delphi 2010 application to tell me what Active Directory Groups a user is a member of.</p> <p>I created a brand-new test vcl forms application, added the unit from that link, and made a little form with an edit box for the username, another edit box to hold the CSV separated list of groups, and a list box to hold the list of groups in a columnar format.</p> <p>My code looks like this:</p> <pre><code>procedure TfrmMain.btnShowGroupsClick(Sender: TObject); var ad: TADSI; adrec: TADSIUserInfo; csvGroups: string; slGroups: TStringList; begin //take username from an edit box, tell me what AD groups they are a member of ad := TADSI.Create(Self); try ad.GetUser(edtDomain.Text,edtUser.Text,adrec); csvGroups := adrec.Groups; edtADGroups.Text := csvGroups; //ACCESS VIOLATION!! finally FreeAndNil(ad); end; { //If I UN-comment this code, and make NO OTHER CHANGES, then the //aforementioned access violation does NOT occur; there are no errors @ all, //and everything works just fine slGroups := TStringList.Create; try slGroups.CommaText := csvGroups; listBoxADGroups.Items := slGroups; finally FreeAndNil(slGroups); end; //} end; </code></pre> <p>If I run this code as-is, I get an access violation when I try to assign the CSV list of group to the edit box.</p> <pre><code>--------------------------- Debugger Fault Notification --------------------------- Project C:\Users\my_username.mydomain\bin\ADSITest.exe faulted with message: 'access violation at 0x0048a321: read of address 0x458c0035'. Process Stopped. Use Step or Run to continue. --------------------------- OK --------------------------- </code></pre> <p>However, if I un-comment the block of code involving the TStringList, then it all works great.</p> <p>Either this is some really weird compiler bug, or I'm missing something obvious. Can someone help me out?</p> <p>The "adrec" structure is a simple record consisting of a few booleans, strings, and one other record (TPassword).</p> http://stackoverflow.com/questions/2213011/getting-the-number-of-rows-and-columns-actually-populated-with-data-of-a-n-x-m-ar 0 Getting the number of rows and columns actually populated with data of a N x M Array earlcenac 2010-02-06T12:04:58Z 2010-02-08T17:23:08Z <p>I am writing some matrix routines in Delphi and this problem came up. I have defined a real matrix thus:-</p> <p>RealArrayNPbyNP = Array[1..200,1..200] of Extended;</p> <p>I have populated this array with a 5 x 6 matrix.</p> <p>How do I query the array to get the number of rows (which in this case will be 5) and the number of cols (which in this case will be 6) in delphi code.</p> http://stackoverflow.com/questions/2221713/texternalthread-what-the-heck-is-it-cannot-terminate-externally-created-thread 3 TExternalThread, what the heck is it? "Cannot terminate externally created thread" when terminating a thread-based timer :/ Michael Stahre 2010-02-08T13:05:35Z 2010-02-08T15:58:52Z <p>This happens half of the time when closing my application in which I have placed a TLMDHiTimer on my form in design time, Enabled set to true. In my OnFormClose event, I call MyLMDHiTimer.Enabled := false. When this is called, I sometimes (about half of the time) get this exception.</p> <p>I debugged and stepped into the call and found that it is line 246 in LMDTimer.pas that gives this error.</p> <pre><code>FThread.Terminate; </code></pre> <p>I am using the latest version of LMDTools. I did a complete reinstall of LMD tools before the weekend and have removed and re-added the component to the form properly as well.</p> <p>From what I've found, this has something to do with TExternalThread, but there's no documentation on it from Embarcadero and I haven't found anything referencing it within the LMDTools source code.</p> <p>Using fully updated RAD Studio 2010, Delphi 2010.</p> <p>What really upsets me here is that there's no documentation whatsoever. Google yeilds <strong>one</strong> result that actually talks about it, in which someone says that the error is caused by trying to terminate a TExternalThread. But looking at the source-code for this LMDHiTimer, not once does it aim to do anything but create a regular TThread. The one google result I could find, <a href="https://forums.codegear.com/thread.jspa?messageID=84674" rel="nofollow">Thread: Cannot terminate an externally created thread? </a> on Embarcadero mentions using GetCurrentThread() and GetCurrentThreadId() to get the data necessary to hook on to an existing thread, but the TLMDHiTimer does no such thing. It just creates its own TThread descendant with its own Create() constructor (overridden of course, and calls inherited at the start of the constructor)</p> <p>So... What the heck is this TExternalThread? Has anyone else run into this kind of exception? And perhaps figured out a solution or workaround? I've asked almost the exact same question to LMDTools' own support, but it can't hurt to ask in multiple places.</p> <p>Thank you in advance for any assistance.</p> http://stackoverflow.com/questions/1630836/how-to-cast-an-psafearray-item-into-its-original-type 0 How to cast an PSafeArray item into its original type Adilson Carvalho 2009-10-27T13:35:08Z 2010-02-08T14:02:03Z <p>Hi</p> <p>I am using an <code>COM</code> in <code>Delphi 7</code> that was created in <code>C#</code> and one of the methods of a class return an array of an type. However, when Delphi imports it, instead of an array of that type I get an <code>PSafeArray</code>.</p> <p>How can I cast the items of that array into its base type?</p> <p>I've tried to use <code>SafeArrayGetElement</code> but I couldn't find a way of casting the item into its original type.</p> http://stackoverflow.com/questions/2220288/delphi-reverse-lookup-who-includes-this-unit 3 Delphi - Reverse Lookup ' who includes this unit' sum1stolemyname 2010-02-08T08:22:31Z 2010-02-08T09:48:44Z <p>I am debugging a large application distributed over many units. I ran into a compilation error in a low level unit and do not have the slightest idea in which part of the application this unit is referenced. Is there a way to use RAD studio 2010's IDE to create some kind of include-graph? </p> <p>As most of the units used are not part of the project and spread over quite a branchy source tree, i can not simply use the 'find in files' option.</p> <p>I am currently traversing through my tree using a search-in-files-utility, but this is cumbersome.</p> <p>Do you know of amore elegant way? Development is in Embercadero RAD studio 2010, windows XP 32.</p> http://stackoverflow.com/questions/1962765/how-can-a-delphi-program-send-an-email-with-attachments-via-the-default-e-mail-cl 3 How can a Delphi Program send an Email with Attachments via the DEFAULT E-mail Client? lkessler 2009-12-26T06:47:37Z 2010-02-08T09:41:49Z <p>Within my program, I am composing an email to send using the default e-mail client software installed on a user's machine. </p> <p>I have composed the mailto address, the subject, the multilined body, and I have several attachments to be included.</p> <p>I almost got this working using mailto and ShellExecute as follows:</p> <pre><code> Message := 'mailto:someone@somewhere.com' + '?subject=This is the subjectBehold Error Report' + '&amp;body=This is line 1' + '%0D%0A' + 'This is line 2' + '%0D%0A' + 'This is line 3' + '&amp;Attach=c:\file1.txt'; RetVal := ShellExecute(Handle, 'open', PChar(Message), nil, nil, SW_SHOWNORMAL); if RetVal &lt;= 32 then MessageDlg('Cannot find program to send e-mail.', mtWarning, [mbOK], 0); </code></pre> <p>Using Delphi 2009 on a Windows Vista machine, this will open a Microsoft Mail "Create Mail" window, with the To, Subject and Body filled correctly. However the file does not get attached.</p> <p>As I researched this, I noticed some commentary stating that this technique does not work with all mail clients. However, most of the commentary is fairly old, as I realize this is a very old technique.</p> <p>Then I found that <a href="http://delphi.about.com/od/indy/a/email-send-indy.htm" rel="nofollow">Zarko Gajic said</a> that "this approach is ok, but you are unable to send attachments in this way".</p> <p>I have seen theres also the Windows Simple Mail API (MAPI), but Zarko says that only works if the end-user has MAPI-compliant email software. There are well documented techniques on using MAPI with Delphi (e.g. <a href="http://kurapaty.blogspot.com/2007/08/sending-email-using-mapi.html" rel="nofollow">Sending e-mail using mapi</a>), but they all have the disclaimer that MAPI is not always installed with Windows.</p> <p>Besides, I really want the message to come up first in the user's default email program, so they will have it as part of their email records and they can edit it and decide if and when they want to send it. I'm not sure how MAPI works and if it will do that.</p> <p>So my requirements are:</p> <ol> <li><p>To bring the email up in the user's mail program.</p></li> <li><p>To allow one or more attachments.</p></li> <li><p>To work with (hopefully) all email clients on any Windows machine from XP up (i.e. XP, Vista or 7).</p></li> </ol> <p>Is there such an animal? Or maybe does someone know how to get attachments to work with the mailto/ShellExecute technique?</p> <p>What do most people do?</p> <hr> <p>Edit: </p> <p>There have been a few answers with MAPI solutions and even an Indy solution.</p> <p>The problem I have with them is that they don't necessarily use the default mail client. On my Vista machine, for example, I have set up Windows Mail as my default client. When I do a MAPI send, it does not bring up Windows Mail, but it brings up and sets up the email in Outlook instead. I don't want that. </p> <p>Two of my users of my program complained:</p> <blockquote> <p>Your debug routine fails to send the file, as it tries to start windows mail for some reason known to it's self rather than using the default mail client (in my case thunderbird)</p> <p>I tried to fill up the exception report but gave up when it asked for this server, that server! I then got really annoyed because it launched Outlook - I never, ever use it or want to use it.</p> </blockquote> <p>I don't need code for MAPI or Indy. They are readily available. But if you suggest MAPI or Indy, what I really need is a way to find the default client and ensure that it is the one that is passed the email to be sent.</p> <p>Also, I need to know if MAPI is now universal. 5 years ago, it wasn't guaranteed to work on all machines because it wasn't installed as part of the operating system. Is that still true, or does MAPI now come with Windows XP, Vista and 7 by default?</p> <p>Same questions go for Indy or any other suggested solutions. Can it work with the default client and will it work on almost all Windows XP and later machines?</p> <p>The reason why the "mailto" solution is so nice, is that all machines have to support it for the purpose of handling the HTML mailto statement found on webpages. Now if only I could use it to add attachments ...</p> <hr> <p>Likely solution found: mjustin pointed out an alternative that makes use of the Operating System's sendto command. That most likely is the way to go. </p> <p>The mailto was not limited to 256 characters like the HTML mailto is, but I was devastated to find out it ended up being limited to 2048 characters. Fortunately a few hours later, mjustin gave his answer. </p> <p>If implementation of that goes okay, his answer will have done it for me. If not, I'll add my comments here.</p> <hr> <p>No. As it turns out, the sendto solution will not always open the default email program. On my machine, it opens Outlook when my default mailer is Windows Mail. Too bad. I've had to go back to the mailto method, despite the 2048 character limit.</p> <p>I did, however, find in the article: <a href="http://www.codeproject.com/KB/shell/sendtomail.aspx" rel="nofollow">SendTo mail recipient</a> that:</p> <blockquote> <p>At this point, you could replace ::ShellExecute with a well thought ::WinExec call, using the actual mailto command line declared in the registry and target the current e-mail client (for instance, "%ProgramFiles%\Outlook Express\msimn.exe" /mailurl:%1). But then the limitation is 32 KB. As a conclusion, there is no way to send e-mails larger than 32KB using the mailto protocol.</p> </blockquote> <p>but then I'd have to determine who the mail client is in each case. I expect that would lead to further complications.</p> <p>The one other thing I found out is that mailto allows setting of "to", "cc", "bcc", "subject" and "body" but no attachments. Whereas sendto ONLY allows attachments and then sets up a default email with a default message and no way for you to set the various fields and body.</p> http://stackoverflow.com/questions/372175/any-idea-how-to-resolve-a-bde-error-251e 0 Any idea how to resolve a BDE error $251e? Scott W 2008-12-16T18:16:12Z 2010-02-08T09:18:43Z <p>Here's the situation:</p> <p>A user of our program suddenly started receiving an error from the Borland Database Engine (BDE) when attempting to start the application. The error message says that it was unable to initialize the BDE and gives error code $251e. User is on BDE 5.2.0.2.</p> <p>I cannot find any official documentation on the error $251e. The only somewhat useful hit I can get on Google is <a href="http://www.mombu.com/microsoft/comp-databases-paradox/t-notes-bde-error-251e-and-other-25xx-codes-576309.html" rel="nofollow">not very instructive</a> and the suggestion there does no good.</p> <p>Here are some things that we have tried / discovered:</p> <ol> <li>Other applications that access the BDE the exact same way have no complaints.</li> <li>The error occurs on a line where we set Connected := True on the TDatabase component.</li> <li>Reinstalling the BDE makes no difference.</li> <li>Closing all BDE apps except the one in question makes no difference.</li> <li>Changing from using an MSSQL database to a Paradox database makes no difference.</li> <li>Making the logged in user a member of the Administrators group on the workstation makes no difference.</li> <li>The typically logged in user is a domain user.</li> <li>Logging in as a workstation administrator (non-domain) account that was originally setup on the machine as a last resort administration account, all works fine.</li> <li>Creating a new workstation user with local admin rights, the problem returns.</li> </ol> <p>The user has been temporarily allowed to use the one workstation admin account that actually works, but this is not an acceptable long-term solution. Any idea where we might go from here? Any clue as to what $251e really means?</p> <p>I know that the BDE is way out of date and no longer supported, but changing the use of the BDE is not an option right now.</p>