User Despatcher - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T08:53:39Z http://stackoverflow.com/feeds/user/10240 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1662147/drawing-and-clearing-the-desktop-canvas-with-delphi/1664429#1664429 0 Answer by Despatcher for Drawing and clearing the desktop canvas with Delphi Despatcher 2009-11-02T23:46:10Z 2009-11-02T23:46:10Z <blockquote> <blockquote> <p>the problem is that Windows won't return me the control behind the mouse</p> </blockquote> </blockquote> <p>I think you need to hook the mouse event messages for this - the hooked message then gives you the window handle that the mouse is over. </p> <p>Look up SetWindowsHookEx(WH_MOUSE,,,) and MOUSEHOOKSTRUCT.</p> http://stackoverflow.com/questions/1629456/one-way-communication-from-background-exe-to-activex-sidebar-gadget/1632683#1632683 0 Answer by Despatcher for one way communication from background exe to activex (sidebar gadget) Despatcher 2009-10-27T18:12:52Z 2009-10-27T18:12:52Z <p>the simplest (I think) is to use SendMessage with WM_COPYDATA.</p> http://stackoverflow.com/questions/1561062/is-installshield-the-only-way-to-go-for-delphi-installations 3 Is Installshield the only way to go for Delphi Installations? Despatcher 2009-10-13T15:39:16Z 2009-10-24T16:03:47Z <p>Or is there anything cheaper and better?</p> <p>I am still using the Installsheild express (Borland Limited Edition) as supplied with Delphi 6 :) but I "feel" that I should update it – am I going to gain much or anything buy buying the 2010 version?</p> <p>The old version does work on Vista. </p> <p>I am using Delphi 2009.</p> <p>Any opinions or a definitive yes/no?</p> http://stackoverflow.com/questions/1473977/hanging-else-problem/1571228#1571228 0 Answer by Despatcher for Hanging else problem? Despatcher 2009-10-15T09:24:47Z 2009-10-15T09:24:47Z <p>I don't see the problem for pascal ?</p> <p>This one is incorrectly indented. </p> <pre><code>if a then if b then x = 1; else y = 1; </code></pre> <p>Removing the semi-colon from after x = 1 would make it correctly indented.</p> <p>This one correctly indented</p> <pre><code>if a then if b then x = 1; else y = 1; </code></pre> http://stackoverflow.com/questions/1529408/help-in-pascal-writing-a-word-counter/1571124#1571124 -1 Answer by Despatcher for Help in Pascal writing a word counter Despatcher 2009-10-15T08:53:28Z 2009-10-15T08:53:28Z <p>Off the top of my head - not tested</p> <pre><code>function WordCount(const S: string; const C: Char): Integer; const ValidChars: Set of Char [A..Z, a..z]; // Alter for appropriate language var i : Integer; t : string; begin Result := 0; if Length(S) &lt;&gt; 0 then begin t := Trim(S); // lose and leading and trailing spaces t := t + ' '; // make sure a space is the last char repeat if (t[1] in ValidChars) and (t[1] = C then inc(Result); i := Pos(' ', t); t := Copy(t(i+1, Length(t)); until Length(t) = 0; end; end; </code></pre> <p>Why would you need an array or a case statement?</p> http://stackoverflow.com/questions/1566062/what-is-easiest-way-to-merge-two-or-more-pdf-files-in-delphi/1566641#1566641 0 Answer by Despatcher for What is easiest way to merge two or more pdf files in Delphi? Despatcher 2009-10-14T14:27:06Z 2009-10-14T14:27:06Z <p>If you have Adobe writer / creator could you automate it? I believe there is an SDK...</p> http://stackoverflow.com/questions/1544360/delphi-how-to-have-non-contiguous-subrange-enumeration-type/1544507#1544507 3 Answer by Despatcher for Delphi: How to have non-contiguous subrange enumeration type? Despatcher 2009-10-09T15:31:01Z 2009-10-14T09:01:10Z <p>Could you use a set instead?</p> <pre><code>TSomeCharSet= Set of Char; SomeChars: TSomeCharSet = [' ','A','B','C','D','E','F','R']; </code></pre> <p>Could be granny and egg situation but I'm not sure what you are using then for :) ...</p> <p>Well all you are left with then is creating TNonContigousCharRange yourself using a Set or array as the limiting "Range" and raising an exception when it is out of range or having a SetReceiptCode procedure to do a similar thing.</p> http://stackoverflow.com/questions/1558420/delphi-transparent-png-issue/1560589#1560589 0 Answer by Despatcher for Delphi transparent PNG Issue Despatcher 2009-10-13T14:28:24Z 2009-10-13T14:28:24Z <p>Your settings are wrong. I am doing this (With a bitmap).</p> <p>The TImage.Transparent should be false.</p> <p>The Form.TransparentColourValue should be the colour of the part of The TImage that you want to be transparent.</p> <p>The Form.TransparentColor should be True.</p> <p>[Edit] It does not matter what colour the form is if the Image covers it completely</p> http://stackoverflow.com/questions/1528610/split-large-file-without-copy/1536624#1536624 0 Answer by Despatcher for Split large file without copy? Despatcher 2009-10-08T09:15:44Z 2009-10-08T09:15:44Z <p>A thought on this: Is there enough space to copy the large chunk to a local drive and then work on it using it as a Memory Mapped file? I remember a discussion somewhere some-when that these files are very much faster as they use the windows File/page cache and are easy to set up.</p> <p><a href="http://en.wikipedia.org/wiki/Memory-mapped%5Ffile" rel="nofollow">From Wikipedia</a> and <a href="http://stackoverflow.com/questions/192527/what-are-the-advantages-of-memory-mapped-files">from StackOverflow</a></p> http://stackoverflow.com/questions/1533686/can-i-recompile-the-pas-files-used-by-the-delphi-ide/1534076#1534076 1 Answer by Despatcher for Can I recompile the .PAS files used by the Delphi IDE? Despatcher 2009-10-07T20:42:26Z 2009-10-08T08:57:55Z <p>Simply - Yes. Using one of the above answers [By Tom or Connor]. Copy DBCommon.pas to your project folder rather than edit the original. This leaves other projects and compilations unaffected because it won't be on the path.</p> http://stackoverflow.com/questions/1530169/place-a-window-behind-any-other-existing-third-party-window/1533604#1533604 0 Answer by Despatcher for Place a window behind any other existing third party window Despatcher 2009-10-07T19:16:14Z 2009-10-07T19:16:14Z <p>If you can get the handle of the window you want in front then I would assume that: Pseudo Code:</p> <pre><code>MyAppWindow.BringToFront </code></pre> <p>followed by</p> <pre><code>TargetWindow.BringToFront </code></pre> <p>Should have the desired effect, yes?</p> http://stackoverflow.com/questions/1523286/how-can-i-search-a-large-xml-data-set/1526570#1526570 0 Answer by Despatcher for How can I search a large XML data set? Despatcher 2009-10-06T16:08:18Z 2009-10-06T16:08:18Z <p>You don't say how you are implementing the datasource. I have used TClientDataSet connected via TXMLTransformProvider (OK not for 300K records) but for a few thousand. and simply setting the filter and filtered properties seems to "Query" it just fine...</p> <p>Or have I missed something?</p> http://stackoverflow.com/questions/1525429/cloning-a-tstringgrid-component/1526452#1526452 1 Answer by Despatcher for Cloning a TStringGrid Component Despatcher 2009-10-06T15:45:21Z 2009-10-06T15:45:21Z <p>A tricky choice for a learner :) however you do not need to start streaming things.</p> <p>Look up the assign() procedure for TPersistent this is the routine you need to copy parts of the grid easily. For example</p> <pre><code>for i := 0 to StringGrid1.RowCount - 1 do StringGrid2.Rows[i].Assign(StringGrid1.Rows[i]); </code></pre> <p>for an easy start differentiate your grids with the Tag property(StringGrid1.Tag := 1, StringGrid2.Tag := 2 Etc.</p> <p>The popup menu is pretty simple too:</p> <p><code>StringGrid2.popupmenu := stringGrid1.popupMenu</code> But then then you must decide in the Popup Routine Which Grid is "Active" some thing l like</p> <pre><code>Tform1.popupMenuItem1Click(Sender: TObject) if Sender is TStringGrid then Case TStrigngGrid(Sender).Tag of 1: // Grid 1 2: // Grid 2 </code></pre> <p>You can use the same simple logic with the buttons.</p> <p>As neftali mentioned the best thing would be to put the created grids in an ObjectList. You would then end up with the slightly more complex but expandabe:</p> <pre><code>Tform1.popupMenuItem1Click(Sender: TObject) var AGrid: TStringGrid; if Sender is TStringGrid then AGrid := MyListOfStringGrids[MyListOfStringGrids.IndexOf(Sender)]; DoMenuItem1Stuff(AGrid); </code></pre> <p>Have fun</p> http://stackoverflow.com/questions/1453679/best-way-of-validating-modal-dialog-fields/1457146#1457146 2 Answer by Despatcher for Best way of validating modal dialog fields? Despatcher 2009-09-21T22:05:52Z 2009-09-21T22:05:52Z <p>Just an observation but I have watched a lot of users populate dialog boxes (especially complex ones) and they DO NOT use the TAB key. They tend to click in/on edits combos radio buttons as they "think through" the answers or read from disparate documentation. This order will not be the same that you thought it would be! We as programmers are hopefully logical (captain, said Spock) but users well...</p> <p>One way that is nice (but requires effort) is to have each editor validate itself, either on change or on exit, and it simply changes colour if it is invalid. Your routine in the "OK button" code is then a simple matter of iterating through the control list and setting the focus to the first one that reports itself as "invalid" until none do. </p> <p>I do work for the airline industry with focus on credit card stuff and I have TTicketNumberEdit, TCardNumberEdit, TExpiryDateEdit, TFormOfPaymentEdit etc. works well because in some of these the validation is not simple. As mentioned, you need to put effort in early on but it pays off in complex dialogs.</p> http://stackoverflow.com/questions/1060321/how-to-convert-byte-array-to-its-hex-representation-in-delphi/1077214#1077214 0 Answer by Despatcher for how to convert byte array to its hex representation in Delphi Despatcher 2009-07-02T23:35:55Z 2009-07-02T23:35:55Z <p>Bit late to the party but why not a simple lookup table? </p> <pre><code>const HexChars : Array[0..15] of Char = ('0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'); </code></pre> <p>Assuming TBytes values of 0..15</p> <pre><code>Function (ABytea: TBytes): string begin Result := HexChars[ABytea[0]]; Result := Result + HexChars[ABytea[1]]; Result := Result + HexChars[ABytea[2]]; Result := Result + HexChars[ABytea[3]]; end; </code></pre> <p>of course neater with a loop :) and needs modifying for byte values above 15:</p> <pre><code>begin Result := HexChars[ABytea[0] shr 4]; Result := Result + HexChars[ABytea[0] and $0F]; Result := Result + HexChars[ABytea[1] shr 4]; Result := Result + HexChars[ABytea[1] and $0F]; Result := Result + HexChars[ABytea[2] shr 4]; Result := Result + HexChars[ABytea[2] and $0F]; Result := Result + HexChars[ABytea[3] shr 4]; Result := Result + HexChars[ABytea[3] and $0F]; end; </code></pre> <p>Still neater with a loop especially if TBytes gets larger</p> http://stackoverflow.com/questions/1048989/how-to-remove-duplicate-records-in-grid/1050166#1050166 0 Answer by Despatcher for How to remove duplicate records in grid ? Despatcher 2009-06-26T17:01:52Z 2009-06-26T17:01:52Z <p>With thousands of rows I would add an additional field to the DB called say Sum or Hash or if you can't change the DB add a calculated field if it is a ClientDataSet but this carries overhead at display time</p> <p>Calculate the contents of the hash field with something fast and simple like a sum of all the chars in your text field. All dupes are now easily identified. Add this field to your Unique or Distinct Query parameters or filter out on that.</p> <p>Just an Idea.</p> http://stackoverflow.com/questions/1028122/can-i-avoid-handling-a-file-twice-if-i-need-the-number-of-lines-and-i-need-to-app/1029764#1029764 0 Answer by Despatcher for Can I avoid handling a file twice if I need the number of lines and I need to append to the file? Despatcher 2009-06-22T22:42:49Z 2009-06-22T22:42:49Z <p>A bit late to the party but for the file existing problem why not use (Psuedocode):</p> <pre><code>If FileExists(C:\NEWMASTERLIST\FULLLIST.txt') then begin Open file etc Calc numlines etc end else Create new file etc NumLines := 0; end; </code></pre> http://stackoverflow.com/questions/1021666/how-do-you-set-the-result-value/1021699#1021699 0 Answer by Despatcher for How do you set the Result value? Despatcher 2009-06-20T14:11:49Z 2009-06-20T14:11:49Z <p>Is the real answer - that you simply set result to a value :)</p> <p>Note you can use result as a normal variable within the function.</p> <p>e.g.</p> <pre><code>function DoSomeStuff: Boolean; Begin Result := (evaulate some conditions); if Result then begin //Do good stuff end; end; </code></pre> http://stackoverflow.com/questions/956368/dynamic-gui-creation-using-configuration-files/1020413#1020413 1 Answer by Despatcher for Dynamic GUI creation using configuration files Despatcher 2009-06-19T23:03:18Z 2009-06-19T23:03:18Z <p>Yes we can :) I have done this for a page designer that uses only Textboxes, Rules(lines) and Graphics but it should work for all registered controls. </p> <p>[Off the cuff code approximation]</p> <pre><code> var i, itemCount: Integer; AClassName: string; AnItemClass: TSomeBaseClass; AnItem: TSomeDrivedBaseClass ARect: TRect; begin // just so we have an initail size ARect.Left := 100; ARect.Top := 100; ARect.Bottom := 200; ARect.Right := 200; // Alist is a specialised TStringList for i := 0 to itemCount - 1 do begin AClassName := Alist.ByKey['Class' + IntToStr(i)]; // locate class name AnItemClass := TSomeBaseClass(GetClass(AClassName)); // ClassName must be registered AnItem := AnItemClass.Create(OwnerComponent, ARect, AParent); AnItem.LoadFromFile(IntToStr(i), AList); // specialised loader that reads and sets all necessary properties AddItemToComponentList(AnItem); // Add to form / frame / panel whatever end; end; </code></pre> <p>Of course you first need a "Form designer" that can save the design initially - the saving is just the reverse of the above...I'll leave that as an exercise for the Reader. wWth a little modification you could use Delphi and read the DFM file :) </p> http://stackoverflow.com/questions/1017791/where-to-start-oop-in-delphi-mainly-focusing-on-database-development/1018869#1018869 7 Answer by Despatcher for Where to start OOP in Delphi mainly focusing on database development? Despatcher 2009-06-19T16:28:20Z 2009-06-19T16:28:20Z <p>Hmmm. Big question, this stuff is not in the manuals:( Would really require a book to answer it. However if you are starting a new largish? project then my advice list, after 10 years doing this with Delphi, would start as follows:</p> <p>Generally</p> <p>THINK HARD before you start what functionality you need for version 1. But don't ignore the probability of the bells and whistles of versions 2 and 3.</p> <p>Do not use data aware controls except in simple separate utility or base data entry screens.</p> <p>Reasoning: </p> <ul> <li>They immediately break your GUI &lt;-> database seperation. </li> <li>They let you down a bit at the user-friendliness test.</li> <li>They encourage Spaghetti Code </li> </ul> <p>Do not use any standard or 3rd party controls including forms, frames or datamodules NATIVELY. Build your own libraries of derived classes first - even if you don't add any functionality at the start, and always use those classes instead. </p> <p>Reasoning: </p> <ul> <li>Complete Control of your application's behaviour. </li> <li>Simplifies forward compatiblility.</li> <li>Grants you complete freedom to introduce new properties/functions at any point in your new component tree without having to edit all your dialogues and forms or objects.</li> </ul> <p>As far a possible create everything as an object with properties that have getters where you hide complexity and setters only if they <strong>can't</strong> be read only. Discipline your self to always use your own properties - cheating with a quick public variable will normally always result in you re-creating it as a property later.</p> <p>Database design - read a book :)</p> <p>GUI &lt;-> database separation.</p> <p>As the Application is going to have to interact with the data then 100% separation I don't think possible. Instead your Baseline Objects will probably define at minimum:</p> <ul> <li>A mechanism to retrieve or Load data</li> <li>A mechanism to Edit that data</li> <li>A mechanism to Save the data</li> <li>A mechanism to display the data.</li> </ul> <p>This I would call Loosely-coupled.</p> <p>For each data table or group of closely related tables create a separate Datamodule with read-only queries, writeable ones etc. Keep the SQL as simple as possible -I moved my last app from Oracle to MYSQL in 2 days - 150 tables with related objects and edit frames:). Link them all to one pooled connection initially also in it's own Datamodule. </p> <p>It sounds like you have already realised that lists, particularly TObjectLists, are your friends. Again - derive your own for each type of Object you need. I actually hide the real lists inside simpler objects. Exposing the Items and Count properties is trivial. Then you add more functionality to the base item using the internal list as necessary. From There Lists of Lists are a easy step and almost naturally follow the structure of the database data that they represent.</p> <p>You can get more sophisticated with this approach by actually storing the types of the lists that different parts of your application uses/needs in the Database as well. Then you can create the correct lists on the fly without the application actually knowing what is in them - the lists and objects themselves should by that stage of your development contain all the functionality that they need to manipulate/load/save and display their own data:). This can also be extended to the functions that a list performs. I use a couple of base list types that expose simple count and items - in my case these have about 50 descendents. </p> <p>Working this way your project may accumulate a large number of files but you can rely on and trust Delphi - the OO model is very strong and rarely gets caught out. </p> <p>If you follow most of this your main application ends up being a list loader and that is about it :) In my latest the main functionality only occupies about 100 lines of code yet what it launches is pretty complex.</p> <p>Lastly - All this is lot of work :( Getting it right first time just will not happen let's be honest, so be prepared to compromise your beautiful object model to get the app out-the-door, but make BIG comments where and why you did it and how to correct it again later.</p> <p>Good luck :) </p> http://stackoverflow.com/questions/1013489/problem-with-delphi-2009-and-old-style-object-type/1017654#1017654 2 Answer by Despatcher for Problem with Delphi 2009 and old-style object type Despatcher 2009-06-19T12:18:41Z 2009-06-19T12:18:41Z <p>Ok - Done that - I cannot get it to fail.... Is your D2009 Fully Patched? Project/Compiler Options?</p> <p>For absolute certainty and comparison here are my units:</p> <p>---------------Project File</p> <pre><code>program testD2009; {$APPTYPE CONSOLE} uses SysUtils, Object1U in 'Object1U.pas', Object2U in 'Object2U.pas'; Var Object1 : PObject1; Object2 : PObject2; begin try Object1 := New(PObject1,Init); Object1^.Add; Object1^.Deduct; Object2 := New(PObject2,Init); Object2^.Add; Object2^.Deduct; readln; except on E:Exception do Writeln(E.Classname, ': ', E.Message); end; end. </code></pre> <p>--------------Object1 unit</p> <pre><code>unit Object1U; interface uses SysUtils; Type PObject1 = ^TObject1; TObject1 = Object Magic: Array[0..3] of Byte; FCount : Integer; Constructor Init; Procedure Add; virtual; { removing virtual allows the program to run } Procedure Deduct; virtual; { removing virtual allows the program to run } end; implementation Procedure TObject1.Add; begin Writeln('Object1 Add'); end; procedure TObject1.Deduct; begin Writeln('Object1 Deduct'); end; Constructor TObject1.Init; begin inherited; FCount := 0; Writeln('TObject1 Init'); end; end. </code></pre> <p>----------------Object 2 unit</p> <pre><code>unit Object2U; interface uses Object1U; Type PObject2 = ^TObject2; TObject2 = Object(TObject1) Constructor Init; Procedure Add; virtual; { removing virtual allows the program to run } Procedure Deduct; virtual; { removing virtual allows the program to run } end; implementation procedure TObject2.Add; begin Writeln('Object2 Add'); inherited; end; procedure TObject2.Deduct; begin Writeln('Object2 Deduct'); inherited; end; Constructor TObject2.Init; begin Inherited Init; fCount := 1; Writeln('TObject2:Init'); end; end. </code></pre> <p>----------------Program Output:</p> <p>TObject1 Init Object1 Add Object1 Deduct TObject1 Init TObject2:Init Object2 Add Object1 Add Object2 Deduct Object1 Deduct</p> <p>Puzzled I am :). Cheers. Tim.</p> http://stackoverflow.com/questions/1015236/how-do-i-tell-if-a-form-is-in-help-mode/1016838#1016838 1 Answer by Despatcher for How do I tell if a form is in help mode? Despatcher 2009-06-19T08:00:25Z 2009-06-19T08:00:25Z <blockquote> <p>The form's cursor is acutally 0 even when it has a ? next to it... That I find odd.</p> </blockquote> <p>That's because that is your forms cursor</p> <p>Try Screen.Cursor that should be the active one.</p> http://stackoverflow.com/questions/1013489/problem-with-delphi-2009-and-old-style-object-type/1014967#1014967 3 Answer by Despatcher for Problem with Delphi 2009 and old-style object type Despatcher 2009-06-18T20:18:15Z 2009-06-18T20:18:15Z <p>I must admit I had a couple of beers looking at this, just for the challenge :) You need some magic bytes. According to legend Old style objects ONLY create a space for the pointers if you use ANY virtual methods. No Virtual methods NO VMT. </p> <p>The VMT pointer is ALWAYS FIRST with new style objects because they all declare virtual methods. Seems Someone forgot that with old style objects the VMT can come later. so assuming its a just one pointer this makes it work on my D2009. I'm not into the guts of the compiler, a guy called Dave Jewell who used to write for PC pro could possibly confirm that this will be stable...</p> <pre><code>Type PObject1 = ^TObject1; TObject1 = Object Magic: Array[0..3] of Byte; //or integer or whatever I was playing with the size FCount : Integer; Constructor Init; Procedure Add; virtual; Procedure Deduct; virtual; end; Type PObject2 = ^TObject2; TObject2 = Object(TObject1) Constructor Init; end; </code></pre> <p>Then after construction these work:</p> <pre><code>. . . Object2^.Add; Object2^.Deduct; </code></pre> <p>and I get the appropriate console output</p> <p>I added an additional proc just to make sure that it worked for 2 virtuals :)</p> <p>Incidentally they work whether you put the ^ or not 2009 knows what you mean :(</p> <p>Lacking a proper fix from embracodeland You still may still have to alter each BASE object definition. Hopefully you could do it with find and insert/replace or Grep... Good luck.</p> http://stackoverflow.com/questions/1011006/separating-interface-and-implementation-classes-in-delphi/1012060#1012060 1 Answer by Despatcher for Separating Interface and Implementation classes in delphi? Despatcher 2009-06-18T11:01:32Z 2009-06-18T11:07:41Z <p>Maybe my previous comment was a little presumptuous ... Reading your question again I think you may have misunderstood how to use units and in particular the "uses" directive. </p> <p>You can declare individual classes both interface and implementation in a single unit file:</p> <pre><code>unit EmployeeDBCLassesU uses system, DB, Blah, blah; // Units needed by this unit interface type TEmployeeList = class(DBList) Procedure DoSomething; end; TEmployeeDM = class(BDDBobject) Procedure DoSomething; end; implementation {TEmployeeList} Procedure TEmployeeList.DoSomething; begin ... end; {TEmployeeDM } Procedure TEmployeeDM.DoSomething; begin ... end; </code></pre> <p>Then later to use them elsewehere:</p> <pre><code>Unit BusinessDomain interface uses EmployeeDBCLassesU; // MY units needed by this unit . . . </code></pre> <p>This brings all the class definition in to BusinessDomain</p> <p>and you can then do</p> <pre><code> TBusinessDomain = class(BDDBobject) EmployeeList: TEmployeeList; EmployeeDM: TEmployeeDM; . . .; end; </code></pre> <p>Hope this helps more as you will gain so much from the correct approach - you will realise this especially when navigating units for editing and Debugging.</p> http://stackoverflow.com/questions/1006304/how-to-explain-events-to-beginners/1006535#1006535 0 Answer by Despatcher for How to explain events to beginners? Despatcher 2009-06-17T11:51:35Z 2009-06-17T11:51:35Z <p>In Delphi - I have added/defined and implemented additional event handlers and because I grew up in the 60's I called these "<strong>Happenings</strong>". I think the word describes it better than "event". So the analogy runs that "<strong>happenings</strong>" were mostly NOT PLANNED they just happened - you do not normally code them in as part of a pre-defined program execution path - you have to wait for them to occur. </p> <p>To be involved or invited you had to have the right contacts. And Adding yourself to the Happening notification list (via your objects' event methods) is a way of making sure you get to be part of the happening ... Or "there is a Happening going on at this object" - Do you want to be involved or not. If you want to be involved notify your contacts then you get to go to the party :))</p> <p>Just my light hearted two penneth :))</p> http://stackoverflow.com/questions/1005373/creating-components-at-runtime-delphi/1006438#1006438 1 Answer by Despatcher for Creating components at runtime - Delphi Despatcher 2009-06-17T11:20:45Z 2009-06-17T11:20:45Z <blockquote> <p>But if I don't surely know how many components I want to create, e.g. if it depends on user's decision. So how can I declare components dynamically?</p> </blockquote> <p>The answer has been suggested - the easiest way is a List of Objects(components). TObjectList is the simplest to use (in unit contnrs). Lists are great! </p> <pre><code> In Form1 Public MyList: TObjectList; procedure AnyButtonClick(Sender: TObject); </code></pre> <p>// You can get more sophisticated and declare //TNotifyevents and assign them but lets keep it simple :) . . .</p> <pre><code>procedure Tform1.AnyButtonClick(Sender: TObject); begin If Sender is TButton then begin Case Tbutton(Sender).Tag of . . . // Or You can use the index in the list or some other property // you have to decide what to do // Or similar :) end; end; procedure TForm1.BtnAddComponent(Sender: TObJect) var AButton: TButton; begin AButton := TButton.Create(self); Abutton. Parent := [Self], [Panel1] [AnOther Visual Control]; AButton.OnClick := AnyButtonClick; // Set Height and width and caption ect. . . . AButton.Tag := MyList.Add(AButton); end; </code></pre> <p>An Object list can contain any object visual or not but that gives you an added overhead of sorting out which items are which - better to have related lists if you want multiple dynamic controls on similar panels for instance.</p> <p>Note: like other commenters I may have over-simplified for brevity but I hope you ge the idea. You need a mechanism to manage the objects once they are created and lists are excellent for this stuff.</p> http://stackoverflow.com/questions/978040/how-to-force-delphi-compiler-to-display-all-hints-and-warnings/980745#980745 0 Answer by Despatcher for How to force Delphi compiler to display all hints and warnings Despatcher 2009-06-11T12:12:03Z 2009-06-11T12:12:03Z <p>I am still using D6 for some projects and if I do a full build then all hints and warnings are displayed/re-displayed. For syntax check or compile only changed unit messages are displayed. </p> <p>You have something else wrong or damaged somewhere. Try deleting the project .dsm and the .dof files (they will be rebuilt) the .dof file contains the warnings and hints flags.</p> http://stackoverflow.com/questions/962335/should-i-use-delphi-tframes-for-multi-pages-forms/972388#972388 2 Answer by Despatcher for Should I use delphi tframes for multi-pages forms ? Despatcher 2009-06-09T20:44:08Z 2009-06-09T20:44:08Z <p>I have a word for you : TFrameStack. Simply what the name suggests.</p> <p>It has a few methods: PushFrame(AFrame), PopFrame, PopToTop(AFrame), PopToTop(Index), and a few Properties: StackTop; Frames[Index: Integer]; Count;</p> <ul> <li>Should be self explanatory.</li> </ul> <p>The Frame at StackTop is the visible one. When doing ops like Back/Previous you don't need to know what frame was before the current one :) When creating the Frame you can create and push it in one go FrameStack.Push(TAFrame.Create) etc, which creates it calls the BeforeShow proc and makes it visible, returning its index in the stack :)</p> <p>But it does rely heavily on Inheriting your frames from a common ancestor. These frames all (in my Case) have procedures: BeforeShow; BeforeFree; BeforeHide; BeforeVisible. These are called by the FrameStack Object during push, pop and top;</p> <p>From your main form you just need to access FrameStack.Stacktop.whatever. I made my Stack a global :) so it's really easy to access from additional dialogs/windows etc.</p> <p>Also don't forget to create a Free method override to free all the frames ( if the owner is nil) in the stack when the app is shut down - another advantage you don't need to track them explicitly:)</p> <p>It took only a small amount of work to create the TFrameStack List object. And in my app work like a dream. </p> <p>Timbo</p> http://stackoverflow.com/questions/283942/extract-an-object-from-a-tobjectlist/288116#288116 0 Answer by Despatcher for extract an object from a TObjectList Despatcher 2008-11-13T20:13:15Z 2008-11-13T20:13:15Z <p>Anything wrong with:</p> <p>ExtractedObject := TExtractedObject.Create;<br /> ExtractedObject.Assign(Thelist[Idx]);<br /> TheList.Delete(idx); </p> <p>There is time needed for the create and assign but not for the search of the list. Efficiency depends on the size of the object -v- the size of the list.</p> http://stackoverflow.com/questions/287789/what-is-the-fastest-way-to-parse-a-line-in-delphi/288000#288000 0 Answer by Despatcher for What is the fastest way to Parse a line in Delphi? Despatcher 2008-11-13T19:45:14Z 2008-11-13T19:55:06Z <p>This begs another question - How big? Give us a clue like # of lines or # or Mb (Gb)? Then we will know if it fits in memory, needs to be disk based etc.</p> <p>At first pass I would use my WordList(S: String; AList: TStringlist);</p> <p>then you can access each token as Alist[n]... or sort them or whatever. </p> http://stackoverflow.com/questions/1529408/help-in-pascal-writing-a-word-counter/1571124#1571124 Comment by Despatcher on Help in Pascal writing a word counter Despatcher 2009-10-15T09:37:10Z 2009-10-15T09:37:10Z I thought it was right to show an example because the questioner has loaded the question towards &quot;Array-thinking&quot; by stating that he can't use them. When it was never an array-based problem. http://stackoverflow.com/questions/1544360/delphi-how-to-have-non-contiguous-subrange-enumeration-type Comment by Despatcher on Delphi: How to have non-contiguous subrange enumeration type? Despatcher 2009-10-13T17:39:41Z 2009-10-13T17:39:41Z Argalatyr's comment is perfectly valid and he has provided you with a perfectly workable solution. So no need to be offensive. http://stackoverflow.com/questions/1561062/is-installshield-the-only-way-to-go-for-delphi-installations/1561082#1561082 Comment by Despatcher on Is Installshield the only way to go for Delphi Installations? Despatcher 2009-10-13T17:04:07Z 2009-10-13T17:04:07Z Looks like InnoSetup is going to be the clear winner - Thanks. I have downloaded it and started to read :) http://stackoverflow.com/questions/1561062/is-installshield-the-only-way-to-go-for-delphi-installations/1561547#1561547 Comment by Despatcher on Is Installshield the only way to go for Delphi Installations? Despatcher 2009-10-13T17:02:44Z 2009-10-13T17:02:44Z &gt; Expensive - Yes it was expense that prompted me to ask the question. I Read the specs for installshield and then was shocked at a price of &#163;1,269.00 + VAT :( and people say Delphi is expensive! http://stackoverflow.com/questions/1561062/is-installshield-the-only-way-to-go-for-delphi-installations/1561259#1561259 Comment by Despatcher on Is Installshield the only way to go for Delphi Installations? Despatcher 2009-10-13T16:40:43Z 2009-10-13T16:40:43Z Thanks - these are simple installs one EXE plus a few images and a couple initialisation / License files delivered by e-mail or downloaded. I know installers are not language specific but I included Delphi in case there WAS a specific one aimed at Delphi apps. http://stackoverflow.com/questions/12685/what-is-needed-to-get-delphi-back-on-top/85144#85144 Comment by Despatcher on What is needed to get Delphi back on top? Despatcher 2009-10-13T14:51:45Z 2009-10-13T14:51:45Z We know we are still alive! We need to know the other Delphi developer is still alive :) http://stackoverflow.com/questions/1533686/can-i-recompile-the-pas-files-used-by-the-delphi-ide/1534076#1534076 Comment by Despatcher on Can I recompile the .PAS files used by the Delphi IDE? Despatcher 2009-10-08T08:56:44Z 2009-10-08T08:56:44Z Sorry, of course - there were only 2 saying basically the same thing when I replied :) So for clarity I will edit the answer. http://stackoverflow.com/questions/1528610/split-large-file-without-copy/1529594#1529594 Comment by Despatcher on Split large file without copy? Despatcher 2009-10-07T20:25:50Z 2009-10-07T20:25:50Z I don't think there is not even at low level disk/ntfs - what you need is a &quot;companion file&quot; full of pointers to parts of the &quot;Giga-file&quot; but with average file size of circa 16k the pointer file would be quite large too! http://stackoverflow.com/questions/1530390/delphi-how-to-use-declare-and-use-pointer-to-the-const-array-in-a-const-record/1530483#1530483 Comment by Despatcher on delphi - how to use declare and use pointer to the const array in a const record? Despatcher 2009-10-07T19:00:55Z 2009-10-07T19:00:55Z Let's face it these records should be objects! If I was going where He is I wouldn't start from here come to mind :) http://stackoverflow.com/questions/1523286/how-can-i-search-a-large-xml-data-set/1526570#1526570 Comment by Despatcher on How can I search a large XML data set? Despatcher 2009-10-07T17:28:24Z 2009-10-07T17:28:24Z 1. Plonk a TClientDataSet on the DM. Plonk a TXMLTransformProvider on DM. Set the Tranform as the provider. Start XML Mapper from the tools menu - learn how to us it :( it's not very intuitive. Once Files are Mappped via the XTR files and connected use a TDatasoure as usual. Have fun. http://stackoverflow.com/questions/1048989/how-to-remove-duplicate-records-in-grid/1050166#1050166 Comment by Despatcher on How to remove duplicate records in grid ? Despatcher 2009-07-02T21:41:02Z 2009-07-02T21:41:02Z Hi sorry I've been away - but It looks like you must have worked out a way to create a unique vale to represent your strings :) I would probably have used the index of the characters in the string in addition to the character value. Or similar :) http://stackoverflow.com/questions/1040690/in-delphi-ide-how-to-quickly-determine-the-location-of-an-open-non-project-relat/1040800#1040800 Comment by Despatcher on In Delphi IDE, how to quickly determine the location of an open non-project-related file? Despatcher 2009-06-26T08:39:32Z 2009-06-26T08:39:32Z +1 for neat and useful idea - thanks http://stackoverflow.com/questions/1013489/problem-with-delphi-2009-and-old-style-object-type/1026505#1026505 Comment by Despatcher on Problem with Delphi 2009 and old-style object type Despatcher 2009-06-22T16:13:53Z 2009-06-22T16:13:53Z Yes - It's the right thing to do. Reling on magic carries the &quot;do not annoy a wizard... warning :( Good luck with it - You'll probably find it easier that you are imagining. http://stackoverflow.com/questions/1017791/where-to-start-oop-in-delphi-mainly-focusing-on-database-development/1018869#1018869 Comment by Despatcher on Where to start OOP in Delphi mainly focusing on database development? Despatcher 2009-06-19T23:39:58Z 2009-06-19T23:39:58Z @birger - Its not clear I know, but limited space and time. The lists and objects need to be able to perform or initiate saves/loads. I did not say they knew what they are connected to. Also I took it one level further and created my own &quot;DataManager&quot; to separate it one level further the objects only use that. SQL - you create it on the fly if you like, I don't like it and I don't see the need for most business apps. Try debugging the program statements that created it in place of hitting F11 to read straingt text. Having said that I do have aan SQLQuery object that creates SQL for reports http://stackoverflow.com/questions/398137/what-is-the-best-way-to-do-nested-try-and-finally-statement-in-delphi Comment by Despatcher on What is the best way to do nested TRY AND FINALLY statement in Delphi Despatcher 2009-06-19T21:09:01Z 2009-06-19T21:09:01Z 6 months late I know - but technically I think this is correct and is the safe way, All the answers suggested have possible leaks or need backup/helper routines. This code will just work with no leaks.