I have a VBA code to open the reflection workspace. I want to place a cursor in a particular position of the screen(24th row and 15th column) and then pass the string value "START TSO". However, I am unable to place the cursor in that position. I tried PutText1, PutText2, MoveCursorTo1 but it did not work for me.
Please tell me the way to insert cursor in an IBM reflection screen
Set terminal = app.CreateControl("C:\mvsdev.rd3x")
Set view = frame.CreateView(terminal)
Set screen = terminal.screen
Dim rtncode As ReturnCode
rtncode = screen.PutText1("START TSO", 24, 15, 8)
Please tell me the way to insert cursor in an IBM reflection screen
Set terminal = app.CreateControl("C:\mvsdev.rd3x")
Set view = frame.CreateView(terminal)
Set screen = terminal.screen
Dim rtncode As ReturnCode
rtncode = screen.PutText1("START TSO", 24, 15, 8)