Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/29/2018 in all areas

  1. The directory C:\Temp and your operating system's paging file are not the same thing. There are lots of things that will clear that directory, but the OS needing space and removing contents from that particular location is not one i have encountered.
    1 point
  2. I think the last Firefox version that supports MozRepl is 54.x. If you want to use a more recent version, then you should check out the WebDriver UDF (see my signature).
    1 point
  3. How about explaining what you have tried, and what isn't working for you, rather than the more general "will this work"?
    1 point
  4. ;Continued $session.findById("wnd[1]/usr/cntlALV_CONTAINER_1/shellcont/shell").currentCellRow = 4 $session.findById("wnd[1]/usr/cntlALV_CONTAINER_1/shellcont/shell").selectedRows = "4" $session.findById("wnd[1]/usr/cntlALV_CONTAINER_1/shellcont/shell").doubleClickCurrentCell $session.findById("wnd[0]/tbar[1]/btn[8]").press sleep(15000) $oMyError = ObjEvent("AutoIt.Error","SAP_Error") Func SAP_Error() $session.findById("wnd[0]/usr/cntlCONTAINER/shellcont/shell").pressToolbarContextButton ("&MB_VIEW") $session.findById("wnd[0]/usr/cntlCONTAINER/shellcont/shell").selectContextMenuItem ("&PRINT_BACK_PREVIEW") $session.findById("wnd[0]/mbar/menu[4]/menu[5]/menu[2]/menu[2]").select ;MsgBox(0, "SAP", "Can't find the specified menu item!") Endfunc $session.findById("wnd[1]/usr/subSUBSCREEN_STEPLOOP:SAPLSPO5:0150/sub:SAPLSPO5:0150/radSPOPLI-SELFLAG[1,0]").select $session.findById("wnd[1]/usr/subSUBSCREEN_STEPLOOP:SAPLSPO5:0150/sub:SAPLSPO5:0150/radSPOPLI-SELFLAG[1,0]").setFocus ;Continued Here you go!
    1 point
  5. Subz

    Create log file

    Weird question. No Windows doesn't allow you to create files or folders with forward or back slashes? You would have to change the slash to something like a dash "-" or some other separator.
    1 point
  6. Subz

    Control+SPACE ?

    Did you try "^{SPACE}"
    1 point
  7. trancexx

    WinHTTP functions

    Maybe it's this. Try the suggestion from there.
    1 point
  8. Yes fixed!!! Thank you so much for being so helpful. Downloaded the new versions from Github and it worked. Corrected.
    1 point
  9. ok, I am going to post this, solution below: https://stackoverflow.com/questions/12615665/in-windows-how-get-all-process-and-their-child-process-information-in-command-pr wmic process get Caption,ParentProcessId,ProcessId Given a parent PID you can list the immediate children with something like: wmic process where (ParentProcessId=2480) get Caption,ProcessId TEST: ok, so I ran a cmd, then explorer from it and notepad. i ran each of the above wmic statements from a cmd window. the second statement will show you the children of the parent and you could capture that and do what you like. In my case, the PID of cmd.exe was 4050 and his children where shown with their PIDs, notpad and explorer and WMIC.exe
    1 point
×
×
  • Create New...