Need help I am trying to extract data from Status bar so that I know the current cursor position, however as per attached image I am getting Status as only "Ready" instead of "REFERENCE_NUM" as shown in screen shot, please advise how i can extract "REFERENCE_NUM" from status bar?
` I Tried following code in Autoit
#include <MsgBoxConstants.au3>
Local $TiTle
If WinExists('EXPORT') = True Then
WinActivate('EXPORT')
$TiTle = WinGetTitle('EXPORT')
EndIf
;********************************************************************************************************************************************************************************
local $source
Local $hWnd = WinGetHandle($TiTle,'')
Sleep(1000)
WinWait("[CLASS:TfmBrowser]")
Send("{PGUP}")
$b = 1
For $b = 1 to 5
WinActivate('EXPORT')
Send("{TAB}")
Sleep(1000)
MsgBox($MB_SYSTEMMODAL, "", ControlGetText($hWnd, '', 'TStatusBar1'),8))
Next