请问,这样的文件夹对话框怎么写???
雨林木风的系统DIY1.6的文件夹对话框:当选中如"网上邻居"这个的路径时,"确定"按钮就不可用了!和在下的不同!
请问一下,这个的文件夹对话框怎么写出来的! 第二个问题
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$Form1 = GUICreate("自定义文件夹路径", 625, 445, 193, 125)
$Input1 = GUICtrlCreateInput("", 88, 96, 217, 21)
$Button1 = GUICtrlCreateButton("浏览", 325, 93, 75, 25, 0)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case$Button1
$var = FileSelectFolder("请选择一个文件夹:", "", 7,@WorkingDir)
If Not @error Then
GUICtrlSetData($Input1, $var)
EndIf
EndSwitch
WEnd
第二个问题已经OK了!就算选中网上邻居!也不会在INPUT控件内输入了! 现在在下再试了一下!当选中"我的电脑"的时候,还是一样!问题还不能解决!
页:
[1]