mirror of
				https://github.com/kimmknight/remoteapptool.git
				synced 2025-11-03 22:11:56 +00:00 
			
		
		
		
	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:
		@@ -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
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user