Tagged Questions

11
votes
3answers
397 views

How do I get Welcome Page browser navigate to some URI from within OTA package wizard?

What I'm trying to do is to create an ability to view (not to edit) the HTML pages included into project. The Welcome Page already has embedded web browser, so it appears to be a good candidate for ...
10
votes
1answer
405 views

How to create new personality in the IDE using open tools API?

How to create new personality in the IDE using open tools API (OTA)? I couldn't find any documentation or any demo covers this section in OTA. Thanks.
6
votes
2answers
521 views

Uncheck “Enable Runtime Themes” or remove the internal manifest in Delphi XE?

I have a component that I am building that I want to be used in the following way: User creates a new blank project. User drops my component on the form. Some special Designtime code in my component ...
4
votes
2answers
125 views

How enumerate the forms of the IDE from a delphi IDE expert

I am working in an delphi IDE expert , and I need enumerate all the forms displayed by the Delphi IDE, currently i am using the Screen.Forms property , but i am wondering if exist another way to do ...
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). ...
3
votes
2answers
263 views

How I can add some items to the code completion combobox of the Delphi IDE

I'm working in a Delphi IDE expert and I wonder if it's possible add new items to the code completion combobox displayed by the Delphi IDE when the user press CtrlSpace UPDATE: What I need is add ...
3
votes
1answer
108 views

What format are the images in the delphi IDE menu?

I'm adding a new entry to the main menu of the Delphi IDE (Delphi 2007) and a bmp image to the image list associated to the menu (without passing a mask as parameter) ...
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 ...
1
vote
1answer
106 views

Delphi OTA interface - AddPluginBitmap function does not display the caption

When I use the following code in my package (a Delphi OTA/IDE plugin): unit uSplashRegister; interface implementation {$R SPLASHREGISTER.RES} uses Classes, Windows, Graphics, ...
1
vote
3answers
146 views

Set file as modified using OTA

As we know Build compiles all used units and Compile compiles only changed used units. But when you are working with ifdefs and need to change it a lot of times you must Build the project a lot of ...
1
vote
2answers
410 views

How do I write a Delphi Galileo IDE Expert?

HI, I want to write a small Delphi IDE Expert for D2007-D2009 (aka. Galileo IDE) in order to show a window with a TMemo instance on it, with all the component names and classes from the form designer ...
0
votes
1answer
111 views

OTA set the Delphi projects Keys options

How can I set the Delphi projects options FileDescription? when I try ProjectOptions.Values['Keys'].SetOptionsValue('FileDescription', Title); (title is a string) I get invalid variant operation
0
votes
1answer
212 views

how to install Source Wizard for Delphi 7 in Delphi 2009

I have Source Wizard for Delphi 7 (a code formatter). I'm switching to Delphi 2009. I tried loading *.pas (created with D2009) in Source Wizard in Delphi 7 and there were no problems processing them. ...