什么注册功能,注册表?  还是Ole SERVER?

解决方案 »

  1.   

    我想在程序中加入一个URL链接,使用户链接到我的主页上请问如何做。
      

  2.   

    可以用API,如下:
    Public Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
    Public Const SW_SHOWNORMAL = 1    ShellExecute Me.hwnd, "open", "http://xxxx", "", "", SW_SHOWNORMAL
      

  3.   

    在你网址的label的 click事件代码中写:
    shell "start url"
    (url 是你想要的网址)