From 2b29b785e0be2a0b2f6c5558865a4a2ba197ea51 Mon Sep 17 00:00:00 2001 From: JackCarterSmith Date: Sun, 15 Oct 2017 12:23:13 +0200 Subject: [PATCH] Updated version display on splash and about screen --- ISEN-Repair Inventory Manager/About.vb | 2 +- ISEN-Repair Inventory Manager/SplashScreen.vb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ISEN-Repair Inventory Manager/About.vb b/ISEN-Repair Inventory Manager/About.vb index 0fcfe28..a783039 100644 --- a/ISEN-Repair Inventory Manager/About.vb +++ b/ISEN-Repair Inventory Manager/About.vb @@ -13,7 +13,7 @@ ' TODO: personnalisez les informations d'assembly de l'application dans le volet "Application" de la ' boîte de dialogue Propriétés du projet (sous le menu "Projet"). Me.LabelProductName.Text = My.Application.Info.ProductName - Me.LabelVersion.Text = String.Format("Version {0}.{1}", My.Application.Info.Version.Major, My.Application.Info.Version.Minor) + Me.LabelVersion.Text = String.Format("Version {0}", My.Application.Info.Version) Me.LabelCopyright.Text = My.Application.Info.Copyright Me.LabelCompanyName.Text = My.Application.Info.CompanyName Me.TextBoxDescription.Text = My.Application.Info.Description diff --git a/ISEN-Repair Inventory Manager/SplashScreen.vb b/ISEN-Repair Inventory Manager/SplashScreen.vb index 6ceaf67..13f379f 100644 --- a/ISEN-Repair Inventory Manager/SplashScreen.vb +++ b/ISEN-Repair Inventory Manager/SplashScreen.vb @@ -20,7 +20,7 @@ ' Version.Text = System.String.Format(Version.Text, My.Application.Info.Version.Major, My.Application.Info.Version.Minor) - Version.Text = String.Format("Version {0}", My.Application.Info.Version) + Version.Text = String.Format("Version {0}.{1}", My.Application.Info.Version.Major, My.Application.Info.Version.Minor) 'Informations de copyright Copyright.Text = My.Application.Info.Copyright