| Product: Distinct Intelliterm | Topic: DDE | Last updated: 3/31/2008 |
| |
| Q.: Can the terminal program allow read/write of data into Microsoft Excel? |
A.: Yes, here's some sample code that should help you with this. This macro takes all the text from Intellitem's session and puts it into cell (1,1) of the current worksheet:
Sub test()
On Error GoTo ErrorHandler
crlf = Chr(13) + Chr(10)
iChanNum = DDEInitiate("ITERM", "1")
iNumRows = DDERequest(iChanNum, "Rows")(1)
iNumCols = DDERequest(iChanNum, "Columns")(1)
data = ""
If iChanNum Then
For Row = 1 To iNumRows
request = "P" + Mid(Str(1 + ((Row - 1) * iNumCols)), 2) + "L" + LTrim(Str(iNumCols))
request = request + crlf
r = DDERequest(iChanNum, request)(1)
data = data + r
Next Row
ThisWorkbook.ActiveSheet.Cells(1, 1).Value = data
Else 'could not open session
MsgBox "Could not open DDE Session with program."
End If
ErrorHandler:
DDETerminate iChanNum
End Sub
|
| |
Do you find this information useful ? Yes No Not Sure |
|
| Product: Distinct Intelliterm | Topic: General | Last updated: 3/31/2008 |
| |
| Q.: After mapping the keys, the NumLock keyboard light does not work when changing sessions. What do I do? |
A.: Open the ITERM.INI file. Add the following lines under [SYSTEM.SETTINGS]
Allow NumLock Maps = OFF
Auto Toggle NumLock = OFF
Allow NumLock Maps = OFF controls your ability to switch between a mapped keypad and a numeric keypad. In the OFF position, you have two options: NumLock light ON gives you a numeric keypad; NumLock light "OFF" allows you to map the keypad.
Auto Toggle NumLock = OFF causes IntelliTerm to ignore the condition of NumLock light. It will remain OFF or ON when switching between sessions depending on the condition that NumLock was in when you change the session.
|
| |
Do you find this information useful ? Yes No Not Sure |
|
| Product: Distinct Intelliterm | Topic: General | Last updated: 3/31/2008 |
| |
| Q.: Are there more security settings, not found in the HELP file, that disable features? |
A.: Yes. In the ITERM.INI File, you can add the following as needed under [Disable.Settings]
Font Select = Off
Font Smaller = Off
Font Larger = Off
Font Maximize = Off
Macro End Recording = Off
Macro Pause Recording = Off
Macro Cancel Recording = Off
Paste Continue = Off
View Poppad Default = Off
View Poppad Custom = Off
Note: Some of these settings will also remove the feature(s) from the File menu; other settings will dim the item in the menu.
|
| |
Do you find this information useful ? Yes No Not Sure |
|
| Product: Distinct Intelliterm | Topic: General | Last updated: 3/31/2008 |
| |
| Q.: Can I automatically import Word and Excel data into IntelliTerm? |
| A.: You can have applications such as Word, Excel etc. "talk" to the host through a DDE interface. See DDE - Dynamic Data Exchange in the HELP files for more information. |
| |
Do you find this information useful ? Yes No Not Sure |
|
| Product: Distinct Intelliterm | Topic: General | Last updated: 3/31/2008 |
| |
| Q.: Can I disable the ‘X’ in the top right corner of a session window? |
A.: Yes. You will need to enter the following into the ITERM.INI file:
[Disable.Settings]
Exit=Off, Hide
Note: This setting will also remove Exit All from the File menu
|
| |
Do you find this information useful ? Yes No Not Sure |
|
| Product: Distinct Intelliterm | Topic: General | Last updated: 3/31/2008 |
| |
| Q.: Can I have different sessions to multiple host types running simultaneously? |
| A.: Yes, you can also customize each session and save it independently. |
| |
Do you find this information useful ? Yes No Not Sure |
|
| Product: Distinct Intelliterm | Topic: General | Last updated: 3/31/2008 |
| |
| Q.: Can I port configurations and settings to other workstations? |
| A.: Settings are stored in the ITERM.INI file. This is found in the Windows directory. Copy it over to other workstations. When asked to overwrite, click YES. You will now see the configuration profiles from the first computer. |
| |
Do you find this information useful ? Yes No Not Sure |
|
| Product: Distinct Intelliterm | Topic: General | Last updated: 3/31/2008 |
| |
| Q.: Can I remove the profiles toolbar at the top?
|
A.: Yes. To do this:
Add the following entry to the the System.Setting section of your iterm.ini file:
profile combo=off
|
| |
Do you find this information useful ? Yes No Not Sure |
|
| Product: Distinct Intelliterm | Topic: General | Last updated: 3/31/2008 |
| |
| Q.: Can IntelliTerm be configured to automatically login to a server? |
A.: Yes, this can be achieved by creating a macro and associating it with the specific IntelliTerm profile that is to automatically login to the server.
Following is an example of how to create an autologin macro to connect to a UNIX system. The macro assumes that no data needs to be sent before receiving a login prompt:
- Connect to the server using the profile to be used, the select Edit from the Macro menu and create the following macro:
Sub Main
MAX_ATTEMPTS=20
'The next line supplies your account login name to the server.
'Replace "username" with your account name.
LoginID="username"
'The next line is the prompt that your server sends out for the user to enter the account
'password. Replace this with the prompt used by your server (eg. "word:")
PasswordPrompt="assword:"
'The next line supplies your account password. Replace "password" with your actual account password.
Password="password"
CurrentHost.Keys LoginID+"\n"
i=0
While InStr(CurrentHost.Text,PasswordPrompt)<=0
CurrentHost.WaitIdle(200)
i=i+1
If i>MAX_ATTEMPTS Then End
Wend
If(i>MAX_ATTEMPTS) Then
MsgBox "Autologin failed"
Exit Sub
End If
CurrentHost.Keys Password+"\n"
End Sub
In the Macro Editor, select Save from the File menu to save the macro to a file, e.g.: c:\mymacros\autologin.wwb
Close the Macro Editor
- Select Edit Session Profile from the Options menu in ntelliTerm Select General and set "Autostart Quick-Key/Macro" to the full path of the autologin macro you just created (in our example this would be c:\mymacros\autologin.wwb). Then click on Save to save this new setting to your profile.
Once you have done this each time the profile is started it will automatically run the macro created and proceed to automatically login to the server using the account information specified in the macro.
|
| |
Do you find this information useful ? Yes No Not Sure |
|
| Product: Distinct Intelliterm | Topic: General | Last updated: 3/31/2008 |
| |
| Q.: Do I need a special license even if I want to run only one instance on a Citrix server? |
| A.: Yes you do. The Distinct Resource Manager makes a UDP call that is incompatible with thin client environments. This call is disabled during the evaluation period. A special serial number and key code are required from Distinct to disable this function in a purchased license. |
| |
Do you find this information useful ? Yes No Not Sure |
|