Pick Folders by OpenFileRequester
Posted: Wed Aug 14, 2019 8:27 am
If you have another technique, please reply to this topic.
Thank you.
Thank you.
Code: Select all
StandardFile$ = "select path"
Pattern$ = "folders|*.neverseenthisfile"
Pattern = 0
File$ = OpenFileRequester("Please choose pick folder", StandardFile$, Pattern$, Pattern)
If File$
MessageRequester("Information", "You have selected following path:" + Chr(10) + GetPathPart(File$), 0)
Else
MessageRequester("Information", "The requester was canceled.", 0)
EndIf