Link to home
Start Free TrialLog in
Avatar of bokikg
bokikg

asked on

VB DLLs and VB programs

How i can call (access to) any dll made with VB 6.0 from my program also made with VB 6.0? For example, i write any dll for geting mp3 information from specify file. Now, how i can call that dll - input is specify file - from my program and then back me any information (mp3 tags and etc.).
ASKER CERTIFIED SOLUTION
Avatar of ScottyMac
ScottyMac

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of TheAnswerMan
TheAnswerMan

Create your DLL with appropriate
public variables, or methods.

Go to Menu Project REferences and select your DLL.

Then in your Code.
Dim Poo as New MyClass
Poo.FileName = App.path & "\myMpeg.mpg"
poo.Calculate
msgbox poo.LengthInSecs