I'm not sure if this is the right area to post this one. I have a few Access programs that contain VBA code that currently have a reference to Attachmate Extra Basic to allow some automation between the Access program and our mainframe.
The company I work for has now decided that Attachmate is too expensive and have decided to convert to Quick3270 and I have absolutley no say in what they do. I am hopeing someone out there can give me a push in the right direction to get things to work the same.
I can create the reference and create the objects but for some reason I cant get it to actually do anything to the session once it is open. Following is something very simple that should just type some text on the screen however I get nothing, not even an error.
- ' send something to the screen
-
Set objQuick3270 = CreateObject("Quick3270.Application")
-
Set objSession = objQuick3270.ActiveSession
-
Set objScreen = objSession.Screen
-
-
With objScreen
-
.PutString ("HELLO")
-
End With
Thank-you.