In an expert, I'd like to re-use the dialog that Delphi displays to edit a project's library path and for similar purposes:

enter image description here

I found a hack for using it (look for TOrderedListEditDlg on the page). As I think the guy who wrote the linked article knows what he does I don't have too much hope for a less hacky solution, but who knows... So: Do you know an official interface (most probably OTA) to TOrderedListEditDlg?

PS: I'm aware that it's probably trivial to recreate the whole dialog but I like consistency and the DRY principle.

link|improve this question

3  
There's a conflict between DRY and KISS on this one; Chances are the difficult to maintain hacky code you'll use to make "DRY" work far outweighs the code you'd write to roll your own. And then you'll have to re-hack every version of the IDE and repeating yourself a lot while you do that. – Cosmin Prund Apr 11 '11 at 11:47
@Cosmin: +1 for KISS. I guess the hacky part could stay pretty stable across Delphi versions. So it should mainly be "compile and too some basic testing". But as you can see from the fact that I asked this question I'm not too keen on that, too. – Ulrich Gerhardt Apr 11 '11 at 11:58
You're right, I couldn't find an official way, that's the only reason I used this hack. – TOndrej Apr 11 '11 at 14:10
Thanks for clarifying, @TOndrej! May I ask how you judge using this hack in retrospect? – Ulrich Gerhardt Apr 11 '11 at 14:18
BTW, check out the INTAEnvironmentOptionsServices and INTAAddInOptions interfaces mentioned here: link. You can incorporate your configuration in Delphi's Environment Options treeview. But TOrderedListDlg still doesn't seem to be exposed officially. – TOndrej Apr 11 '11 at 14:25
show 2 more comments
feedback

1 Answer

up vote 3 down vote accepted

You're right, I couldn't find an official way, that's the only reason I used this hack.

BTW, check out the INTAEnvironmentOptionsServices and INTAAddInOptions interfaces mentioned here. You can incorporate your configuration in Delphi's Environment Options treeview. But TOrderedListDlg still doesn't seem to be exposed officially.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.