I want to make a program like Frontpage Express or like many of the other programs out there where you can make HTML pages in What You See Is What You Get.
How do I do so in Delphi? And what components do I have to download (free components of course).
I wrote this code:
TButton.Create(self).Name := 'Button1';
with TButton(FindComponent('Button1')) do
begin
top := 88;
left := 88;
height := 88;
width := 88;
Parent := somepanel;
end;
It works fine. It shows my newly created Button1.
But when I do the following:
TButton.Create(self).Name :=...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.