The below code works great when I need the user to point to a particular file via a standard dialog box. The code that works just fine is:
AnsiString strFilename;
OpenDialog1->Execute;
strFilename=OpenDialog1->FileName;
Question: I'd like a similar dialog box to appear to my user that will prompt the user to point to a folder instead of a particular file.
Is their a OpenFolder dialog box?
AnsiString strFilename;
OpenDialog1->Execute;
strFilename=OpenDialog1->FileName;
Question: I'd like a similar dialog box to appear to my user that will prompt the user to point to a folder instead of a particular file.
Is their a OpenFolder dialog box?