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
How to download a file fr...
by
maurobio
[
Today
at 11:16:21 pm]
Check for updates and upd...
by
lainz
[
Today
at 10:27:12 pm]
What to change ModePortA,...
by
ccrause
[
Today
at 10:17:09 pm]
How to POST a SOAPAction ...
by
Key-Real
[
Today
at 10:14:08 pm]
Small DBMS project and Ho...
by
Researching
[
Today
at 09:53:35 pm]
Access violation with use...
by
Martin_fr
[
Today
at 08:34:18 pm]
Suggestion on the lines o...
by
Skvoznjak
[
Today
at 06:43:43 pm]
Best way to include lots ...
by
PascalDragon
[
Today
at 06:14:51 pm]
.cvd ClamAV database comp...
by
PascalDragon
[
Today
at 06:09:43 pm]
Feature announcement: Fun...
by
PascalDragon
[
Today
at 06:07:42 pm]
DBEdit - display setting ...
by
rvk
[
Today
at 05:44:34 pm]
[SOLVED] Help for downloa...
by
magleft
[
Today
at 05:02:48 pm]
program locks up using se...
by
cdbc
[
Today
at 04:05:44 pm]
Testers needed: FpDebug a...
by
Martin_fr
[
Today
at 03:27:07 pm]
Scope of cross-platform
by
egsuh
[
Today
at 03:23:54 pm]
Making a little chart app
by
circular
[
Today
at 01:23:15 pm]
[RESOLVED] bug in FpWait?
by
robert rozee
[
Today
at 01:04:36 pm]
Can't place ATBinHex on f...
by
GetMem
[
Today
at 12:50:08 pm]
Are We Dead Yet?
by
PascalDragon
[
Today
at 12:38:59 pm]
Lazarus for RISC OS
by
PascalDragon
[
Today
at 12:26:48 pm]
Search in files
by
d7_2_laz
[
Today
at 11:43:33 am]
virtualdbtreeex
by
Pe3s
[
Today
at 11:06:36 am]
Fill dual brush color in ...
by
wp
[
Today
at 10:48:05 am]
[Closed] Holding form pos...
by
Bart
[
Today
at 09:45:09 am]
Tools I made for my needs
by
zeljkoc
[
Today
at 05:20:14 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: How to add a new folder to the IDE component pallet (Read 317 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: 1404
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