It works, but now it's just notepad with a green color
About those menu options, that's a good idea
You can make it Radio Checked by setting RadioCheck on True, and after that use this code to toggle between checked and unchecked. And to enable or disable those buttons
code:
Private Sub mnu_klikkert_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mnu_klikkert.Click
If (mnu_klikkert.Checked = True) Then
mnu_klikkert.Checked = False
Else
mnu_klikkert.Checked = True
End If
End Sub
About not showing up in the taskbar so only in systray set this
code:
Me.ShowInTaskbar = False
So when you minimize it, you set this and it will minimize to systray.
If you do this make sure you can open the program again by doubleclicking the systray icon or add Open to the systray menu or both
Also it's using 21 MB of memory
, that's A LOT!, but I don't think you can do much about it