Skip to content

Commit c670490

Browse files
committed
Added an About dialog
The about dialog shows: - Application assembly info - Link to application source Fixes #3
1 parent b8b5f77 commit c670490

File tree

8 files changed

+3234
-16
lines changed

8 files changed

+3234
-16
lines changed

ActiveWindowLogger/ActiveWindowLogger.vbproj

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,12 @@
8686
<Import Include="System.Xml.Linq" />
8787
</ItemGroup>
8888
<ItemGroup>
89+
<Compile Include="frmAbout.Designer.vb">
90+
<DependentUpon>frmAbout.vb</DependentUpon>
91+
</Compile>
92+
<Compile Include="frmAbout.vb">
93+
<SubType>Form</SubType>
94+
</Compile>
8995
<Compile Include="frmMain.vb">
9096
<SubType>Form</SubType>
9197
</Compile>
@@ -110,6 +116,10 @@
110116
</Compile>
111117
</ItemGroup>
112118
<ItemGroup>
119+
<EmbeddedResource Include="frmAbout.resx">
120+
<DependentUpon>frmAbout.vb</DependentUpon>
121+
<SubType>Designer</SubType>
122+
</EmbeddedResource>
113123
<EmbeddedResource Include="frmMain.resx">
114124
<DependentUpon>frmMain.vb</DependentUpon>
115125
<SubType>Designer</SubType>

ActiveWindowLogger/My Project/AssemblyInfo.vb

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
Imports System
1+
Imports System.Resources
2+
3+
Imports System
24
Imports System.Reflection
35
Imports System.Runtime.InteropServices
46

@@ -8,14 +10,14 @@ Imports System.Runtime.InteropServices
810

911
' Review the values of the assembly attributes
1012

11-
<Assembly: AssemblyTitle("WindowsApplication1")>
12-
<Assembly: AssemblyDescription("")>
13-
<Assembly: AssemblyCompany("NVIDIA")>
14-
<Assembly: AssemblyProduct("WindowsApplication1")>
15-
<Assembly: AssemblyCopyright("Copyright © NVIDIA 2015")>
16-
<Assembly: AssemblyTrademark("")>
13+
<Assembly: AssemblyTitle("Active Window Logger")>
14+
<Assembly: AssemblyDescription("Smartly log the active foreground window of the system to transparently capture usage analytics.")>
15+
<Assembly: AssemblyCompany("CVS Game Studios")>
16+
<Assembly: AssemblyProduct("Active Window Logger")>
17+
<Assembly: AssemblyCopyright("CC BY-SA 4.0 - 2015")>
18+
<Assembly: AssemblyTrademark("Active Window Logger")>
1719

18-
<Assembly: ComVisible(False)>
20+
<Assembly: ComVisible(False)>
1921

2022
'The following GUID is for the ID of the typelib if this project is exposed to COM
2123
<Assembly: Guid("78626270-da34-490b-aff6-667fdc88da5d")>
@@ -33,3 +35,5 @@ Imports System.Runtime.InteropServices
3335

3436
<Assembly: AssemblyVersion("1.0.0.0")>
3537
<Assembly: AssemblyFileVersion("1.0.0.0")>
38+
39+
<Assembly: NeutralResourcesLanguageAttribute("en-GB")>

ActiveWindowLogger/frmAbout.Designer.vb

Lines changed: 176 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)