Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
General
»
How to add a new folder to the IDE component pallet
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
IRC channel
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Screen draws very slow un...
by
TheMouseAUS
[
Today
at 01:47:13 am]
Browser as a view using W...
by
delphius
[June 09, 2023, 11:18:50 pm]
Is changing name supposed...
by
Joanna
[June 09, 2023, 11:18:07 pm]
convert char of ansistrin...
by
toby
[June 09, 2023, 11:02:31 pm]
Reverse order of an array
by
jamie
[June 09, 2023, 10:55:39 pm]
Lazarus 2.2.6 and anchord...
by
Martin_fr
[June 09, 2023, 10:49:49 pm]
Why is a private type of ...
by
PascalDragon
[June 09, 2023, 10:30:51 pm]
program locks up using se...
by
PascalDragon
[June 09, 2023, 10:15:10 pm]
Feature announcement: Fun...
by
PascalDragon
[June 09, 2023, 10:11:49 pm]
is it possible to create ...
by
PascalDragon
[June 09, 2023, 10:04:25 pm]
How to download a file fr...
by
c4p
[June 09, 2023, 09:49:20 pm]
Suggestion on the lines o...
by
Remy Lebeau
[June 09, 2023, 09:19:08 pm]
Access violation with use...
by
Martin_fr
[June 09, 2023, 06:56:10 pm]
.cvd ClamAV database comp...
by
af0815
[June 09, 2023, 05:49:18 pm]
LADSPA for FP. Anyone int...
by
commanderz
[June 09, 2023, 05:41:40 pm]
IDE shows wrong Error Mes...
by
Martin_fr
[June 09, 2023, 05:28:28 pm]
CURL throws Error CURLE_R...
by
Hartmut
[June 09, 2023, 05:16:39 pm]
Generic array of records ...
by
paweld
[June 09, 2023, 04:42:14 pm]
list of IT assets
by
eljo
[June 09, 2023, 04:39:50 pm]
Can't place ATBinHex on f...
by
domasz
[June 09, 2023, 03:26:03 pm]
Testers needed: FpDebug a...
by
nanobit
[June 09, 2023, 01:26:41 pm]
Possible work-around for ...
by
Thaddy
[June 09, 2023, 10:13:31 am]
Small DBMS project and Ho...
by
TRon
[June 09, 2023, 07:44:06 am]
Check for updates and upd...
by
KodeZwerg
[June 09, 2023, 07:43:19 am]
python for lazarus
by
Mongkey
[June 09, 2023, 06:23:44 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: How to add a new folder to the IDE component pallet (Read 318 times)
Derz
New Member
Posts: 16
How to add a new folder to the IDE component pallet
«
on:
February 03, 2023, 12:03:22 am »
When I tried to add a new component to the IDE in code which worked with Delphi, I hosed my Lazarus installation. It would not run, I had to reinstall. The Line of code in causing the issue (no error in compiling or anywhere) was..
Code: Pascal
[Select]
[+]
[-]
procedure
Register
;
begin
RegisterComponents
(
'MyComponents'
,
[
TMyStringGrid
]
)
;
end
;
I searched but could not find a means of adding a new "folder" to the IDE component pallet. I assume there must be a way to add "MyComponents".
Logged
KodeZwerg
Hero Member
Posts: 1405
Fifty shades of code.
Re: How to add a new folder to the IDE component pallet
«
Reply #1 on:
February 03, 2023, 12:24:03 am »
In your shown code all is cool so error must be somewhere else.
Here is a small example of a full code, maybe you find in yours a difference.
Code: Pascal
[Select]
[+]
[-]
unit
MyComponent_register
;
{$mode objfpc}{$H+}
interface
uses
Classes
,
SysUtils
,
MyComponentU
;
procedure
Register
;
implementation
{$R mycomponent.dcr}
{ Registration }
procedure
Register
;
begin
RegisterComponents
(
'My Component'
,
[
TMyComponent
]
)
;
end
;
end
.
Logged
«
Last Edit:
Tomorrow
at 31:76:97 by
KodeZwerg
»
Derz
New Member
Posts: 16
Re: How to add a new folder to the IDE component pallet
«
Reply #2 on:
February 03, 2023, 10:22:59 pm »
Seeing KodeZwerg's affirmation that the technique I used should work, I tried again, and it did work. The I presume that during the IDE Rebuild, something went wrong due to a corrupt file or something. The Lazarus reinstall must have fixed that.
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
General
»
How to add a new folder to the IDE component pallet
TinyPortal
© 2005-2018