But in the dialog that comes up I do now want to show following controls:
How to do it?
TIA
Yogi Yang
4 L A T E S T R E P L I E S (Newest First)
xequte
Posted - May 06 2019 : 04:11:30 Hi
You will need to do that programmatically.
You should open the forms in Delphi to get a better idea what you are dealing with.
Note: The forms include conditional defines, so to view them you need to: - open the unit, e.g. previews.pas - Remove the IFDEF at the start of the unit, and then ELSE/ENDIF block at the end - Close the unit - Reopen it
procedure TMainForm.ImageEnView1ShowDialog(Sender: TObject; DlgType: TIEDlgType; Form: TForm);
begin
// add Previews to uses
if DlgType = iefProcPreview then
with TfPreviews(Form) do
begin
ImageEn1.Visible := False;
Label1.Visible := False;
ResultToSourceButton.Visible := False;
// And fix layout...
end;
end;
Posted - May 02 2019 : 08:59:04 I don't think it is possible. You can make your own dialog to do the same thing or add controls to your main form to set HSL to the TImageEnView.