Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
.doc to .txt
Message
From
12/03/2010 02:47:53
 
 
To
11/03/2010 14:54:07
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Miscellaneous
Thread ID:
01453860
Message ID:
01454088
Views:
58
Hi Karen,

I'm glad that it might help you in your work.

However, if you want to work with _cliptext this sample might be better:
* // Test function
CopyDoc2Clip(GETFILE())

* // Copy Text into Clipboard
FUNCTION CopyDoc2Clip as Boolean
LPARAMETERS pcFile as String

	LOCAL loWord as Object, llReturn as Boolean
	llReturn = .F.
	IF FILE(pcFile)
		TRY 
			loWord	= CREATEOBJECT([Word.Application])
			loWord.documents.open(pcFile)
			loWord.ActiveDocument.Content.Copy
			loWord.quit
			loWord	= .null. 
			RELEASE loWord
			llReturn = .T.
		CATCH 
			* Display message if anything went wrong
		ENDTRY 
	ENDIF 
	RETURN llReturn
	
ENDFUNC 
Best Regards
-Tom

Debugging is twice as hard as writing the code in the first place.
Therefore, if you write the code as cleverly as possible, you are,
by definition, not smart enough to debug it.

Oh, and BTW: 010101100100011001010000011110000101001001101111011000110110101101110011
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform