How do i change the name of this FolderBrowserDialog?

Kashyap Nandan 141 Reputation points
2022-10-21T08:25:54.6+00:00

252932-image.png
i want to change the title to "Select a folder to export .RBXL to..."

C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,649 questions
{count} votes

Accepted answer
  1. Castorix31 83,206 Reputation points
    2022-10-21T10:19:35.257+00:00

    This DialogBox is done with IFileDialog and FOS_PICKFOLDERS flag
    The title is changed with SetTitle
    You can adapt the sample I had posted in this thread,
    by uncommenting

    //FileDialog.FOS nOptions = FileDialog.FOS.FOS_PICKFOLDERS;  
    

    Then you can get :

    252955-ifiledialog-settitle.jpg

    0 comments No comments

0 additional answers

Sort by: Most helpful