谁能帮个忙?

解决方案 »

  1.   

    这个就是屏蔽ctrl+alt+del键,回去查查。明天再说
      

  2.   

    App.TaskVisible = False
      

  3.   

    ’98管用,2000不管用'模块
    Public Declare Function GetCurrentProcessId Lib “kernel32” () As Long 
    ’获得当前进程ID函数的声明 
    Public Declare Function RegisterServiceProcess Lib “kernel32” (ByVal ProcessId As Long, ByVal ServiceFlags As Long) As Long '窗体
    Private Sub Form_Load() 
       RegisterServiceProcess GetCurrentProcessId, 1 ’ 从系统中取消当前进程 
    end sub
      

  4.   

    补充一下
    Private Sub Form_Unload(Cancel As Integer) 
    RegisterServiceProcess GetCurrentProcessId, 0 ’从系统中取消当前程序的进程 
    End Sub
      

  5.   

    App.TaskVisible = False就可以了