Skip to content

Commit

Permalink
Completion of v1!
Browse files Browse the repository at this point in the history
  • Loading branch information
oscie57 committed Nov 5, 2021
1 parent e0fffd5 commit dd3c4b1
Show file tree
Hide file tree
Showing 21 changed files with 404 additions and 134 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ Wii Fit Reminder/obj/x86/Release/Wii Fit Reminder.vbproj.FileListAbsolute.txt
Wii Fit Reminder/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache
Wii Fit Reminder/obj/x86/Debug/Wii_Fit_Reminder.Remind.resources
Wii Fit Reminder/bin/Release/app.publish/Application Files/Wii Fit Reminder_1_0_0_2/Wii Fit Reminder.exe.deploy
Wii Fit Reminder/bin/Release/app.publish/Application Files/Wii Fit Reminder_1_0_0_3/Icon.ico.deploy
Wii Fit Reminder/bin/Release/app.publish/Application Files/Wii Fit Reminder_1_0_0_3/Wii Fit Reminder.exe.deploy
Wii Fit Reminder/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache
Binary file modified Wii Fit Reminder.suo
Binary file not shown.
Binary file added Wii Fit Reminder/Icon.ico
Binary file not shown.
220 changes: 157 additions & 63 deletions Wii Fit Reminder/Main.Designer.vb

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions Wii Fit Reminder/Main.resx
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@
<metadata name="NotifyMe.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>116, 17</value>
</metadata>
<metadata name="TrayMenu.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>391, 17</value>
</metadata>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="NotifyMe.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
Expand Down Expand Up @@ -1818,8 +1821,8 @@
AMABAADAAQAAwAEAAOADAADgIwAA8+cAAPHHAAD5zwAA+c8AAPyfAAD+PwAA/j8AAP9/AAA=
</value>
</data>
<metadata name="Menu.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>219, 17</value>
<metadata name="Timer1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>302, 17</value>
</metadata>
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
Expand Down
90 changes: 71 additions & 19 deletions Wii Fit Reminder/Main.vb
Original file line number Diff line number Diff line change
Expand Up @@ -2,49 +2,47 @@
Dim type As String
Dim interval As Integer
Dim wait As Boolean
Private Sub Main_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
My.Computer.Audio.Play(My.Resources.plusplus, AudioPlayMode.BackgroundLoop)
Dim radioSelect As String

Private Sub Main_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
e.Cancel = True
My.Computer.Audio.Stop()
Me.Hide()
End Sub


Private Sub CreditButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CreditButton.Click
MessageBox.Show("Created by SecretShopperServicing", "Credit ...")
End Sub

Private Sub ByeButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ByeButton.Click
Remind.Close()
Timer1.Enabled = False
Me.Close()
Application.Exit()
End
End Sub

Private Sub SmallRadio_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles SmallRadio.MouseHover
ToolTip1.SetToolTip(SmallRadio, "soften button")
End Sub

Private Sub Menu_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Menu.Click
Menu.Show()
End Sub

Private Sub Menu_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Menu.DoubleClick
Menu.Show()
End Sub

Private Sub FatRadio_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles FatRadio.CheckedChanged
type = "1 hours"
interval = 1
IntervalBox.Text = type
radioSelect = "fat"
End Sub

Private Sub HumanRadio_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles HumanRadio.CheckedChanged
type = "12 hours"
interval = 12
IntervalBox.Text = type
radioSelect = "human"
End Sub

Private Sub SmallRadio_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SmallRadio.CheckedChanged
type = "24 hours"
interval = 24
IntervalBox.Text = type
While wait = True

End While
radioSelect = "small"
End Sub

Private Sub FatRadio_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles FatRadio.MouseHover
Expand All @@ -53,11 +51,65 @@

Private Sub SaveButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SaveButton.Click
wait = True
'make it go to tray
MessageBox.Show("You have chosen " + radioSelect, "Congratulation !!!!!!!!")
If radioSelect = "fat" Then
MessageBox.Show("FATTY", "FAT")
interval = 3600000
Me.Hide()
ElseIf radioSelect = "human" Then
MessageBox.Show("NICE", "HUMAN")
interval = 43200000
Me.Hide()
ElseIf radioSelect = "small" Then
MessageBox.Show("SOFTEN", "SMALL")
interval = 86400000
Me.Hide()
Else
MessageBox.Show("You Need To Select the Thing You Bitch..........", "You Dum")
Me.Show()
End If
Timer1.Interval = interval
Timer1.Enabled = True
Me.Close()
End Sub

Private Sub DebugButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DebugButton.Click
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Timer1.Enabled = False
Remind.Show()
Timer1.Enabled = True
End Sub

Private Sub NotifyMe_MouseDoubleClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles NotifyMe.MouseDoubleClick
Me.Show()
My.Computer.Audio.Play(My.Resources.plusplus, AudioPlayMode.BackgroundLoop)
End Sub

Private Sub Main_Shown(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Shown
My.Computer.Audio.Play(My.Resources.plusplus, AudioPlayMode.BackgroundLoop)
End Sub

Private Sub ToolStripMenuItem3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripMenuItem3.Click
Application.Exit()
End
End Sub

Private Sub ToolStripMenuItem2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripMenuItem2.Click
Me.Show()
My.Computer.Audio.Play(My.Resources.plusplus, AudioPlayMode.BackgroundLoop)
End Sub

Private Sub PictureBox2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox2.Click
My.Computer.Audio.Play(My.Resources.Helo, AudioPlayMode.WaitToComplete)
My.Computer.Audio.Play(My.Resources.plusplus, AudioPlayMode.BackgroundLoop)
End Sub

Private Sub IntervalBox_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles IntervalBox.MouseClick
My.Computer.Audio.Play(My.Resources.PissedPGM, AudioPlayMode.Background)
MessageBox.Show("That Feature is for REGISTERED User Only ..", "NO TOUCHY")
My.Computer.Audio.Play(My.Resources.plusplus, AudioPlayMode.BackgroundLoop)
End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Remind.Show()
Me.Hide()
End Sub
End Class
4 changes: 2 additions & 2 deletions Wii Fit Reminder/My Project/Application.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Wii Fit Reminder/My Project/Application.myapp
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<MyApplicationData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<MySubMain>true</MySubMain>
<MainForm>Main</MainForm>
<SingleInstance>false</SingleInstance>
<SingleInstance>true</SingleInstance>
<ShutdownMode>0</ShutdownMode>
<EnableVisualStyles>true</EnableVisualStyles>
<AuthenticationMode>0</AuthenticationMode>
<SaveMySettingsOnExit>true</SaveMySettingsOnExit>
<SaveMySettingsOnExit>false</SaveMySettingsOnExit>
</MyApplicationData>
65 changes: 65 additions & 0 deletions Wii Fit Reminder/My Project/Resources.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 23 additions & 2 deletions Wii Fit Reminder/My Project/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,34 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="MusicMaking" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\MusicMaking.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="TheLittleone" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Icon-6.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="AgitatedProgram" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\AgitatedProgram.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="wiiwii" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\wiiwii.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="fitfit" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\fitfit.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="plusplus" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\plusplus.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="wiiwii" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\wiiwii.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
<data name="WiiFrend" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\WiiFrend.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Helo" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Helo.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="PissedPGM" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\PissedPGM.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Yay" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Yay.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
</root>
Loading

0 comments on commit dd3c4b1

Please sign in to comment.