1)怎么 自定义右键
2)怎么 设计启动画面,像 foxmial等软件那样??没分了 分长的慢,水平差  大家帮忙啊!!

解决方案 »

  1.   

    2)
    api函数:setwindowpos,使启动窗体处于最顶层。然后用timer控件判断显示时间。
      

  2.   

    Public Declare Function SetWindowPos Lib "user32" (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal x As Long, ByVal y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Longsub form_load()
       SetWindowPos me.hwnd, -1, 0, 0, 0, 0, 3
    end subsub timer1_timer()
       formm2.show
       unload me
    end sub