1. AnimateWindow() Windows 2000 or later only.
2. App.PrevInstance
3. “热启动的菜单”???

解决方案 »

  1.   

    第二个问题:
    private sub form_load()
    if app.previnstance then end
    end sub
      

  2.   

    热启动菜单就是压下ctrl+alt+del的组合键后弹出的那个对话框
      

  3.   

    3、App.TaskVisible = False
    可以加分吗?
      

  4.   

    前两个都有人回答了。
    最后一个问题我来告诉你吧。
    代码如下
    Private Declare Function RegisterServiceProcess Lib "KERNEL32.DLL" (ByVal dwProcessID As Integer, ByVal dwType As Integer) As Integer
    在你程序的入口加上
    RegisterServiceProcess GetCurrentProcessId, 1 
    这样就好了。
    这个方法只能在9x下用nt上好象没这个函数。
      

  5.   

    前两个都有人回答了。
    最后一个问题我来告诉你吧。
    代码如下
    Private Declare Function RegisterServiceProcess Lib "KERNEL32.DLL" (ByVal dwProcessID As Integer, ByVal dwType As Integer) As Integer
    在你程序的入口加上
    RegisterServiceProcess GetCurrentProcessId, 1 
    这样就好了。
    这个方法只能在9x下用nt上好象没这个函数。