Jump to content

Watson

Members
  • Posts

    11
  • Joined

  • Last visited

Watson's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. \b[[:alpha:]]:\\(?:[^\\/:*?"<>|\r\n]+\\)*[^\\/:*?"<>|\r\n]* ? Thank you. Could you tell me how I can take only the *.png and *.jpg?
  2. I also ask if everything can be limited to a few extensions: *.png and *.jpg... please
  3. Hello guys! Today I happened to download a program called RegexBuddy This performs its function perfectly, but no such strings for AutoIt. I ask you if you can translate this string into AutoIt. \b[a-z]:\\ # Drive (?:[^\\/:*?"<>|\r\n]+\\)* # Folder [^\\/:*?"<>|\r\n]* # File \b[a-z]:\\(?:[^\\/:*?"<>|\r\n]+\\)*[^\\/:*?"<>|\r\n]* In addition, the string "[az]", should not be corrected ... should not be: "[a-zA-Z]"? Thus, "[:alpha:]"? I also ask if everything can be limited to a few extensions: *.png and *.jpg PS: sorry for the previous post, was in the wrong section
  4. I think I have the wrong section, I apologize.
  5. Hello guys! Today I happened to download a program called RegexBuddy This performs its function perfectly, but no such strings for AutoIt. I ask you if you can translate this string into AutoIt. \b[a-z]:\\ # Drive (?:[^\\/:*?"<>|\r\n]+\\)* # Folder [^\\/:*?"<>|\r\n]* # File \b[a-z]:\\(?:[^\\/:*?"<>|\r\n]+\\)*[^\\/:*?"<>|\r\n]* In addition, the string "[az]", should not be corrected ... should not be: "[a-zA-Z]"? Thus, "[:alpha:]"? I also ask if everything can be limited to a few extensions: *.png and *.jpg
  6. Your problem is different! The variable $baseexe was not declared in the code of sunsunshine. It follows that the problem was due to the variable
  7. Try adding: Global $baseexe = @WindowsDir & "\explorer.exe"
  8. You're welcome
  9. #RequireAdmin
  10. If you run it from Windows Vista or 7, the administrative rights are required.
  11. Why not use BlockInput()? The only problem is that if you type Ctrl+Alt+Del, you can easily compromise this function. BlockInput(1) = Disable user input BlockInput(0) = Enable user input
×
×
  • Create New...