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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

FM20.DLL included unnecessarily ? 3

Status
Not open for further replies.

boggg1

Programmer
Oct 17, 2002
102
EU
In my mad rush to convert my Access-based database analysis tool (in Access Visual Basic) to "full" Visual Basic I made mistakes - well there's a surprise. When I prepare the converted project for packaging I see a reference to FM20.DLL which (if my understanding is right) should only occur within Office applications and should not be distributed (Microsoft licensing restriction) with "full" Visual Basic. I want this application to run stand-alone on Office-less PC's (indeed the very reason why I am converting to Visual Basic). Looking at References and Components I cannot find any object which requires FM20.DLL and I have worked through many of the objects manually using Object Browser and positively identified them as "full" Visual Basic components (not part of FM20.DLL) using the list of properties which are exposed. Unfortunately I have used someone else's (very useful) code within my project (a possible source of the mysterious link) but I have consistantly failed to identify why FM20.DLL is necessary.

Can I identify what part of my system (what control ?) is using FM20.DLL so I can eliminate it ?

Boggg1
[bigglasses]

Can
 
My first thought would be to open the .frm files in notepad and if you see a reference at the top to fm20.dll, something like:

Object = "{0D452EE1-E08F-101A-852E-02608C4D0BB4}#2.0#0"; "FM20.DLL"

Then search for MSForms and you should find the control that is giving you the problem.



"Two strings walk into a bar. The first string says to the bartender: 'Bartender, I'll have a beer. u.5n$x5t?*&4ru!2[sACC~ErJ'. The second string says: 'Pardon my friend, he isn't NULL terminated'."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top