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
help choosing laptop
by
Leledumbo
[
Today
at 08:18:27 pm]
Who uses "caret past EOL"...
by
Martin_fr
[
Today
at 08:16:40 pm]
TSynEdit crashes when loa...
by
Martin_fr
[
Today
at 07:34:05 pm]
array of array of type?
by
xixixi
[
Today
at 06:58:43 pm]
How to create form in thr...
by
Remy Lebeau
[
Today
at 06:37:23 pm]
TStringGrid : Conflict be...
by
Nel_Fie
[
Today
at 06:17:51 pm]
Changes in "Search Result...
by
Martin_fr
[
Today
at 06:13:01 pm]
LAMW - simple esc/POS pri...
by
jmpessoa
[
Today
at 05:52:26 pm]
discarding an array
by
jcmontherock
[
Today
at 05:36:47 pm]
How do I set these packag...
by
JuhaManninen
[
Today
at 05:19:28 pm]
How to connect from Inter...
by
mercurhyo
[
Today
at 04:59:20 pm]
ODBC System DSN connected...
by
Jonvy
[
Today
at 03:46:19 pm]
Fast Base64 encoding/deco...
by
mikerabat
[
Today
at 02:53:39 pm]
Are We Dead Yet?
by
Warfley
[
Today
at 02:32:43 pm]
Clean up at ide/include/i...
by
Thaddy
[
Today
at 01:55:37 pm]
[Solved] Letters chopped ...
by
jamie
[
Today
at 01:15:30 pm]
Best way to delete an ins...
by
furious programming
[
Today
at 12:57:26 pm]
first generic attempt
by
Paolo
[
Today
at 11:11:04 am]
CEF dynamic library canno...
by
myisjwj
[
Today
at 10:10:59 am]
lhelp not working on Linu...
by
marcov
[
Today
at 09:09:08 am]
Browser Automation with s...
by
TRon
[
Today
at 07:29:31 am]
help exporting 2 data col...
by
howardpc
[
Today
at 06:32:47 am]
Rosetta Code Sutherland-H...
by
VTwin
[June 01, 2023, 11:58:31 pm]
if then else syntax
by
eljo
[June 01, 2023, 11:49:40 pm]
Make a part of text of a ...
by
vico
[June 01, 2023, 11:49:09 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: How to add a new folder to the IDE component pallet (Read 315 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