hi,
can anybody give me a hint which packages are necessary for compilation (e.g. synedit...)
which dev-components in delphi ide have to be installed before building.
best regards
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Yeah, I can tell you, since I had to go through that process myself last week, there are problems...
SynEdit 1.1 - download it from the synedit site... this works ok
XPMenu, is in the VCL Directory - this one works ok... otherwise get it from www.shagrouni.com
Then, there's a problem with the bundled VCL controls, some are missing the Register and Register Components procedures... these are:
DevTabs and ColorPickerButton
the unusual thing, is that the ColorPickerButton control you download from the original author's website is not broken like that, almost like the RegisterComponents has been removed???
so:
add this to DevTabs:
procedure Register;
begin
RegisterComponents('Beispiele', [TdevTabs, TDevPages, TDevPage]);
end;
and add this to ColorPickerButton:
procedure Register;
begin
RegisterComponents('Beispiele', [TColorPickerButton]);
end;
do not ask me WHY these are missing, but it will compile if you add them
Obviously, you have to define the Register procedure at the top of the unit too...
And rename 'Beispiele' to whatever tab you want them to show in delphi, I just used that, because one of the other controls that did work went there...
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
hi,
can anybody give me a hint which packages are necessary for compilation (e.g. synedit...)
which dev-components in delphi ide have to be installed before building.
best regards
Yeah, I can tell you, since I had to go through that process myself last week, there are problems...
SynEdit 1.1 - download it from the synedit site... this works ok
XPMenu, is in the VCL Directory - this one works ok... otherwise get it from www.shagrouni.com
Then, there's a problem with the bundled VCL controls, some are missing the Register and Register Components procedures... these are:
DevTabs and ColorPickerButton
the unusual thing, is that the ColorPickerButton control you download from the original author's website is not broken like that, almost like the RegisterComponents has been removed???
so:
add this to DevTabs:
procedure Register;
begin
RegisterComponents('Beispiele', [TdevTabs, TDevPages, TDevPage]);
end;
and add this to ColorPickerButton:
procedure Register;
begin
RegisterComponents('Beispiele', [TColorPickerButton]);
end;
do not ask me WHY these are missing, but it will compile if you add them
Obviously, you have to define the Register procedure at the top of the unit too...
And rename 'Beispiele' to whatever tab you want them to show in delphi, I just used that, because one of the other controls that did work went there...
Soon i will put the new version 2.0.5 on the homepage. This version is very different to 1.9.4. May be you should wait for the update?! -:)
when i have time, i make a tutorial to compile dev-php.