Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can I creat ActiveX Dll?

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I have a project with more than 200 files. I want to break it into parts in different Dlls. For doing this I started a new project of type ActiveX Dll, Added forms in it and complied it without making any changes in code.
Then I started new project of type Standard EXE and declared: (filename=test.dll, FunTest is a Sub in a module file in test.dll)

private declare Sub FunTest Lib "test.dll"

Then I called the sub:
call FunTest

This command shows error
"Can't find dll entry point for test.dll"

Tell me :

1- What extra code should I put in my Dll project?
2- How should I declare its functions?
3- How can I show forms of test.dll?

Keep in mind I am very new in Dlls.

Thanks
Faheem
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top