This commit fixes Issue #1:
  *  Issue #1 was caused by the app trying to modify a registry entry when making a new RemoteApp.
  *  As the registry entry does not exist due to the RemoteApp being new, the modify failed.
  *  Fix was to not attempt a rename on New RemoteApp creation from Advanced window.
This commit is contained in:
brianga 2019-10-28 09:32:28 -06:00
parent 204334e82e
commit 5f469ddc91

View File

@ -139,7 +139,7 @@ Public Class RemoteAppEditWindow
Dim SysApps As New SystemRemoteApps
If Not RemoteApp.Name Is Nothing Then If Not RemoteApp.Name = ShortName Then SysApps.RenameApp(RemoteApp.Name, ShortName)
If (Not RemoteApp.Name Is Nothing) And Not (Me.Text = "New RemoteApp") Then If Not RemoteApp.Name = ShortName Then SysApps.RenameApp(RemoteApp.Name, ShortName)
RemoteApp.Name = ShortName
RemoteApp.FullName = FullName