P.T.A.M. Administrator

Joined: 08 Oct 2003 Posts: 752 Location: Greece
|
Posted: Oct 10th, 2003 08:08 AM Post subject: Show/Hide In Ctrl-Alt-Del list |
|
|
Add two command buttons (Command1 , Command2) to your form and add the following code :
| Code: | Private Sub Command1_Click()
App.TaskVisible = False
End Sub
Private Sub Command2_Click()
App.TaskVisible = True
End Sub
Private Sub Form_Load()
Command1.Caption = "hide"
Command2.Caption = "show"
End Sub |
_________________ No one is completely useless. They can at least be an example of what to avoid. |
|