﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
1804	FileSelectFolder does not position itself relative to the parent window (if given parent handle).	mikered82@…		"When using FileSelectFolder, the window does not position itself relative to the parent window. FileSelectFolder should work as FileOpenDialog does.

Code to reporoduce this:

{{{
$hGUI = GUICreate(""Test GUI"", 300, 200, 100, 100)
$BrowseFolder = GUICtrlCreateButton(""Browse Folder"", 35, 20, 100, 25)
$BrowseFile = GUICtrlCreateButton(""Browse File"", 170, 20, 100, 25)
GUISetState()

While 1
	$GUIGetMsg = GUIGetMsg()
	Switch $GUIGetMsg
		Case -3 ;$GUI_EVENT_CLOSE
			Exit
		Case $BrowseFolder
			FileSelectFolder(""dialog text"", """", 1+2, """", $hGUI)
		Case $BrowseFile
			FileOpenDialog(""title"", @DesktopDir, ""All (*.*)"", Default, """", $hGUI)
	EndSwitch
WEnd
}}}

"	Bug	closed		AutoIt	3.3.6.1	None	Wont Fix	FileSelectFolder	
