Hi I have two buttons and a SelectDirectoryDialog1, I set in the options for SelectDirectoryDialog1 ofOldStyleDialog to true
I have this for my first button that it shows the dialog without the create folder button.
if SelectDirectoryDialog1.Execute then
begin
txtSource.Text := IncludeTrailingBackslash(SelectDirectoryDialog1.FileName);
end;
My question is how can I in my second button to show the dialog with the create folder button, I know you must have to do something with the dialog options in the code but I have no idea can someone show me an example thanks.