chinkybubbles
Programmer
What are the commands to declare and call a DLL function? Something like these VB commands:
Private Declare Function x Lib "x.dll" () As String
Private Sub
Dim s as String
s = x()
End
Thanks.
Private Declare Function x Lib "x.dll" () As String
Private Sub
Dim s as String
s = x()
End
Thanks.