Fix Issue #1
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:
parent
204334e82e
commit
5f469ddc91
|
@ -139,7 +139,7 @@ Public Class RemoteAppEditWindow
|
||||||
|
|
||||||
Dim SysApps As New SystemRemoteApps
|
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.Name = ShortName
|
||||||
RemoteApp.FullName = FullName
|
RemoteApp.FullName = FullName
|
||||||
|
|
Loading…
Reference in New Issue