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

MSSTDFMT.DLL Class Registery problem 1

Status
Not open for further replies.

penahill

Programmer
Nov 5, 2001
9
0
0
US
I am having problems with a Class not registered error on my VB6 app. The weird think is that this is only happening on Toshiba lap-tops. It has failed on 3 of them using either Windows 95 or Windows 2000. The same application will work fine on any other make of system. The Toshibas we are using are Satellite Pro 440CDT.

The same application worked fine on the Toshiba lap-tops prior to the my latest changes.

I would appreciate any help I can get on my problem.

Thanks, Paul
 
I ran into that problem a while back. Try this:

1. Make sure the dll (MSSTDFMT.DLL) is on the system that you need to run your application on.

2. Run this shell command from within your app that calls regsvr32.exe followed by the dll name, so:

Code:
shell "C:\winnt\system32\regsvr32.exe MSSTDFMT.DLL" [\code]

If you're putting on a Win 98 or Win 95 machine, just substitute the path as needed.
This will register the dll so that your system will recognize it.  

-Edd
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top