Need Help
08-20-2002, 09:01 AM
I tried running my application (after compile) on another computer to see if everything was O.K. and it all worked fine except for two different forms that gave me an Error 713, then said that I was missing
MSSTDFMT.DLL
Does anyone know what that is and how to fix it.
Thanks
I looked in the setup directory ( I hope that is the notepad called setup ) and I know that it is supposed to be there.
Need Help
08-20-2002, 09:14 AM
I checked the folder holding everything and it is there, so what could be causing the problem
it obviously means that the pc you tried running it on doesnt have that file. what you should do is at the minimum use the package & deployment wizard to make a setup for you... it includes all required files....
Need Help
08-20-2002, 09:19 AM
I did that and now I have this new problem
Goofy
08-20-2002, 02:50 PM
Try this:
On the computer you wrote the code, find MSSTDFMT.DLL.
Then, copy that file on the other computer you want to run the app, in windows\system32.
Then, run "regsvr32 MSSTDFMT.DLL"
Need Help
08-21-2002, 06:50 AM
I am just making sure that I do this correctly.
Go to toolbar and click start
Go to Run
When Run's "input box" appears, put "regsvr32 MSSTDFMT.DLL"
Click OK
Thanks for the help
Or do I have to go to DOS and write the whole c:\system32 regsvr32 MSSTDFMT.DLL
Thinker
08-21-2002, 07:37 AM
To do it correctly, you should open a DOS box and navigate to the
folder where the DLL is located, then regsvr32 there.
Of course, the correct answer to the problem is to package an
install rather than just copying your app to another computer.
Need Help
08-21-2002, 09:27 AM
Thanks for all the help
I finally have it working (Although I am sure another problem will show up )