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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

show session Extra in userform or form 1

Status
Not open for further replies.

1234luca

Programmer
Mar 24, 2008
9
IT
Is possible to show an Extra session in form or user form... all code in VBA or VB classic.
Tks.
 




Hi,

Sure! It's just TEXT. I'd grab the entire screen contents in one statemment.
Code:
YourForm.TextBox.Text = oScreen.Area(1,1,24,80).Value
if your textbox is formatted properly, the text will wrap line for line.

Skip,
[sub]
[glasses]Have you heard that the roundest knight at King Arthur's round table was...
Sir Cumference![tongue][/sub]
 
ok....
But i cannot to write to the hand the command in textbox!, or not?
I have see in Google and many pepole suggest to use HLLapi to use the session screen in form, or not?
 



"But i cannot to write to the hand the command in textbox!, or not?"

I do not understand you question

"I have see in Google and many pepole suggest to use HLLapi to use the session screen in form, or not?"

HLLapi is another type of screen scraper like Extra. Either would work. This is not a HLLapi forum, it is an Extra forum.

Perhaps you should post your code and explain where you are having difficulty.




Skip,
[sub]
[glasses]Have you heard that the roundest knight at King Arthur's round table was...
Sir Cumference![tongue][/sub]
 
ok re-Solved with:

YourForm.TextBox.Text = oScreen.Area(1,1,24,80).Value
Tks Skip
By From Italy(Napoli)

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top