Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/31/2012 in all areas

  1. thank u soooo much^^ it works perfectly^^
    1 point
  2. I found something helpful here: Check it out
    1 point
  3. Blackmore, Define an edit control like this $e1 = GUICtrlCreateEdit("", 50, 120, @DesktopWidth - 150, 400, $ES_AUTOVSCROLL + $WS_VSCROLL + $ws_hscroll + $es_readonly) GUICtrlSetLimit($s1, 1000000) ; 1 million byte edit char limit and populate it like this GUICtrlSetData($e1, _Now() & " " & $some_string & @CRLF, 1) kylomas edit: the _now() is just how I do date/time stams, use whatever you like
    1 point
  4. Probably will want to spell my name correctly or you won't find much
    1 point
  5. XxXGoD, If you only want to find any 3 of the 4 then you could do something like this: $iCount = IsArray(_PixelSearch(coord1...)) + IsArray(_PixelSearch(coord2...)) + IsArray(_PixelSearch(coord3...)) + IsArray(_PixelSearch(coord4...)) If $iCount > 2 Then ; Code for 3 or 4 found Else ; Code for 0, 1, or 2 found EndIf Any help? M23
    1 point
×
×
  • Create New...