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!

WORD NOT SAVING

Status
Not open for further replies.

webmonger

Programmer
Mar 13, 2004
66
0
0
AU
I create a document in my app which can either be invible or visible prior to a save. One user in Germany has stated that the document is not saved anywhere on his PC both to the default 'My Documents' or to a named folder path.

Has anyone familiar with German windows any ideas on this?

I have used
Code:
loWord.ActiveDocument.SAVEAS(savefile, 0)  &&0 is Word Doc FileFormat:=wdFormatText
 
Webmonger,

I'd be surprised if this was an issue specific to German Windows (although I might be wrong). I think it's more likely to do with the user's settings, such as the setting for the default document directory.

Are you specifying a path as part of the document name? If not, the document will be saved in whichever folder the user specified in Tools / Options, which is not necessarily My Documents.

Mike


Mike Lewis
Edinburgh, Scotland

My Visual Foxpro web site: My Crystal Reports web site:
 
Thanks Mike

I'd forgotten about the path option - obviously another question to ask.

Savefile variable is either

Code:
lpath = SelDirDlg(cDialogTitle, , )
		savefile = lpath + '\'+'ExhibitCatalogue.doc'
		cMessage =  'Document completed and saved in your folder .'

	ELSE

	
		savefile = 'ExhibitCatalogue.doc'
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top