__________________ Purpose:
 I wrote a little Application in Visual Basic,
 Now i would like mIRC to work with my Application, to get information from it
 so this would fetch information (Text) from TextBoxes, RichEdit, Static etc...

__________________ Functions:
	bytitle : Receives Text from a ID using the Title to locate the Application.
	byclass : Receives Text from a ID using the Class Name to locate the Application.
	about  : Author Information

__________________ Examples:
	$dll(GetText.dll, bytitle,<WindowTitle>;<ID>)
	$dll(GetText.dll, bytitle,Form1;1)

	$dll(GetText.dll, byclass,<ClassName>;<ID>)
	$dll(mGetText.dll,byclass,#32770;300)  ; Receives Code from Script Editor (Editor must be open)


________________ Receiving The IDs?

;::: Quick snippet by Osah_ to receive IDs by Title
;::: I still recommend Winspector or spy+++

alias GetIDList {
  var %windowname $$?="What is the title of the Window?"
  var %x $$?="Start search from! (0-60000)"
  var %z $$?="End search at! (must be a number higher than the start)"
  while (%x != %z)  {
    var %p $dll(GetText.dll,GetTxt, $+ %windowname $+ ; $+ %x $+ )
    if (%p == NO_SUCH_ITEM)  { var %null 0 }
    else { echo -a ID: %x Text: %p }
    inc %x
  }
}

; Or you can use WinSpector which can be downloaded online.
; Also spy+++.exe could work also


_________ 


Sincerely, codemastr.
