If the OpenFileRequester is the only Form in your app, it defaults to the top-left of the screen. I would like it to default to center screen, or optionally be able to input x/y location values.
Code: Select all
sPattern.s = "Text Files (*.TXT *.txt)|*.TXT;*.txt"
sDefaultDir.s = "C:\"
iPatternPosition.i = 0
sMsg.s = "Browse to file to be processed"
sImportFolderPath.s = OpenFileRequester(sMsg, sDefaultDir, sPattern, iPatternPosition)
End