Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub Main
Dim Sys As Object, Sess As Object, MyScreen As Object, MyArea As Object
Set Sys = CreateObject("EXTRA.System")
' Assumes an open sessions
Set Sess = Sys.ActiveSession
Set MyScreen = Sess.Screen
Set MyArea = MyScreen.Area(1,1,24,80)
MyFile = "C:\mytxt.txt"
Open MyFile for Append as #1
Print #1, MyArea
Close #1
End Sub
How to copy entire page from sess0 and paste directlly in c:\mytxt.txt?
Sub Main
Dim System As Object, Sess As Object, MyScreen As Object
Set System = CreateObject("EXTRA.System")
Set Sess = System.ActiveSession
Set MyScreen = Sess.Screen
MyFile = "C:\mytxt.txt"
Open MyFile for Append as #1
For i = 1 to 24
MyArea = MyScreen.GetString (i,1,80)
Print #1, MyArea
Next i
Close #1
End Sub