Jump to content

Search the Community

Showing results for tags 'autoit gui'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 2 results

  1. Hello All, I am trying to capture a video feed from a window in a software and then recast that in another GUI designed using AutoIt. What would be the best strategy to approach this? Thank you
  2. @melba, sorry for the title dont know what title I need to use, I found some script of yours for filtering listview, Im already done with the filtering and made some small modification. I want to fully understand each line.. and if anyone has a kind heart to put more comment on each line, I am really squizzing my mind for this script.. pleaaaaaassssseeeee ??? here is the full script, #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include "GUIListViewEx.au3" #include <Array.au3> Opt("GUIDataSeparatorChar", "/") $hGUI = GUICreate("Form1", 673, 433, -1, -1) $cListView = GUICtrlCreateListView("Name File / Value", 8, 64, 657, 361) GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 0, 380) GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 1, 270) $cButton_Load = GUICtrlCreateButton("Load", 8, 16, 105, 33) $cInput = GUICtrlCreateInput("", 136, 24, 145, 21) GUICtrlSendMsg(-1, $EM_SETCUEBANNER, True, "Search...") $cButton_Search = GUICtrlCreateButton("Search", 304, 16, 105, 33) GUISetState(@SW_SHOW) Global $aData[4][2] = [["Test1", "Test"], ["Test2", "Sun"], ["Sun1", "Sun"], ["Earth1", "Earth1"]] While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $cButton_Search _GUICtrlListView_DeleteAllItems($cListView) ; -->>Remove all items $sText = GUICtrlRead($cInput) ;-->>Read Input Box If StringLen($sText) <> 0 Then ;-->>Read StringLen Greater or Less than 0 ; Create a list of matches Local $aMatch_List[1] = [0] ;-->>whats the use of this??????? $iStart = 1 ;-->> whats the use of this??? For $i = 0 To UBound($aData) - 1 ;-->> infinite array columns and rows??? ; Look for the match If StringInStr($aData[$i][0], $sText) Then ; Add to list $aMatch_List[0] += 1 ; -->>Declared same variable +1??? whats the use??? ReDim $aMatch_List[$aMatch_List[0] + 1]; -->> Resize an existing array. $aMatch_List[$aMatch_List[0]] = $aData[$i][0] & "/" & $aData[$i][0]; -->> whats the use of this??????? EndIf Next ; Add matches to ListView For $i = 1 To $aMatch_List[0] GUICtrlCreateListViewItem($aMatch_List[$i], $cListView) Next Else ; Reload everything ContinueCase EndIf Case $cButton_Load ; Remove all items _GUICtrlListView_DeleteAllItems($cListView) For $i = 0 To UBound($aData) - 1 GUICtrlCreateListViewItem($aData[$i][0] & "/" & $aData[$i][0], $cListView) Next EndSwitch WEnd TIA...
×
×
  • Create New...