Delphi 2010
How to create a Folder (Directory) property editor for my component?
I was able to easily create one for a FileName property using:
TFileProperty = class(TStringProperty)
public
function GetAttributes: TPropertyAttributes; override;
procedure Edit; override;
end;
RegisterPropertyEditor(TypeInfo(TFileName),nil, '', TFileProperty);
I think it may take alittle more work, as i think i need to create a class to register, and somehow call selDir api routine or something
thanks for any help you may offer