I am trying to figure out this VBA code.
Private Function GetScreenTitle()
' Reads the current screen Title
GetScreenTitle = Trim(GetText(0, 10, 0, 71))
End Function
I am trying to figure out the numbers GetScreenTitle line. I am guessing it is the location on the screen, how do you know which number correspond to what.
Private Function GetScreenTitle()
' Reads the current screen Title
GetScreenTitle = Trim(GetText(0, 10, 0, 71))
End Function
I am trying to figure out the numbers GetScreenTitle line. I am guessing it is the location on the screen, how do you know which number correspond to what.