active questions tagged delphi+components - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T05:50:07Zhttp://stackoverflow.com/feeds/tag/delphi+componentshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1815669/any-free-shaped-button-components-available1Any free shaped button components available?Mason Wheeler2009-11-29T14:26:39Z2009-11-29T14:33:58Z
<p>I recently downloaded the source to an "open source" project that unfortunately has dependencies on a bunch of expensive proprietary libraries, including <a href="http://www.woll2woll.com/1stClass.html" rel="nofollow">Infopower 1stClass</a>, which it seems to use primarily for TfcShapeButton, a component that acts like a standard TBitBtn, except that you can give it an arbitrary polygonal shape by describing a list of points. The DFM code looks like this:</p>
<pre><code> PointList.Strings = (
'8,29'
'18,19'
'28,29'
'20,37'
'16,37')
</code></pre>
<p>I'm trying to clean this project up and make it look like a real open-source project that anyone can download and build without having to shell out hundreds of dollars for component libraries, but I'd like to change the look and feel as little as possible. So does anyone know of an open-source shape button component like this that will work with D2009 and up?</p>
http://stackoverflow.com/questions/1812479/setting-ttabcontrol-color-after-xpmanifest-in-delphi0Setting TTabControl color after XPManifest in DelphiTofig Hasanov2009-11-28T12:58:31Z2009-11-28T13:41:26Z
<p>I have tabcontrol component on my form. After I put XPManifest, its color became white, I want to change it, but couldn't find color property. And I don't want to remove XPManifest as well. Is there any way to solve this issue?</p>
http://stackoverflow.com/questions/1772911/where-should-i-begin-when-building-a-component4Where should I begin when building a component?Austin2009-11-20T20:03:43Z2009-11-21T21:00:48Z
<p>Hello, I am looking to build my own component and have no idea where to begin. I have some Delphi books but they are old and outdated, and am looking for some recommendations on tutorials/books to help me do this. The component will be pretty simple, basically 2 labels and an image. I need hundreds of these in an array, so I thought a component would be the best route. The text will adjust based on width etc, and have some mouseover events. So basically, where do I begin?</p>
<p>I am using Delphi 2009, this will be a win32 app.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1751788/why-dont-a-clientdataset-descendants-fields-appear-at-design-time1Why don't a ClientDataSet descendant's fields appear at design time?Barry2009-11-17T21:06:58Z2009-11-18T17:11:06Z
<p>I'm trying to write a component that inherits from TClientDataset. On the create of the component in design time I want to instantiate a list of common fields that are used within my framework. The code below will execute without errors and the field will appear at run time but not design time. Can anyone help me? I'm sure its something trivial!</p>
<pre><code>{ InheritedClientDataset }
constructor InheritedClientDataset.Create(AOwner: TComponent);
var
Field : TField;
begin
inherited;
Field := TField.Create(self);
Field.Name := 'ATestField';
Field.FieldName := 'Test';
Field.SetFieldType(ftInteger);
//Field.DataType := ftInteger;
Field.Size := 0;
Field.FieldKind := fkData;
self.Fields.Add(Field);
end;
</code></pre>
http://stackoverflow.com/questions/1737181/looking-for-a-simple-graphical-component-for-delphi3Looking for a simple graphical component for DelphiWodzu2009-11-15T10:23:19Z2009-11-15T23:20:41Z
<p>Hi SO.</p>
<p>I am looking for a graphical component in Delphi winch have such features:</p>
<ul>
<li>allows to paint text in different font types, sizes and colors</li>
<li>allows to select previously drawn text and copy it </li>
<li>paints images on a given coords, gif support would be nice</li>
<li>its very fast in terms of CPU usage</li>
</ul>
<p>I need this component as a main chat window. I don't want to use it as a text editor.</p>
<p>I've tried two solutions so far:</p>
<ul>
<li>TVirtualStringTree</li>
<li>THtml</li>
</ul>
<p>Currently I am using THtml. It performs quite nice but it is a bit to slow due to two facts:</p>
<ul>
<li>It supports many features which are not necessary in my case</li>
<li>Each time I want to add some content to it, I must reload the whole content</li>
</ul>
<p>I really don't want to go into its sources and modify them until I have no other choice. So maybe someone of you knows some nice lightweight component which I can use instead?</p>
http://stackoverflow.com/questions/139684/delphi-free-and-open-source-components-that-are-still-maintained27Delphi Free and Open Source Components that are still maintained.mm20102008-09-26T14:02:15Z2009-11-10T17:23:11Z
<p>It would be good to compile a new inventory here of Delphi FOSS components that are very useful, also with rare and difficult to find functionality and still maintained for the latest Delphi versions. Examples of rare components are for instance "TWAIN" scanning components, raw printing etc. Your comments added will make for a very valuable searchable resource that is up to date.</p>
<p>Please add download URLs below.</p>
<p>Thanks in advance for your contribution!</p>
http://stackoverflow.com/questions/1705009/did-you-ever-encounter-commercial-vcl-component-suite-without-bugs2Did you ever encounter commercial VCL component/suite without bugs? [closed]Mihaela2009-11-10T00:55:28Z2009-11-10T02:19:19Z
<p>I've used a lot commercial components, over the time. Now I just use a few. Almost all came with bugs. Some were minor and some disastrous. This is not bashing. We all produce bugs, that's expected. And we handle/fix them. But shouldn't the price be some kind of assurance? There should be a negative correlation between price and the severity of bugs. That's one of the reasons why I always opt for the full source version. Some bugs the vendors just won't fix, and some are just fixed too late.</p>
http://stackoverflow.com/questions/1701544/how-can-i-troubleshoot-design-time-packages-in-delphi-cbuilder3How can I troubleshoot design-time packages in Delphi/C++Builder?Kyle Heironimus2009-11-09T14:57:55Z2009-11-09T15:22:20Z
<p>I have consistently had IDE problems in Delphi/C++Builder for years, with every version. I usually just reboot, recompile, etc. and move on. However, I keep seeing others say that the IDE is rock solid. I've read many people say that most IDE problems are a result of custom component problems.</p>
<p>We have several of our own custom components and I would not be at all surprised that they were causing the problems. However, I have no idea how to find out.</p>
<p>1) I cannot easily just uninstall a component and see how things go. Each component is vital to our project and designing it out so I can test for a few days is not practical.<br>
2) When I have IDE crashes, they are usually AV's with little (to me) useful information.<br>
3) Sometimes the IDE works for hours with no problems. There are no reasonably reproducible issues, just seemingly random crashes, AV's and failed compiles.</p>
<p>Has anyone had any luck troubleshooting design-time packages?</p>
http://stackoverflow.com/questions/813693/how-to-draw-on-a-tpanel3How to draw on a TPanelJamo2009-05-01T23:25:18Z2009-11-09T03:49:09Z
<p>I need to draw on a TPanel, ideally directly so I don't have another component on top of it getting in the way of mousevent-event trapping (I want to draw a little "size-grip" on it). How should I go about doing this?</p>
http://stackoverflow.com/questions/624246/what-is-the-best-way-to-display-a-pdf-file-in-delphi-20090What is the best way to display a PDF file in Delphi 2009Charles Faiga2009-03-08T20:41:29Z2009-11-05T09:53:32Z
<p>What component should I use to display a PDF file in a Delphi 2009 application?</p>
<p>EDIT:</p>
<p>I have been using <a href="http://www.synactis.com/pdf-viewer.htm" rel="nofollow">PDF Viewer</a> by Synactis - a very nice free PDF Viewer
But it has no Delphi 2009 support.</p>
<p>So I need to designing it out of the product </p>
http://stackoverflow.com/questions/1677374/delphi-package-systools-i-need-it1Delphi Package: Systools - I Need It!nomad3112009-11-04T23:22:52Z2009-11-05T00:17:48Z
<p>Any chance someone out there still has SysTools 3 Components (S303_D60.bpl)
It's was supposedly used at some point on the project I'm working on, but I can't find locally or on the web.</p>
<p>Thanks,
-nomad311</p>
http://stackoverflow.com/questions/1616985/adding-delphi-6-third-party-component-to-delphi-20100Adding Delphi 6 third party component to Delphi 2010?Snackmoore2009-10-24T04:44:55Z2009-10-27T16:30:25Z
<p>Hi,</p>
<p>I have a few Delphi 6 third party components which I need to add to Delphi 2010 to begin my migration. Is it possible? The interface seem a lot different and I can't seem to find a way to do this?</p>
<p>This help...</p>
<p>My components: DBGridEasy, TSerial, Varian Async32.</p>
<p>Thanks a lot.</p>
http://stackoverflow.com/questions/706958/best-shareware-lock-for-delphi-win325Best Shareware lock for Delphi Win32Jamo2009-04-01T19:10:58Z2009-10-25T12:27:06Z
<p>Same intro as my last question:</p>
<p>I am re-writing and/or consolidating a bunch of my "app framework" classes (basic mainform, about box, locking routines & purchase linking, auto-update, datamodule initializer, etc) -- Basically, I have a number of small potential shareware apps that I'm wanting to get out the door, and want to re-use code where I can, as well as build a framework for later apps to save time.</p>
<p>But different question: : )</p>
<p>What is the best shareware lock component for Delphi Win 32 apps? (I don't mind paying for commercial if that's best).</p>
<p>Clarifying -- yes, best license key verification / lock + trialware component. </p>
http://stackoverflow.com/questions/1505617/how-can-i-make-a-component-disappear-in-the-form-designer2How can I make a component disappear in the form designer?Mason Wheeler2009-10-01T18:23:10Z2009-10-01T18:40:17Z
<p>I'm creating a custom control that contains other controls, including two scroll bars, one horizontal, one vertical. There's a property to set one or both scroll bars invisible, which works fine at runtime, but at design-time it doesn't disappear from the form designer when I set the property.</p>
<p>Now, I can understand how this could be a useful feature if this was an individual control, but it's part of an aggregate component and so it ought to obey the parent control's rules, not the form designer's. Is there any way to make sure the control will disappear when I set <code>.Visible := false;</code> even when it's in the form designer?</p>
http://stackoverflow.com/questions/1340897/how-to-dynamically-add-buttons-to-tcategorypanelgroup0How to dynamically add buttons to TCategoryPanelGroup?Smasher2009-08-27T12:53:35Z2009-09-13T18:39:52Z
<p>Has anybody experience with Delphi 2009's TCategoryPanelGroup component and specifically with dynamically adding buttons to category panels?</p>
<p>I can't get it to work properly. Either the buttons do not appear or the alignment is screwed up. Basic outline of what I want to do:</p>
<pre><code>procedure AddButton (const Caption, Group : String);
const
ButtonSize = 55;
Border = 10;
var
CategoryPanel : TCategoryPanel;
Button : TButton;
begin
CategoryPanel := FindCategoryPanel (CategoryPanelGroup, Group);
CategoryPanel.Height := CategoryPanel.Height + ButtonSize + Border;
Button := TButton.Create (CategoryPanel);
Button.Parent := CategoryPanel;
Button.Width := ButtonSize;
Button.Height := ButtonSize;
Button.Left := 27;
Button.Top := CategoryPanel.ClientHeight - Border - ButtonSize;
end;
</code></pre>
<p>Any hints?</p>
http://stackoverflow.com/questions/1343409/delphi-2009-set-default-property-values-in-custom-delphi-components2Delphi 2009 - Set default property values in custom delphi componentsRafe2009-08-27T19:49:14Z2009-08-28T12:20:09Z
<p>This should be very simple but I can't find the exact answer I want. I have a custom delphi control based on TSpeedButton. I want the Caption Property of the SpeedButton to always be 'Comments' but I don't want to set it at run-time I want to set it in the component itself so that when I place it on my form it's already populated with this text. I also want to set the height and width of the button but I imagine the method for doing this will be the same as for setting the caption.</p>
<p>For the sake of completeness, here is the component code:</p>
<pre><code>unit CustomSpeedButton;
interface
uses
SysUtils, Classes, Controls, Buttons;
type
TCustomSpeedButton = class(TSpeedButton)
private
FCommentText: string;
FCommentTitle: string;
procedure SetCommentText(const Value: string);
procedure SetCommentTitle(const Value: string);
{ Private declarations }
protected
{ Protected declarations }
public
{ Public declarations }
published
{ Published declarations }
property CommentTitle: string read FCommentTitle write SetCommentTitle;
property CommentText: string read FCommentText write SetCommentText;
end;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('Standard', [TCustomSpeedButton]);
end;
{ TCustomSpeedButton }
procedure TCustomSpeedButton.SetCommentText(const Value: string);
begin
FCommentText := Value;
end;
procedure TCustomSpeedButton.SetCommentTitle(const Value: string);
begin
FCommentTitle := Value;
end;
end.
</code></pre>
http://stackoverflow.com/questions/1338201/delphi-2009-pass-component-name-onclick-event-then-set-property0Delphi 2009: Pass component name onclick event then set propertyRafe2009-08-26T23:59:22Z2009-08-27T06:24:52Z
<p>I have a custom component of type TSpeedButton that has two extra properties defined:</p>
<pre><code>CommentHeading: string;
CommentText: string;
</code></pre>
<p>I set CommentHeading at design time. </p>
<p>When the speed button is pressed a memo is shown with a button beneath it for saving its contents. The procedure that handles this:</p>
<pre><code>procedure CustomSpeedButton1Click(Sender: TObject);
begin
Receiver := CustomSpeedButton1.Name; // possibly used to save the memo text back to this speedbuttons property after comments are submitted
ViewComments(CustomSpeedButton1.CommentTitle,CustomSpeedButton1.CommentText);
end;
</code></pre>
<p>And the ViewComments procedure itself:</p>
<pre><code>procedure ViewComments(comment_caption:string; comment_text:string);
begin
label15.Hide; // label showing editing in progress, hidden until user begins typing
Button1.Enabled := false; // the button for saving the memo text, hidden until user begins typing
CommentsBox.Visible := true; // pop up the comment box at the bottom of the form
CommentsBox.Caption := 'Comments: ' + comment_caption;
CommentsMemo.Text := comment_text; // if there are existing comments assign them to memo
end;
</code></pre>
<p>The contents of the memo need to be assigned to the CommentText property of the custom SpeedButton. </p>
<p>What I was initially thinking was that I could pass the component name to a variable when the custom SpeedButton gets pressed and then retrieve that name when the save button on the memo is pressed and use it to assign the memo text to the speedbuttons CommentText property. But then I realized that to do this I'd have to use some kind of case..of statement that checked for each possible speedbutton name and then assign the memo value to its properties and this just seems ridiculously tedious. </p>
<p>Is there an easier way to assign the memo text to the speedbutton that opened the memo to begin with?</p>
http://stackoverflow.com/questions/1149370/freeware-pivot-table-component-for-delphi1Freeware pivot table component for Delphi?RRUZ2009-07-19T06:42:30Z2009-08-04T12:07:50Z
<p>Is there a pivot table component for Delphi that is opensource or freeware?</p>
http://stackoverflow.com/questions/1181278/component-disabling-and-enabling-at-runtime-in-delphi-2k9-weird-problem1Component disabling and enabling at runtime in Delphi 2K9. Weird problem...HX_unbanned2009-07-25T05:22:27Z2009-07-26T09:30:24Z
<p>Here is code:</p>
<pre><code>procedure DisableContrlOL(const cArray : array of string; ReEnable : boolean = False);
// can be called from VKP / RAW / Generation clicks
var
AComponent: TComponent;
CompListDis, CompListEna : TStringList;
begin
CompListDis := TStringList.Create;
CompListEna := TStringList.Create;
for i := Low(cArray) to High(cArray) do begin
AComponent := FindComponent(cArray[i]);
if Assigned(AComponent) then
if (AComponent is TControl) then begin
if TControl(AComponent).Enabled then
CompListEna.Add(TControl(AComponent).Name)
else
CompListDis.Add(TControl(AComponent).Name);
ShowMessage(TControl(AComponent).Name);
if ReEnable then begin // if reenabling needed, then all whi
if not TControl(AComponent).Enabled then
TControl(AComponent).Enabled := True;
end else if (TControl(AComponent).Enabled) then
TControl(AComponent).Enabled := False;
end;
end;
end;
</code></pre>
<p>I think no more explanations are needed.
The ShowMessage correctly shows name of each component, but nothing is added in StringLists. Why?</p>
<p><hr /></p>
<p>UPDATE: As question has gone pretty wild, I did confirm answer, which a bit helped me.</p>
<p>I understand that I did write things pretty unclear, but I am very limited, because these code lines is part of commercial project, and my hobby and heart thing. The main problem was found already 6h ago, but Rob just wanted to extend this whole question :D No, no offense, mate, it's OK. I am happy to receive so willing and helpful posts. Thanks again.</p>
http://stackoverflow.com/questions/1115443/tapplicationevents-as-dynamic-component-or-static-for-tracing-called-routine-in-d1TApplicationEvents as dynamic component or static for tracing called routine in Delphi.HX_unbanned2009-07-12T06:52:51Z2009-07-12T15:04:13Z
<p>Hello and good morning!</p>
<p>Unfortunately I am not writing this question from my Developing PC so I might do some mistakes. Please sorry about it...
So - my question - what approach you use to implement error logging in your application?</p>
<p>In web ( <a href="http://delphi.about.com" rel="nofollow">http://delphi.about.com</a> ) is nice event handler, but it just copies system error in file, but I would like to expand its capabilities by trapping memory and stack ( and processor information, if I will have time ). Should I aware if I call it dynamically, not adding its component on the form?</p>
<pre><code>procedure TForm1.ApplicationEvents1Exception(Sender: TObject; E: Exception) ;
var
ErrorLogFileName : string;
ErrorFile : TextFile;
ErrorData : string;
begin
ErrorLogFileName := ChangeFileExt(Application.ExeName,'.error.log') ;
AssignFile(ErrorFile, ErrorLogFileName) ;
//either create an error log file, or append to an existing one
if FileExists(ErrorLogFileName) then
Append(ErrorFile)
else
Rewrite(ErrorFile) ;
try
//add the current date/time and the exception message to the log
ErrorData := Format('%s : %s',[DateTimeToStr(Now),E.Message]) ;
WriteLn(ErrorFile,ErrorData) ;
finally
CloseFile(ErrorFile)
end;
//Show the exception
Application.ShowException(E) ;
end;
</code></pre>
<p>... and <a href="http://delphi.about.com/cs/adptips2001/a/bltip0101_2.htm" rel="nofollow">http://delphi.about.com/cs/adptips2001/a/bltip0101_2.htm</a></p>
<p>As we know, Delphi also provides memory management a bit like C - using ampersands and Pascal functions, but what would be the most effective logging?</p>
<p>Thanks before! Hopefully this topic will be useful to other quality programmers.</p>
http://stackoverflow.com/questions/1095082/pulling-data-notes-from-the-iphone-notes-app-into-a-delphi-application1Pulling data/notes from the IPhone notes app into a Delphi applicationJamo2009-07-07T21:51:59Z2009-07-08T12:11:57Z
<p>I have developed a few Delphi Win32 (currently using D2007) applications, which revolve around note-taking and idea development. I'd like to be able to pull the notes written on the iPhone's little "notes" app into these apps (which store their data in a database). One-way importing would be fine for now. Is this possible? If so, what would be the best approach for doing it?</p>
<p>Please note: I'm not, at this point, looking to write a fully-fledged iPhone app unless it's required to accomplish what I'm specifying here -- I'm only looking to import the data. Also, third-party components are fine -- I'd be happy to pay money for this in order to save time / learning curve delays. Lastly, I have and occasionally use RemObjects Hydra (.NET / Win32 plug-in/interop framework), if that turns out to be relevant.</p>
<p>Lastly, I have ZERO iPhone development experience -- so please don't worry about speaking at too "fundamental" a level! : )</p>
<p>Thanks in advance for any and all help / pointers / direction.</p>
http://stackoverflow.com/questions/1023984/how-do-you-skin-delphi-components-using-graphic-files0How do you skin Delphi components using graphic files?codervish2009-06-21T14:08:18Z2009-06-25T05:07:01Z
<p>Just like using CSS for Web applications, can we use graphics from clip art to skin buttons, edits, and form components without dealing with <code>TCanvas</code> or developing new components? Are there any <strong>fully free</strong> libraries to work with existing components? (<strong>No</strong> 3rd-party TSkinnedEdit etc.)</p>
http://stackoverflow.com/questions/147795/delphi-active-commercial-components10Delphi Active Commercial Componentsmm20102008-09-29T07:18:16Z2009-05-28T06:44:19Z
<p>Similar to the <a href="http://stackoverflow.com/questions/139684/delphi-free-and-open-source-components-that-are-still-maintained">Delphi FOSS component</a> question, a commercial component directory will also be a valuable searchable resource. I invite you to contribute your expierience with your favourite commercial components and also share with us your experiences with commercial components that doesn't make the grade as well. Then there is the question of price/performance or better price/features. Often commercial component pricing is sky high - indicate where you think it is good value or expensive.</p>
<p>If you can, please distinguish Delphi Win32 vs Delphi.NET components - and mention those that have support for D2009</p>
<p>Please don't forget your links!</p>
http://stackoverflow.com/questions/897873/are-there-openoffice-org-export-components-for-delphi-non-ole3Are there OpenOffice.org export components for Delphi (non-OLE)?mjustin2009-05-22T13:32:51Z2009-05-27T18:45:59Z
<p>For document exchange, I would like to generate OpenOffice.org text and spreadsheet documents. So far I have found export components which require OpenOffice to be installed, using OLE.</p>
<p>Are there already Delphi components available which can write native files for OpenOffice.org Writer or OpenOffice.org Calc?</p>
http://stackoverflow.com/questions/907461/how-to-sort-data-as-i-want-in-a-virtualexplorertreeview-virtualshelltools0How to sort data as I want in a VirtualExplorerTreeview (VirtualShellTools)Lepidosteus2009-05-25T17:18:57Z2009-05-25T20:04:10Z
<p>Hello</p>
<p>This is probably a very "dumb" question for whoever knows VirtualShellTools but I only started using it and couldn't find my answer in the demos' code. Please note that I'm also unfamiliar with virtualtreeview.</p>
<p>I use a VirtualExplorerTreeview to display a directory structure, linked with a VirtualExplorerListview to display a certain type of files in the selected directory as well as specific informations about them</p>
<p>I've been able to point them at the right place, link them as I wanted, filter everything in the listview, and looking at the demos I have a pretty good idea about how to add my own columns and draw it to display my custom data.</p>
<p>My issue lies with the Treeview: I would like to sort the directories displayed in the order I want; specifically, I want "My Docs" and other folder to appears first, then drives, then removable media. Looking in the TNamespace property I found how to distinguish them (Directory and Removable properties), but I don't know how to implement my own sort/what event I need. I tried CompareNode but that doesn't even seem to be called.</p>
http://stackoverflow.com/questions/13471/are-there-any-mind-mapping-components-for-delphi-native-vcl-preferably1Are there any "mind mapping" components for Delphi? (native VCL preferably)C2008-08-17T02:02:46Z2009-05-24T20:15:32Z
<p>I'm looking for a pre-written component (w/source) for a Delphi project that I'm working on, to generate mind-maps / concept-maps similar to these:</p>
<p><a href="http://en.wikipedia.org/wiki/Image:MindMeister_screenshot_OS_X.jpg" rel="nofollow">http://en.wikipedia.org/wiki/Image:MindMeister_screenshot_OS_X.jpg</a>
<a href="http://en.wikipedia.org/wiki/Image:XMIND_2008_in_Windows_Vista.png" rel="nofollow">http://en.wikipedia.org/wiki/Image:XMIND_2008_in_Windows_Vista.png</a></p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/850435/delphi-components-to-use-with-sqlite2Delphi components to use with SQliteAlejandro Jourdan2009-05-11T22:50:25Z2009-05-12T16:39:01Z
<p>What components can I use to use SQlite database with delphi 6
Thanks</p>
http://stackoverflow.com/questions/815371/delphi-component-sptbxtoolbar-skin-change2Delphi component spTbxToolbar skin change.Erangel2009-05-02T18:47:48Z2009-05-04T08:11:30Z
<p>How to change in runtime by code (not for groupskintype), the skin type for a sptbxtoolbar component.</p>
<p>Thaks in advanced.</p>
<p>Golo</p>
http://stackoverflow.com/questions/691989/full-vcl-class-browser-for-delphi0Full VCL Class Browser for Delphi Jamo2009-03-28T01:45:15Z2009-04-18T09:54:05Z
<p>Remember the old class hierarchy posters that used to come w/Delphi?</p>
<p>I'm wanting a full class hierarchy browser for ALL my Delphi classes, including the custom ones I've built and installed on the palette, plus third-party components. Ideally easily searchable by class name (including "whole word only" searches, so partial matches don't count).</p>
<p>I've only seen two things that come close: </p>
<p>1) GExpets Class Browser - Works great, BUT doesn't automatically load ALL installed components / classes, which is what I want. You have to import all the source units manually, as far as I can tell.... which can be quite a hassle. It also doesn't allow "whole word only" searches, so sometimes searching for a class w/a common "sub name" takes forever.</p>
<p>2) Eagle / DevExpress CDK - It loads the full class list automatically, and seems to work brilliantly, but it's only usable in D7 and prior, and it's not <em>really</em> focused on being a class browser per se, so much as an "inherit from" chooser.</p>
<p>Is there anything out there which does this already? If not, how difficult would it be to write an app that, at bare minimum, builds a self-referencing class-name table, so I could at least throw it into a database / treeview component to easily view inheritance / ancestry, etc.?</p>
http://stackoverflow.com/questions/706902/best-auto-update-components-for-delphi3Best auto-update component(s) for DelphiJamo2009-04-01T18:54:44Z2009-04-17T18:42:41Z
<p>I am re-writing and/or consolidating a bunch of my "app framework" classes (basic mainform, about box, locking routines & purchase linking, auto-update, datamodule initializer, etc) -- Basically, I have a number of small potential shareware apps that I'm wanting to get out the door, and want to re-use code where I can, as well as build a framework for later apps to save time.</p>
<p>In one app I have auto-updating, I'm using LMD's WebUpdate, and am reasonably happy with it, but given that I'm re-vamping everything, I thought I'd see what the consensus is for "best approach" on this. I don't mind paying for commercial, nor using open source if that's best... just would rather not reinvent the wheel. (I've read: <a href="http://stackoverflow.com/questions/277514/delphi-how-do-you-auto-update-your-applications">http://stackoverflow.com/questions/277514/delphi-how-do-you-auto-update-your-applications</a>)</p>
<p>What is the best Auto-update component for Delphi Win 32 apps?</p>