Code Comments

Programming Forum and web based access to our favorite programming groups.
For Programmers: Free Programming Magazines | New: Database administration forum
Registration is free! Edit your profileCalendarFind other membersFrequently Asked QuestionsSearch -> 
Post New Thread











Thread
Author

Find text in Word document
Hi all,
I try to find keywords in a Word document without opening the doc.
I use the following code

Open sFile For Binary As iFile
sBuffer = Space$(LOF(iFile))
Get #iFile, , sBuffer
Close iFile

Then I search with
If InStr(1, sBuffer, sKeys(j), vbTextCompare) > 0 Then ...

However there are some keywords I cannot find unless I do
sBuffer = StrConv(sBuffer, vbFromUnicode)
others I can only find if there is no conversion of the text

My workaround now is
sTemp = sBuffer
' Convert
sBuffer = StrConv(sBuffer, vbFromUnicode)
' Put together
sBuffer = sBuffer & sTemp

Is this the only way to do the search or am I missing something here
Thanks
Woolf




Report this thread to moderator Post Follow-up to this message
Old Post
Woolf
09-28-04 08:55 PM


Sponsored Links




Last Thread Next Thread Next
Search this forum -> 
Post New Thread

Visual Basic archive

Show a Printable Version Send to friend Email This Page to Someone! subscribe to this thread Receive updates to this thread
Computer Consultants
Programming Jobs
Visual Basic Controls
SQL Server Programming
Webservices
Java Security
Visual Studio
C# Programming
Visual J++
Software engineering
Open source Software
Perl Programming
PHP Programming
ASP Programming
ASP .NET Programming
Visual Basic Programming
Windows Scripting Host
Java Programming
Java Help
Java Beans
VBScript
Cobol
MAC Applications
Unix Programming
Forum Jump:
All times are GMT. The time now is 05:30 PM.

 
Free MCSE Braindumps | Real Estate Topics

Programming forum archive

Copyrights CodeComments.com 2004 - 2006

Powered by vBulletin Copyright 2000-2006 Jelsoft Enterprises Limited.