Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/07/2021 in all areas

  1. I am not sure what you get but maybe an alternative is just to use the office com object model as that reveals much more from your office applications. $oWdApp=objcreate("word.application") $owdApp.commandbars ..... google a little on vba commandbar ribbonbar and you will be able to reveal much more from your office GUI menu's, toolbars either thru the object model or by reading the ribbonbar xml templates
    2 points
  2. @PHAK You should also pay attention to the Remarks from the help : Remarks Some directory attributes can make the deletion impossible, therefore if this is the case look at FileSetAttrib() to change the attributes of a directory.
    1 point
  3. PHAK, Go and read the Help file page for DirRemove - there is a flag you are missing. M23
    1 point
  4. Putting out a corrected version now. Thanks @argumentum!
    1 point
  5. What's New in Version v1.9.1 Removed internal __CryptoNG_Startup and __CryptoNG_Shutdown functions. They were replaced with new helper functions to get & close DLL handles. __CryptoNG_GetBcryptDllHandle __CryptoNG_CloseBcryptDllHandle __CryptoNG_GetNcryptDllHandle __CryptoNG_CloseNcryptDllHandle Added a helper function to enable/disable debug messages. It is primarily for internal use. _CryptoNG_Debug Updated the help file to include the _CryptoNG_Debug function. Added a user.calltips.api file and a userudfs.properties file that includes entries for all of the public CryptoNG functions. Small changes to the ouput of a couple of the examples. Internal Changes Changed __CryptoNG_BCryptDecrypt_CBC to __CryptoNG_BCryptDecrypt_With_BlockPadding Changed __CryptoNG_BCryptEncrypt_CBC to __CryptoNG_BCryptEncrypt_With_BlockPadding
    1 point
  6. A good starting point could be the wiki: https://www.autoitscript.com/wiki/WebDriver
    1 point
  7. Here is a basic example using _FileListToArrayRec: #include <Array.au3> #include <File.au3> Global $g_sFolderRoot = @ScriptDir & "\Dir A" _ExampleFolders() ;~ Get list of folders before any changes are made Global $g_aFolderBefore = _FileListToArrayRec($g_sFolderRoot, "*", 2) ;~ Create Random Folder DirCreate($g_sFolderRoot & "\SubDir" & Round(Random(100, 500))) ;~ Get list of new folder(s) Global $g_aGetRandomFolder = _FileListToArrayRec($g_sFolderRoot, "*|" & _ArrayToString($g_aFolderBefore, ";", 1), 2) _ArrayDisplay($g_aGetRandomFolder) Func _ExampleFolders() If Not FileExists($g_sFolderRoot) Then DirCreate($g_sFolderRoot) For $i = 1 To 5 If Not FileExists($g_sFolderRoot & "\SubDir" & $i) Then DirCreate($g_sFolderRoot & "\SubDir" & $i) Next EndFunc
    1 point
  8. this should do it... ProcessClose("iexplore.exe") ;or $PID = ProcessExists("iexplore.exe") ; Will return the PID or 0 if the process isn't found. If $PID Then ProcessClose($PID) hope it helps 8)
    1 point
×
×
  • Create New...