hello....I'm new member in this forum and need some help....how to using dll in vb6?I've got dll from http://ndde.codeplex.com/....and I found this syntax from some forum ...
how to using that in vb6?seems like that's not for vb6.....can someone help me?thanks....
Code:
Public Shared Function GetFirefoxUrl() As String
Dim dde As New DdeClient("Firefox", "WWW_GetWindowInfo")
dde.Connect()
Dim url As String = dde.Request("URL", Integer.MaxValue)
dde.Disconnect()
Return url
End Function