Jump to content

TheDcoder

Active Members
  • Posts

    7,103
  • Joined

  • Days Won

    88

Everything posted by TheDcoder

  1. Is there a risk developing Super-Sensitive encryption software in autoIt?
  2. @JLogan3013 Well, its free
  3. i read the documentation but i am a little confused
  4. Hello Guys! I want to capture output from Run(@ComSpec & " /c " & '7za l documents.zip', "", @SW_HIDE) Is it possible?
  5. @BrewManNH The code snippet is a small part of my program
  6. AutoIt is only available to windows, and android is linux (sorry tux )
  7. Create a infinite loop and use EndLoop() where needed...... In This Case: Case $start While 1 If FileExists('e\documents\' & $file) = 0 Msg(0, "", Error!!") EndLoop() EndIf ; Add Remaining code here WEnd
  8. I think he means no files are deleted
  9. For $i = 1 To UBound($aFiles) - 1 Use the above code for "for" loop
  10. Try adding #RequireAdmin at the top of the script, it should fix any issues wit permissions
  11. Hello!, I need some help with this Case $start If FileExists('e\documents\' & $file) = 0 Msg(0, "", Error!!") Exit ;Replace this with any thing which does not close the program EndIf
  12. Thank you very very very much!!!!!!!!!!!!!!!!!
  13. Hello again, i am having a difficult time with StringRegExpReplace, i want to convert File Path to File name Here is a piece of code from my project $locationOfFile = FileOpenDialog("Select Document", @DocumentsCommonDir, "Word File (*.docx)", $FD_FILEMUSTEXIST + $FD_PATHMUSTEXIST) $nameOfFile = StringRegExpReplace($locationOfFile, ) I can understand how to set the pattern.... Thanks again for the help!
  14. NOTE: I am no professional, i can't understand all of the code you guys put in here
  15. I could test it but it will help googlers
  16. Will it chop off anything after a "." (full-stop or point) ?? Ex: file is "my.document.docx" will be "my"?
  17. Hello! docxFiles = _FileListToArray('e:\files\documents', '*.docx', 1) For $i = 1 To UBound($docxFiles) - 1 GUICtrlSetData($listDocx, $docxFiles[$i]) Next ;listDocx = controlID of the combo list I want to chop off the .docx at the end, How can I?
  18. Hello! If FileInstall('image.png', @ScriptDir) = 0 Then MsgBox(0, "Unexcepted Error", "Damaged file") Exit Will it make any difference if the file was unable to extract?
  19. Hello, I can understand why this: MsgBox(0, "", @AppDataDir & '\.minecraft\saves' & $myVar & '.ext') Is returning C:UsersDamonAppDataRoaming.minecraftsavesC:UsersDamonAppDataRoaming.minecraftsavesvariable here.ext $myVar = "variable here" I want C:UsersDamonAppDataRoaming.minecraftsavesvariable here.ext
×
×
  • Create New...