sirpat1366
Programmer
Hello. My team and I are in the process of porting all of our Attachmate macros over into C#. We are experiencing difficulting in accessing the Session Toolbar names. We've been able to do this in VB.Net, but can not get the code to convert over properly. Below is the VB code that works:
If LPSSession.Toolbars.Item(x).visible = True Then
strToolbarName = UCase(LPSSession.Toolbars.Item(x).FullName)
End if
In C#, however, it appears that the Item property is not available to us. Any help or assistance would be greatly appreciated.
If LPSSession.Toolbars.Item(x).visible = True Then
strToolbarName = UCase(LPSSession.Toolbars.Item(x).FullName)
End if
In C#, however, it appears that the Item property is not available to us. Any help or assistance would be greatly appreciated.