vb.net - Create a program to run from the system tray -


i create program run bottom right system tray of windows.

but don't know start from?

can tell \ show me , examples or commands use \ research ?

i review answers note miss icon.

private sub form1_resize(byval sender object, byval e system.eventargs) handles me.resize     if me.windowstate = formwindowstate.minimized         notifyicon1.visible = true         notifyicon1.icon = systemicons.application         notifyicon1.balloontipicon = tooltipicon.info         notifyicon1.balloontiptitle = "verificador corriendo"         notifyicon1.balloontiptext = "verificador corriendo"         notifyicon1.showballoontip(50000)         'me.hide()         showintaskbar = false     end if end sub  private sub notifyicon1_doubleclick(byval sender object, byval e system.eventargs) handles notifyicon1.doubleclick     'me.show()     showintaskbar = true     me.windowstate = formwindowstate.normal     notifyicon1.visible = false end sub 

Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -