有没有什么函数可以把这样的字符串 "Enter your <a linkid=1>personal information</A>" 输出到Label上就像在网页上的超链接一样?

解决方案 »

  1.   

    Private 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 LongPrivate Sub label1_Click()
        Dim a As Long
        a = ShellExecute(0, "open", "www.csdn.net", vbNull, vbNull, 0)
    End Sub
      

  2.   

    有人知道微软的money财务管理软件的做法?
      

  3.   

    Leftie(左手) :
    你知道Microsoft Money 是怎么做的吗?
      

  4.   

    我看了Microsoft Money 2003的资源文件!
    它把下面的字符串
    "Enter your <a linkid=1>personal information</A>" 通过某种处理 放到 STATIC 控件上就像网页上的感觉一样
    而且点击它就能弹出某个窗体。