Jump to content

Unc3nZureD

Active Members
  • Posts

    441
  • Joined

  • Last visited

  • Days Won

    1

Community Answers

  1. Unc3nZureD's post in Webcam Detection was marked as the answer   
    Please use the search button
    '?do=embed' frameborder='0' data-embedContent>>
    a little bit modified:
    MsgBox(0,"", IsWebcamPresent()) Func IsWebcamPresent() $StructName = DllStructCreate("char[1024]") $StructDesc = DllStructCreate("char[1024]") For $i = 0 To 9 $aRslt = DllCall("Avicap32.dll", "bool", "capGetDriverDescription", "dword", $i, "ptr", DllStructGetPtr($StructName), "dword", DllStructGetSize($StructName), "ptr", DllStructGetPtr($StructDesc), "dword", DllStructGetSize($StructDesc)) If Not @error Then If $aRslt[0] Then Return True EndIf Next Return False EndFunc
  2. Unc3nZureD's post in Reading multiple 'List' choices was marked as the answer   
    I've found the answer
    _GUICtrlListBox_GetSelItemsText()
  3. Unc3nZureD's post in How to Automation click "Start" program was marked as the answer   
    Try to replace your ControlClick with this one:
    ControlClick("PW.sederhana", "", "[NAME:button1]")
×
×
  • Create New...