HoangNamMapper

Untitled

Jan 2nd, 2017
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. If $Msg=$Nhap Then MsgBox (0,"Tool Xóa File", Example())
  2. WEnd
  3.  
  4. #include <MsgBoxConstants.au3>
  5.  
  6. Example()
  7.  
  8. Func Example()
  9. Local Const $sMessage = "Chọn thư mục"
  10. Local $sFileSelectFolder = FileSelectFolder($sMessage, "")
  11. If @error Then
  12. MsgBox($MB_SYSTEMMODAL, "", "Không có thư mục được chọn.")
  13. Else
  14. MsgBox($MB_SYSTEMMODAL, "", "Bạn đã chọn thư mục:" & @CRLF & $sFileSelectFolder)
  15. EndIf
  16. EndFunc
Advertisement
Add Comment
Please, Sign In to add comment