Changes for issue 20 and tooltip changes

This commit is contained in:
Michael J. Seiferling
2015-12-04 11:57:54 -06:00
parent a27802fea7
commit 1e68728930
5 changed files with 46 additions and 12 deletions
+8 -3
View File
@@ -242,14 +242,19 @@ Public Class frmIncludeExclude
treFiles.Select()
If Not treFiles.SelectedNode Is Nothing Then treFiles.SelectedNode.Expand()
If txtRootFolder.Text = String.Empty Then
ttWarning.ToolTipTitle = "Notice"
ttWarning.Show("The saved game folder could not be determined or does not exist.", txtRootFolder, 6000)
ttWarning.ToolTipTitle = "Saved Game Explorer"
ttWarning.SetToolTip(treFiles, "Set the saved game folder using the button above.")
ttWarning.SetToolTip(txtRootFolder, "The saved game folder could not be determined or does not exist.")
ttWarning.SetToolTip(btnBrowse, "Click here to set the saved game folder.")
End If
End Sub
Private Sub btnBrowse_Click(sender As Object, e As EventArgs) Handles btnBrowse.Click
RootPathBrowse()
If txtRootFolder.Text <> String.Empty Then BuildTrunk()
If txtRootFolder.Text <> String.Empty Then
BuildTrunk()
ttWarning.RemoveAll()
End If
treFiles.Select()
If Not treFiles.SelectedNode Is Nothing Then treFiles.SelectedNode.Expand()
End Sub