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
Are We Dead Yet?
by
marcos-ebm
[
Today
at 03:32:40 am]
LAMW - simple esc/POS pri...
by
Mongkey
[
Today
at 02:46:21 am]
ZenGL +android + MacOS Co...
by
Seenkao
[
Today
at 02:34:38 am]
Insert variant array to e...
by
jamie
[
Today
at 01:28:28 am]
Providing *.deb files for...
by
Bi0T1N
[
Today
at 01:18:36 am]
Can't load because <x> de...
by
marcov
[
Today
at 12:56:43 am]
Load local HTML file into...
by
maurobio
[May 27, 2023, 08:10:08 pm]
Non-local goto example ne...
by
Peter H
[May 27, 2023, 08:05:34 pm]
[SOLVED] Using high inste...
by
lagprogramming
[May 27, 2023, 07:50:48 pm]
LAMW - default manifest r...
by
jmpessoa
[May 27, 2023, 07:25:21 pm]
Threads - stringlist and ...
by
PascalDragon
[May 27, 2023, 06:37:57 pm]
Improvements in rtl/objpa...
by
PascalDragon
[May 27, 2023, 06:35:26 pm]
Optimization of for loops...
by
lagprogramming
[May 27, 2023, 03:56:09 pm]
How to download a file fr...
by
maurobio
[May 27, 2023, 02:58:43 pm]
Solved- TSQLQuery.ExecSQL...
by
br4d
[May 27, 2023, 02:26:56 pm]
New version of BGRABitmap
by
circular
[May 27, 2023, 01:59:44 pm]
[Solved] Help with spellc...
by
Espectr0
[May 27, 2023, 12:04:11 pm]
first generic attempt
by
Martin_fr
[May 27, 2023, 11:47:41 am]
Hole punching - Step by S...
by
Key-Real
[May 27, 2023, 10:28:34 am]
[SOLVED] How to get recei...
by
cdbc
[May 27, 2023, 10:04:41 am]
Online Package Manager
by
circular
[May 27, 2023, 08:43:06 am]
Reading MAC address of Ac...
by
Jurassic Pork
[May 27, 2023, 07:56:41 am]
LAMW - How to build kitka...
by
jmpessoa
[May 27, 2023, 12:39:35 am]
Cut files to Clipboard (i...
by
jamie
[May 26, 2023, 11:13:16 pm]
Is Meta programming possi...
by
PascalDragon
[May 26, 2023, 10:14:46 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: How to add a new folder to the IDE component pallet (Read 314 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: 1395
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