Skip to content

Commit b5d7c7a

Browse files
author
J. Scott Elblein
committed
Minor bug fixes, tweaks, & screenshots added.
1 parent b1f866b commit b5d7c7a

18 files changed

Lines changed: 65 additions & 24 deletions

GeekDrop Peek/Forms/frmAbout.Designer.vb

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

GeekDrop Peek/Forms/frmMain.Designer.vb

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

GeekDrop Peek/Forms/frmMain.vb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Public Class frmMain
2323
' Change button to "Uninstall"
2424
With btnInstall_Uninstall
2525
.Image = My.Resources.arrow_red
26-
.Text = "Uninstall " & strAppname
26+
.Text = "UNINSTALL " & strAppname.ToUpper
2727
End With
2828

2929
Else
@@ -32,7 +32,7 @@ Public Class frmMain
3232
' Set the button to show the option to install it
3333
With btnInstall_Uninstall
3434
.Image = My.Resources.arrow
35-
.Text = "Install Shell Extension"
35+
.Text = "INSTALL SHELL EXTENSION"
3636
End With
3737

3838
' Alert the user that the shell extension needs to be installed, which afterall, IS what the program is all about.
@@ -70,7 +70,7 @@ Public Class frmMain
7070

7171
Private Sub btnInstall_Uninstall_Click(sender As Object, e As EventArgs) Handles btnInstall_Uninstall.Click
7272

73-
If btnInstall_Uninstall.Text.Contains("Uninstall") Then
73+
If btnInstall_Uninstall.Text.Contains("UNINSTALL") Then
7474
' Uninstall
7575

7676
Try
@@ -184,15 +184,15 @@ Public Class frmMain
184184
' Set all indicators to Installed
185185
With btnInstall_Uninstall
186186
.Image = My.Resources.arrow_red
187-
.Text = "Uninstall Shell Extension"
187+
.Text = "UNINSTALL SHELL EXTENSION"
188188
End With
189189

190190
lblState2.Text = "Installed"
191191
Else
192192
' Set all indicators to Not Installed
193193
With btnInstall_Uninstall
194194
.Image = My.Resources.arrow
195-
.Text = "Install Shell Extension"
195+
.Text = "INSTALL SHELL EXTENSION"
196196
End With
197197

198198
lblState2.Text = "Not Installed"

GeekDrop Peek/GeekDrop Peek.ico

92 KB
Binary file not shown.

GeekDrop Peek/GeekDrop Peek.vbproj

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@
6767
<PropertyGroup>
6868
<ApplicationManifest>My Project\app.manifest</ApplicationManifest>
6969
</PropertyGroup>
70+
<PropertyGroup>
71+
<ApplicationIcon>GeekDrop Peek.ico</ApplicationIcon>
72+
</PropertyGroup>
7073
<ItemGroup>
7174
<Reference Include="System" />
7275
<Reference Include="System.Drawing" />
@@ -189,11 +192,20 @@
189192
</ItemGroup>
190193
<ItemGroup>
191194
<Content Include="Docs\ReadMe.txt" />
192-
<Content Include="Images\Screenshots\about.jpg" />
193-
<Content Include="Images\Screenshots\main.jpg" />
195+
<Content Include="GeekDrop Peek.ico" />
196+
<Content Include="Images\Screenshots\GeekDrop-Peek-About.jpg" />
197+
<Content Include="Images\Screenshots\GeekDrop-Peek-Context-Menu.png" />
198+
<Content Include="Images\Screenshots\GeekDrop-Peek-Example-Output.png" />
199+
<Content Include="Images\Screenshots\GeekDrop-Peek-Install.jpg" />
200+
<Content Include="Images\Screenshots\GeekDrop-Peek-Installation-Step1.jpg" />
201+
<Content Include="Images\Screenshots\GeekDrop-Peek-Installation-Step2.jpg" />
202+
<Content Include="Images\Screenshots\GeekDrop-Peek-Installation-Step3.jpg" />
203+
<Content Include="Images\Screenshots\GeekDrop-Peek-Uninstall.jpg" />
204+
<Content Include="Images\Screenshots\GeekDrop-Peek-Uninstallation.jpg" />
194205
<None Include="Images\angel.png" />
195206
<None Include="Images\btn_donate_LG.gif" />
196207
</ItemGroup>
208+
<ItemGroup />
197209
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
198210
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
199211
Other similar extension points exist, see Microsoft.Common.targets.
File renamed without changes.
36 KB
Loading
157 KB
Loading
22.8 KB
Loading
27.6 KB
Loading

0 commit comments

Comments
 (0)