Hi friends again. Can you tell me how I will justify right edit box components in delphi. Ok I have found the memo to justify right for my input variables. But when I delete the text inside the memo components. Some of strings in memo components are not coming to labels in my display form. For example : when I enter the 5 integer variables to memo component such as 1,2,3,4 and 5 but when I click button in main form. the 5 labels such as label1,label2, label3 etc. would carry these 5 input variables inside memo component. but I saw nothing in the text of labels. Such as Label1.Text:='1', Label2.Text:='2', but
Label3.text :=' ', Label4.text:=' ',
ferhatkuskaya 0 Light Poster
Recommended Answers
Jump to PostCan you tell me how I will justify right edit box components in delphi.
You must to install some new component with this option or create them by your self.
This code can be adapted to be installed like a component, but You can just use in your form source …
Jump to Postcome on Micheus pls explain with a code about that. I will need this worth information that related to creation of a new component and installing it....
type TNewEdit = class(TEdit) private procedure CreateParams(var Params: TCreateParams); override; end; ...
here you declare a new class from TEdit. …
All 7 Replies
Duoas 1,025 Postaholic Featured Poster
ferhatkuskaya 0 Light Poster
ferhatkuskaya 0 Light Poster

Micheus
ferhatkuskaya 0 Light Poster
ferhatkuskaya 0 Light Poster

Micheus
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.