Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

obj_get_text() hangs PC

Status
Not open for further replies.

devittp

Technical User
Feb 20, 2004
2
CZ
Hi,
I am trying to use obj_get_text() to get text from vt100 type
window. However it always hangs PC (Win 2000). I also tried other
window objects with same result.

obj_click_on_text() also causes problem.

Is this a general problem with these functions.
Is there any work-around.

Sample Code
Code:
set_window("Untitled - Reflection for UNIX and Digital", 1);
	   
if (obj_exists ("r2Display") == E_OK)	
{   
  obj_get_text("r2Display", text);
}    
else
{
  print("Aha!!!! Unix window not found");
}


Thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top