Hi all,
I hope someone can help me with the following issue :
I have a VBA program (EXCEL 2007 Macro) that works fine with EXTRA 9.0 Service Pack 2
to connect and emulate a session from a host machine using an ABC.edp file and navigate in the different screens of the application once launched.
With this current solution all screens of the host machine run in foreground mode and are seen by the user.
I would like to hide the information parameter on the initial connection screen but not sure how to do it.
****************************************************
* Userlogin : JohnDoe
* Password : xxxx
* Center : ABC
* Parameter : 123
*****************************************************
Parameter : 123 should be displayed as **** or empty space.
On the host session, I need to hide the parameter value 123 or replace it with
something else so that this information is kept private and not shared with user.
The value 123 not displayed is still needed to connect to the host machine.
Any idea how to do it?
-Change color of the police since the screen background is black
Acceptable solution would be not to display this specific connection screen entirely
I have tried to use commande Application.visible = False then Application.visible = True before and after calling the screen
as well as Application.ScreenUpdating = False but with no result so far
---Sample of the code below:
‘Private variable
Public EXTRA As Object
‘Building of EXTRA objects
Set System = CreateObject("EXTRA.System")
Set Sessions = System.Sessions
Set session = System.ActiveSession
Set Me.EXTRA = session.screen
' Login data Input
EXTRA.putstring userLogin, 7, 40
EXTRA.putstring Password, 8, 40
EXTRA.putstring Center, 9, 40
EXTRA.putstring "123", 10, 40
EXTRA.SendKeys ("<ENTER>")
WaitProcessingEnd