Tagged Questions
The opentools tag has no wiki summary.
5
votes
3answers
300 views
How do you retrieve a new unit name from Delphi's open tools API
I have written a wizard in Delphi XE, and it is working fine. However, I have not figured out yet how to access the generated default unit name (or form name or project name) that Delphi's OTA can ...
5
votes
2answers
506 views
How to detect if file in IDE is being edited using Open Tools API
I made a small IDE plug-in using Open Tools API that accesses ClearCase. It has menu items "Check In", "Check Out", etc. It works OK but I want it to check out a read-only file automatically if I ...
4
votes
2answers
74 views
Can I call ToolsAPI from code in the DUnit GUITestrunner?
Is there a way to initialize the global variable BorlandIDEServices in ToolSAPI unit so that it can be used from the DUnit GUITestrunner code?
procedure TGUITestRunner.FailureListViewClick(Sender: ...
4
votes
1answer
118 views
Is there an official interface to TOrderedListEditDlg?
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:
I found a hack for using it (look for TOrderedListEditDlg on the page). ...
4
votes
2answers
118 views
Where I can find DeskUtil documentation/help?
Where I can find DeskUtil documentation/help? I am trying to build Delphi add-in and I have some troubles with saving/registering/loading the add-in docking form into the active IDE desktop. I am ...
4
votes
2answers
536 views
Delphi-IDE: how to change the way class-completion works?
Class completion in Delphi is a big time-saver, but I haven't found a way to customize it.
I would like a getter and setter for a property to be grouped together instead of being thrown all over my ...
3
votes
1answer
171 views
Delphi OpenTools API: How to get target exe name?
How can i get the name of the target executable given an IOTAProject?
From GExpert's OpenTools API FAQ:
How can I determine the filename of the binary/exe/dll/bpl/ocx/etc. generated by a compile ...
3
votes
1answer
272 views
Delphi's OTA: is there a way to get active configuration while building (D2010)?
I can ask Delphi to build all configurations at once - by clicking on "Build configurations" and invoking "Make" command:
This will build all configurations, one after another.
The problem is that ...
0
votes
1answer
82 views
Delphi OpenTools API: How to get AfterCompile notifications?
The OpenTools API defines an interface for being notified before and after a compile:
IOTAIDENotifier = interface(IOTANotifier)
['{E052204F-ECE9-11D1-AB19-00C04FB16FB3}']
procedure ...