Hi,
I've just started looking to test what can be displayed in the title bar and I am finding that I am getting additional numbers with brackets after at the end of the information I want displayed. I'm running dual screens and the Left monitor by default has a (1) in the title bar and the right a (2). Now I'm getting (1) (2) (1) on the left and (1) (2) (1) (2) on the right but I cant figure out why these are appearing. I would prefer that none were visible at all if possible. The code I have been using is :
Public Sub hooks_OnDesignFileOpened(ByVal fileName As String) Dim UsersName As String Dim FullPath As String Const str_USTN_USERNAME As String = "$(_USTN_USERNAME)" Const str_DGNFILE As String = "$(_DGNFILE)" UsersName = ActiveWorkspace.ExpandConfigurationVariable(str_USTN_USERNAME) FullPath = ActiveWorkspace.ExpandConfigurationVariable(str_DGNFILE) Application.Caption = FullPath & " : " & UsersName & " : " Debug.Print "Application.Caption"End Sub
In addition to this:
Thanks
Application.Caption = <String>
<String> can be anything you want. If you want, you could do Application.Caption = "The World's Greatest Program running on " & Date() . All you have to do is create a string that reads how you want it to.
--Robert