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 can I capture all key...
by
Handoko
[
Today
at 05:21:56 am]
general reference manual ...
by
Curt Carpenter
[
Today
at 03:52:39 am]
Are We Dead Yet?
by
dbannon
[
Today
at 03:33:02 am]
Changes in "Search Result...
by
n7800
[
Today
at 03:13:36 am]
TBufferDataSet List Index...
by
eldonfsr
[
Today
at 01:54:18 am]
How to download a file fr...
by
jmpessoa
[
Today
at 01:44:30 am]
[SOLVED] LAMW BackButton ...
by
maurobio
[
Today
at 01:12:12 am]
any one knows how to set ...
by
dbannon
[
Today
at 01:10:22 am]
Clean up at ide/include/i...
by
Bart
[June 03, 2023, 11:03:10 pm]
Tips for deep debuging of...
by
Grew
[June 03, 2023, 10:46:22 pm]
discarding an array
by
robert rozee
[June 03, 2023, 09:54:10 pm]
TSynEdit crashes when loa...
by
Martin_fr
[June 03, 2023, 09:37:47 pm]
How to create form in thr...
by
PascalDragon
[June 03, 2023, 07:22:32 pm]
Who uses "caret past EOL"...
by
Martin_fr
[June 03, 2023, 06:34:39 pm]
array of array of type?
by
jamie
[June 03, 2023, 04:42:22 pm]
if then else syntax
by
jamie
[June 03, 2023, 04:37:44 pm]
how to do a HTTP POST wit...
by
rvk
[June 03, 2023, 03:51:05 pm]
[SOLVED] SynEdit resize t...
by
Hansvb
[June 03, 2023, 03:42:16 pm]
[SOLVED] Help for downloa...
by
magleft
[June 03, 2023, 11:32:31 am]
Two issues related to fcl...
by
wp
[June 03, 2023, 11:07:07 am]
ANN: ODBC DAC under GNU G...
by
Andrey Zubik
[June 03, 2023, 01:14:38 am]
LAMW - (SOLVED) simple es...
by
Mongkey
[June 03, 2023, 12:20:54 am]
Fast Base64 encoding/deco...
by
mika
[June 02, 2023, 10:53:10 pm]
help choosing laptop
by
Leledumbo
[June 02, 2023, 08:18:27 pm]
TStringGrid : Conflict be...
by
Nel_Fie
[June 02, 2023, 06:17:51 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: How to add a new folder to the IDE component pallet (Read 316 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: 1398
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