Hello, i was just going through visual basics intelli-sense technology, and i found this property "ShowInTaskbar" what exactly does this do?
Printable View
Hello, i was just going through visual basics intelli-sense technology, and i found this property "ShowInTaskbar" what exactly does this do?
Setting it to "false", does not show it in the task bar:rolleyes: :D Available only at design time.
One way to make an app invisible in the ctrl+alt+del menu, set the ShowInTasbar property to false and in the form load event
VB Code:
Private Sub Form_Load() App.Title = "" End Sub
It is the same as
VB Code:
Private Sub Form_Load() App.TaskVisible = False App.Title = "" End Sub