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
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