473,503 Members | 1,726 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Word Table to Access

Hi, I was wondering if expert can give me some lite to convert my word table
into access database.

Note: within each cell of my word table(s), some has multi-line data in it.
In addition, there is one row containing picture(s) as well.

So far, what I did is doing it manually for each word docs I have.

Select Table
Convert Table to Text(I use ^ character for delimiter)
Save it to a text file(with char substitution, and CR/LF)
Then, Load them to Access DB.

Is there an easier way to do this?
Nov 12 '05 #1
41 6055
I'd love to see it done easily in windows. What you can do is to save your
word doc to text with delimiter and let perl handle the parsing.

Opensource to the rescue!

"Ruby Tuesday" <ru*********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Hi, I was wondering if expert can give me some lite to convert my word table into access database.

Note: within each cell of my word table(s), some has multi-line data in it. In addition, there is one row containing picture(s) as well.

So far, what I did is doing it manually for each word docs I have.

Select Table
Convert Table to Text(I use ^ character for delimiter)
Save it to a text file(with char substitution, and CR/LF)
Then, Load them to Access DB.

Is there an easier way to do this?

Nov 12 '05 #2
Hi Ruby,

The easiest way to do this is to copy the table to Excel, then either
save the Excel workbook and import it into Access or copy/paste from
Excel to Access.

--
Please post all follow-up questions to the newsgroup. Requests for
assistance by email can not be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/
"Ruby Tuesday" <ru*********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Hi, I was wondering if expert can give me some lite to convert my word table into access database.

Note: within each cell of my word table(s), some has multi-line data in it. In addition, there is one row containing picture(s) as well.

So far, what I did is doing it manually for each word docs I have.

Select Table
Convert Table to Text(I use ^ character for delimiter)
Save it to a text file(with char substitution, and CR/LF)
Then, Load them to Access DB.

Is there an easier way to do this?

Nov 12 '05 #3
I think the only way to do this project is manually.

www.klh-tech.com
KLH Technology Solutions
Nov 12 '05 #4
I tried that venue but no go. The problem is with the multi-line data. Excel
treat each line as a new row. I figure that Excel does not understant CR/LF
character. Perhap you can cheat that but how? Thanks

"Beth Melton" <bm*****@NoSpam4Memvps.org> wrote in message
news:uB**************@TK2MSFTNGP12.phx.gbl...
Hi Ruby,

The easiest way to do this is to copy the table to Excel, then either
save the Excel workbook and import it into Access or copy/paste from
Excel to Access.

--
Please post all follow-up questions to the newsgroup. Requests for
assistance by email can not be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/
"Ruby Tuesday" <ru*********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Hi, I was wondering if expert can give me some lite to convert my

word table
into access database.

Note: within each cell of my word table(s), some has multi-line

data in it.
In addition, there is one row containing picture(s) as well.

So far, what I did is doing it manually for each word docs I have.

Select Table
Convert Table to Text(I use ^ character for delimiter)
Save it to a text file(with char substitution, and CR/LF)
Then, Load them to Access DB.

Is there an easier way to do this?


Nov 12 '05 #5
"Ruby Tuesday" <ru*********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Hi, I was wondering if expert can give me some lite to convert my word table into access database.

Note: within each cell of my word table(s), some has multi-line data in it. In addition, there is one row containing picture(s) as well.

So far, what I did is doing it manually for each word docs I have.

Select Table
Convert Table to Text(I use ^ character for delimiter)
Save it to a text file(with char substitution, and CR/LF)
Then, Load them to Access DB.

Is there an easier way to do this?

If you want to write code to do it, here is an example that just creates a
message box for each cell in the table showing the value. This could be
converted to create a record in Access and you could adapt it to do this for
a number of documents, each with 1 or more tables.
Is this a route you might pursue?
Private Sub cmdExtract_Click()

On Error GoTo Err_Handler

Dim strPath As String
Dim strValue As String
Dim wdApp As Object 'Word.Application
Dim wdDoc As Object 'Word.Document
Dim wdTbl As Object 'Word.Table
Dim wdRow As Object 'Word.Row
Dim wdCol As Object 'Word.Column
Dim wdCell As Object 'Word.Cell

strPath = "C:\Example.doc"

Set wdApp = CreateObject("Word.Application")

Set wdDoc = wdApp.Documents.Open(strPath)

If wdDoc.Tables.Count > 0 Then

Set wdTbl = wdDoc.Tables(1)

For Each wdRow In wdTbl.Rows

For Each wdCol In wdTbl.Columns

strValue = wdTbl.Cell(wdRow.Index, wdCol.Index).Range.Text

If Len(strValue) > 2 Then
strValue = Left$(strValue, Len(strValue) - 2)
Else
strValue = ""
End If

MsgBox strValue

Next wdCol

Next wdRow

End If

MsgBox "Done", vbInformation

Exit_Handler:

On Error Resume Next

If Not wdDoc Is Nothing Then
wdDoc.Close
Set wdDoc = Nothing
End If

If Not wdApp Is Nothing Then
wdApp.Quit
Set wdApp = Nothing
End If

Exit Sub

Err_Handler:
MsgBox Err.Description, vbExclamation, "Error No: " & Err.Number
Resume Exit_Handler

End Sub


Nov 12 '05 #6
You could use Find/Replace in Word table:

Find: ^p
Replace: @@@ (or a character you are not using)

In Excel use Find/Replace:

Find: @@@
Replace: press <Alt 010> (Use the 10-key pad for this. Note that you
will not see anything)

Note that you may need to restart Excel to clear the search string in
the Replace text box.

--
Please post all follow-up questions to the newsgroup. Requests for
assistance by email can not be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/
"Ruby Tuesday" <ru*********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
I tried that venue but no go. The problem is with the multi-line data. Excel treat each line as a new row. I figure that Excel does not understant CR/LF character. Perhap you can cheat that but how? Thanks

"Beth Melton" <bm*****@NoSpam4Memvps.org> wrote in message
news:uB**************@TK2MSFTNGP12.phx.gbl...
Hi Ruby,

The easiest way to do this is to copy the table to Excel, then either save the Excel workbook and import it into Access or copy/paste from Excel to Access.

--
Please post all follow-up questions to the newsgroup. Requests for
assistance by email can not be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/
"Ruby Tuesday" <ru*********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Hi, I was wondering if expert can give me some lite to convert my
word table
into access database.

Note: within each cell of my word table(s), some has multi-line

data in it.
In addition, there is one row containing picture(s) as well.

So far, what I did is doing it manually for each word docs I

have.
Select Table
Convert Table to Text(I use ^ character for delimiter)
Save it to a text file(with char substitution, and CR/LF)
Then, Load them to Access DB.

Is there an easier way to do this?



Nov 12 '05 #7
"Ruby Tuesday" <ru*********@yahoo.com> wrote in message news:<c1*************@ID-205437.news.uni-berlin.de>...
Hi, I was wondering if expert can give me some lite to convert my word table
into access database.

Note: within each cell of my word table(s), some has multi-line data in it.
In addition, there is one row containing picture(s) as well.

So far, what I did is doing it manually for each word docs I have.

Select Table
Convert Table to Text(I use ^ character for delimiter)
Save it to a text file(with char substitution, and CR/LF)
Then, Load them to Access DB.

Is there an easier way to do this?


Don't think so, unless you use code to do the conversions and then
imports for you. If they're all in the same directory, you could use
the Dir function to loop through the contents of the directory,
process the Word file to create the importable file, and then after
those are done, import them into Access... but that's all I can think
of.
Nov 12 '05 #8
Can I do it programatically? I have about 100 word files with at least 3
tables inside them.

I don't know if the following is possible. Since we can save those word docs
into an html documents, can we parse the html docs and extract the data?
They are pretty structured <table>... <tr>...<td> ... </td>..</tr>...<table>
and some other formatting tags such as <b></b> etc...
Wish there are tools to do that.

Thanks

"Beth Melton" <bm*****@NoSpam4Memvps.org> wrote in message
news:O1**************@TK2MSFTNGP12.phx.gbl...
You could use Find/Replace in Word table:

Find: ^p
Replace: @@@ (or a character you are not using)

In Excel use Find/Replace:

Find: @@@
Replace: press <Alt 010> (Use the 10-key pad for this. Note that you
will not see anything)

Note that you may need to restart Excel to clear the search string in
the Replace text box.

--
Please post all follow-up questions to the newsgroup. Requests for
assistance by email can not be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/
"Ruby Tuesday" <ru*********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
I tried that venue but no go. The problem is with the multi-line

data. Excel
treat each line as a new row. I figure that Excel does not

understant CR/LF
character. Perhap you can cheat that but how? Thanks

"Beth Melton" <bm*****@NoSpam4Memvps.org> wrote in message
news:uB**************@TK2MSFTNGP12.phx.gbl...
Hi Ruby,

The easiest way to do this is to copy the table to Excel, then either save the Excel workbook and import it into Access or copy/paste from Excel to Access.

--
Please post all follow-up questions to the newsgroup. Requests for
assistance by email can not be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/
"Ruby Tuesday" <ru*********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
> Hi, I was wondering if expert can give me some lite to convert my word table
> into access database.
>
> Note: within each cell of my word table(s), some has multi-line
data in it.
> In addition, there is one row containing picture(s) as well.
>
> So far, what I did is doing it manually for each word docs I have. >
> Select Table
> Convert Table to Text(I use ^ character for delimiter)
> Save it to a text file(with char substitution, and CR/LF)
> Then, Load them to Access DB.
>
> Is there an easier way to do this?
>
>



Nov 12 '05 #9
Thanks Fletcher.

I might be able to follow your VBscript(is it? or is it a VB program that
need to be compiled?) program but will this program work for multi-line
cells? As I mentioned in my earlier message, I can't directly cut-and-paste
the table into the excel sheet cause excel treat each line of the multi-line
cell as another row of data. Somehow excel do not know how to handle cell
data with CR/LF character in it. Can we escape them?

Thanks again
"Fletcher Arnold" <fl****@home.com> wrote in message
news:c1**********@hercules.btinternet.com...
"Ruby Tuesday" <ru*********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Hi, I was wondering if expert can give me some lite to convert my word table
into access database.

Note: within each cell of my word table(s), some has multi-line data in

it.
In addition, there is one row containing picture(s) as well.

So far, what I did is doing it manually for each word docs I have.

Select Table
Convert Table to Text(I use ^ character for delimiter)
Save it to a text file(with char substitution, and CR/LF)
Then, Load them to Access DB.

Is there an easier way to do this?

If you want to write code to do it, here is an example that just creates a
message box for each cell in the table showing the value. This could be
converted to create a record in Access and you could adapt it to do this

for a number of documents, each with 1 or more tables.
Is this a route you might pursue?
Private Sub cmdExtract_Click()

On Error GoTo Err_Handler

Dim strPath As String
Dim strValue As String
Dim wdApp As Object 'Word.Application
Dim wdDoc As Object 'Word.Document
Dim wdTbl As Object 'Word.Table
Dim wdRow As Object 'Word.Row
Dim wdCol As Object 'Word.Column
Dim wdCell As Object 'Word.Cell

strPath = "C:\Example.doc"

Set wdApp = CreateObject("Word.Application")

Set wdDoc = wdApp.Documents.Open(strPath)

If wdDoc.Tables.Count > 0 Then

Set wdTbl = wdDoc.Tables(1)

For Each wdRow In wdTbl.Rows

For Each wdCol In wdTbl.Columns

strValue = wdTbl.Cell(wdRow.Index, wdCol.Index).Range.Text

If Len(strValue) > 2 Then
strValue = Left$(strValue, Len(strValue) - 2)
Else
strValue = ""
End If

MsgBox strValue

Next wdCol

Next wdRow

End If

MsgBox "Done", vbInformation

Exit_Handler:

On Error Resume Next

If Not wdDoc Is Nothing Then
wdDoc.Close
Set wdDoc = Nothing
End If

If Not wdApp Is Nothing Then
wdApp.Quit
Set wdApp = Nothing
End If

Exit Sub

Err_Handler:
MsgBox Err.Description, vbExclamation, "Error No: " & Err.Number
Resume Exit_Handler

End Sub


Nov 12 '05 #10
"Ruby Tuesday" <ru**********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Thanks Fletcher.

I might be able to follow your VBscript(is it? or is it a VB program that
need to be compiled?) program but will this program work for multi-line
cells? As I mentioned in my earlier message, I can't directly cut-and-paste the table into the excel sheet cause excel treat each line of the multi-line cell as another row of data. Somehow excel do not know how to handle cell
data with CR/LF character in it. Can we escape them?

Thanks again

The code was actually written in Access with a form and a button named
"cmdExtract" and you could just cut and paste the code. With very minor
modifications you could cut and paste this code into a normal text file and
save it as Whatever.vbs (vbs = visual basic script) and it would run.
Perhaps better still would be to re-write the file as an hta (html
application) which gives you a nice browser-based interface to work with but
is still simply plain text files.

I don't know if newgroup participants would want to write a complete html
application for nothing, but it would not take an experienced programmer
long. You could post some more specific details about the transformation
you need, eg:

Cell A1: "Name"
Cell B1: "Address"
Cell A2: "Peter Smith"
Cell B2: "85 Station Road"
"Newbury"
"Berkshire"
"United Kingdom"
How would this translate into your Access table. What tables and field
names would you have? I see elsewhere in the thread you will have up to 3
tables per doc.
Fletcher
Nov 12 '05 #11
Thanks Fletcher.

I have at most 3 tables per word documents. And for sure, I'd love to
understand the process instead of someone else writing the whole thing.

As I mentiond I have the following data in a word table(s)

Field1: Name text(40)
Field2: <image> jpeg
Field3: Desc memo - contain CR/LF
Field4: Note memo - contain CR/LF

e.g:

Field1 Field 2 Field3 Field4
Exa One <image1> A candy in a glass On top of
refrigerator
jar.
next to the cabinet
Exa Tw0 <image2> Car with broken In the garage by
windshield and flat John
John's garden
tire.
in Sarasota

Visually, in the word table, I have 3 rows, and 4 coloumns(12 cells). The
first row is the label, and the 2nd & 3rd row are the data. If you notice,
in field3 and field 4, the cell contain a multi-line(it has CR/LF at the end
of each line-- it is not the wrap around!).

Therefore, when I cut and paste them in the excel table, I end up having
6 ROWS, and 4COLS(that is 24 cells). It treat each line of field3&field4 as
another record.

My question is, how do you write a vba in word(or access or excel) to
extract those data so I will represent the correct one. That is it should
result that I have 2 rows, 4colums of data. Do we have to somewhat escaped
CR/LF on each cells?

Thanks again.

"Fletcher Arnold" <fl****@home.com> wrote in message
news:c1**********@sparta.btinternet.com...
"Ruby Tuesday" <ru**********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Thanks Fletcher.

I might be able to follow your VBscript(is it? or is it a VB program that need to be compiled?) program but will this program work for multi-line
cells? As I mentioned in my earlier message, I can't directly cut-and-paste
the table into the excel sheet cause excel treat each line of the

multi-line
cell as another row of data. Somehow excel do not know how to handle cell data with CR/LF character in it. Can we escape them?

Thanks again

The code was actually written in Access with a form and a button named
"cmdExtract" and you could just cut and paste the code. With very minor
modifications you could cut and paste this code into a normal text file

and save it as Whatever.vbs (vbs = visual basic script) and it would run.
Perhaps better still would be to re-write the file as an hta (html
application) which gives you a nice browser-based interface to work with but is still simply plain text files.

I don't know if newgroup participants would want to write a complete html
application for nothing, but it would not take an experienced programmer
long. You could post some more specific details about the transformation
you need, eg:

Cell A1: "Name"
Cell B1: "Address"
Cell A2: "Peter Smith"
Cell B2: "85 Station Road"
"Newbury"
"Berkshire"
"United Kingdom"
How would this translate into your Access table. What tables and field
names would you have? I see elsewhere in the thread you will have up to 3
tables per doc.
Fletcher

Nov 12 '05 #12
Fletcher,

Your code to extract data from Word tables works great. Do you also
have code to extract data from a table in the Header of a Word document?

Thanks,
Norman Scheinin
no***************@boeing.com

Fletcher Arnold wrote:

"Ruby Tuesday" <ru**********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Thanks Fletcher.

I might be able to follow your VBscript(is it? or is it a VB program that
need to be compiled?) program but will this program work for multi-line
cells? As I mentioned in my earlier message, I can't directly

cut-and-paste
the table into the excel sheet cause excel treat each line of the

multi-line
cell as another row of data. Somehow excel do not know how to handle cell
data with CR/LF character in it. Can we escape them?

Thanks again


The code was actually written in Access with a form and a button named
"cmdExtract" and you could just cut and paste the code. With very minor
modifications you could cut and paste this code into a normal text file and
save it as Whatever.vbs (vbs = visual basic script) and it would run.
Perhaps better still would be to re-write the file as an hta (html
application) which gives you a nice browser-based interface to work with but
is still simply plain text files.

I don't know if newgroup participants would want to write a complete html
application for nothing, but it would not take an experienced programmer
long. You could post some more specific details about the transformation
you need, eg:

Cell A1: "Name"
Cell B1: "Address"
Cell A2: "Peter Smith"
Cell B2: "85 Station Road"
"Newbury"
"Berkshire"
"United Kingdom"

How would this translate into your Access table. What tables and field
names would you have? I see elsewhere in the thread you will have up to 3
tables per doc.

Fletcher

Nov 12 '05 #13
Fletcher,

Your code to extract data from Word tables works great. Do you also
have code to extract data from a table in the Header of a Word document?

Thanks,
Norman Scheinin
no***************@boeing.com

Fletcher Arnold wrote:

"Ruby Tuesday" <ru**********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Thanks Fletcher.

I might be able to follow your VBscript(is it? or is it a VB program that
need to be compiled?) program but will this program work for multi-line
cells? As I mentioned in my earlier message, I can't directly

cut-and-paste
the table into the excel sheet cause excel treat each line of the

multi-line
cell as another row of data. Somehow excel do not know how to handle cell
data with CR/LF character in it. Can we escape them?

Thanks again


The code was actually written in Access with a form and a button named
"cmdExtract" and you could just cut and paste the code. With very minor
modifications you could cut and paste this code into a normal text file and
save it as Whatever.vbs (vbs = visual basic script) and it would run.
Perhaps better still would be to re-write the file as an hta (html
application) which gives you a nice browser-based interface to work with but
is still simply plain text files.

I don't know if newgroup participants would want to write a complete html
application for nothing, but it would not take an experienced programmer
long. You could post some more specific details about the transformation
you need, eg:

Cell A1: "Name"
Cell B1: "Address"
Cell A2: "Peter Smith"
Cell B2: "85 Station Road"
"Newbury"
"Berkshire"
"United Kingdom"

How would this translate into your Access table. What tables and field
names would you have? I see elsewhere in the thread you will have up to 3
tables per doc.

Fletcher

Nov 12 '05 #14
Norman, would you share how you extract the word table data? Perhaps you can
give me some vba samples on how to do it. Thank much.

"Norman Scheinin" <no***************@boeing.com> wrote in message
news:40***************@boeing.com...
Fletcher,

Your code to extract data from Word tables works great. Do you also
have code to extract data from a table in the Header of a Word document?

Thanks,
Norman Scheinin
no***************@boeing.com

Fletcher Arnold wrote:

"Ruby Tuesday" <ru**********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Thanks Fletcher.

I might be able to follow your VBscript(is it? or is it a VB program that need to be compiled?) program but will this program work for multi-line cells? As I mentioned in my earlier message, I can't directly

cut-and-paste
the table into the excel sheet cause excel treat each line of the

multi-line
cell as another row of data. Somehow excel do not know how to handle cell data with CR/LF character in it. Can we escape them?

Thanks again


The code was actually written in Access with a form and a button named
"cmdExtract" and you could just cut and paste the code. With very minor
modifications you could cut and paste this code into a normal text file and save it as Whatever.vbs (vbs = visual basic script) and it would run.
Perhaps better still would be to re-write the file as an hta (html
application) which gives you a nice browser-based interface to work with but is still simply plain text files.

I don't know if newgroup participants would want to write a complete html application for nothing, but it would not take an experienced programmer
long. You could post some more specific details about the transformation you need, eg:

Cell A1: "Name"
Cell B1: "Address"
Cell A2: "Peter Smith"
Cell B2: "85 Station Road"
"Newbury"
"Berkshire"
"United Kingdom"

How would this translate into your Access table. What tables and field
names would you have? I see elsewhere in the thread you will have up to 3 tables per doc.

Fletcher

Nov 12 '05 #15
Fletcher, thanks for the code. I test it and it works, but there are a few
things I'd love to know how.

Instead of displaying it on the msg box, how would you insert it to the
database, say, the access or mysql database? Do I have to use ODBC? How?

Also, if one of the colums contain images, how one extract the image? Thanks
"Fletcher Arnold" <fl****@home.com> wrote in message
news:c1**********@hercules.btinternet.com...
"Ruby Tuesday" <ru*********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Hi, I was wondering if expert can give me some lite to convert my word table
into access database.

Note: within each cell of my word table(s), some has multi-line data in

it.
In addition, there is one row containing picture(s) as well.

So far, what I did is doing it manually for each word docs I have.

Select Table
Convert Table to Text(I use ^ character for delimiter)
Save it to a text file(with char substitution, and CR/LF)
Then, Load them to Access DB.

Is there an easier way to do this?

If you want to write code to do it, here is an example that just creates a
message box for each cell in the table showing the value. This could be
converted to create a record in Access and you could adapt it to do this

for a number of documents, each with 1 or more tables.
Is this a route you might pursue?
Private Sub cmdExtract_Click()

On Error GoTo Err_Handler

Dim strPath As String
Dim strValue As String
Dim wdApp As Object 'Word.Application
Dim wdDoc As Object 'Word.Document
Dim wdTbl As Object 'Word.Table
Dim wdRow As Object 'Word.Row
Dim wdCol As Object 'Word.Column
Dim wdCell As Object 'Word.Cell

strPath = "C:\Example.doc"

Set wdApp = CreateObject("Word.Application")

Set wdDoc = wdApp.Documents.Open(strPath)

If wdDoc.Tables.Count > 0 Then

Set wdTbl = wdDoc.Tables(1)

For Each wdRow In wdTbl.Rows

For Each wdCol In wdTbl.Columns

strValue = wdTbl.Cell(wdRow.Index, wdCol.Index).Range.Text

If Len(strValue) > 2 Then
strValue = Left$(strValue, Len(strValue) - 2)
Else
strValue = ""
End If

MsgBox strValue

Next wdCol

Next wdRow

End If

MsgBox "Done", vbInformation

Exit_Handler:

On Error Resume Next

If Not wdDoc Is Nothing Then
wdDoc.Close
Set wdDoc = Nothing
End If

If Not wdApp Is Nothing Then
wdApp.Quit
Set wdApp = Nothing
End If

Exit Sub

Err_Handler:
MsgBox Err.Description, vbExclamation, "Error No: " & Err.Number
Resume Exit_Handler

End Sub


Nov 12 '05 #16
"Ruby Tuesday" <ru*********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Fletcher, thanks for the code. I test it and it works, but there are a few
things I'd love to know how.

Instead of displaying it on the msg box, how would you insert it to the
database, say, the access or mysql database? Do I have to use ODBC? How?

If you can give me a while, I will post a more complete example.

Fletcher
Nov 12 '05 #17
I tweaked Fletcher's code so you can write the Word table info to your
database...

Option Compare Database

Private Sub cmdExtract_Click()

On Error GoTo Err_Handler

Dim strPath As String
Dim strValue As String
Dim wdApp As Object 'Word.Application
Dim wdDoc As Object 'Word.Document
Dim wdTbl As Object 'Word.Table
Dim wdRow As Object 'Word.Row
Dim wdCol As Object 'Word.Column
Dim wdCell As Object 'Word.Cell

'--NEW STUFF
Dim rs As DAO.Recordset
Set rs = CurrentDb.OpenRecordset("mytable", dbOpenDynamic)
'"mytable" is the name of the table in your DB you'll be writing to
strPath = "C:\Example.doc"

Set wdApp = CreateObject("Word.Application")

Set wdDoc = wdApp.Documents.Open(strPath)

If wdDoc.Tables.Count > 0 Then

Set wdTbl = wdDoc.Tables(1)

'--Row is analogous to Access Record
For Each wdRow In wdTbl.Rows
'--Column is analogous to Access Table Field
rs.AddNew
For Each wdCol In wdTbl.Columns

strValue = wdTbl.Cell(wdRow.Index,
wdCol.Index).Range.Text

If Len(strValue) > 2 Then
strValue = Left$(strValue, Len(strValue) - 2)
rs.Fields(wdCol.Index) = strValue
Else
strValue = ""
End If

MsgBox strValue

Next wdCol

'end of the column/record, so save it
rs.Update
Next wdRow

End If

rs.Close
Set rs = Nothing
MsgBox "Done", vbInformation

Exit_Handler:

On Error Resume Next

If Not wdDoc Is Nothing Then
wdDoc.Close
Set wdDoc = Nothing
End If

If Not wdApp Is Nothing Then
wdApp.Quit
Set wdApp = Nothing
End If

If Not rs Is Nothing Then
rs.Close
Set rs = Nothing
End If

Exit Sub

Err_Handler:
MsgBox Err.Description, vbExclamation, "Error No: " & Err.Number
Resume Exit_Handler

End Sub
(Apologies for bollixing up your code, Fletcher)

Pieter
Nov 12 '05 #18
Thank you, Fletcher.

"Fletcher Arnold" <fl****@home.com> wrote in message
news:c1**********@sparta.btinternet.com...
"Ruby Tuesday" <ru*********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Fletcher, thanks for the code. I test it and it works, but there are a few things I'd love to know how.

Instead of displaying it on the msg box, how would you insert it to the
database, say, the access or mysql database? Do I have to use ODBC? How?

If you can give me a while, I will post a more complete example.

Fletcher

Nov 12 '05 #19
"Ruby Tuesday" <ru**********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Thank you, Fletcher.

"Fletcher Arnold" <fl****@home.com> wrote in message
news:c1**********@sparta.btinternet.com...
"Ruby Tuesday" <ru*********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Fletcher, thanks for the code. I test it and it works, but there are a few things I'd love to know how.

Instead of displaying it on the msg box, how would you insert it to the database, say, the access or mysql database? Do I have to use ODBC?
How?

If you can give me a while, I will post a more complete example.

Fletcher

On the basis that the OP wanted to know how to get the code to run, I
thought I would offer a solution which only requires Notepad to create a
working application, provided certain system components are in place. These
components should be present if you have a reasonably up-to-date Windows
installation - so it shouldn't need any fiddling around with.

To get the data into Access, open up any normal text editor (eg NotePad) and
copy and paste the code into a new file and save the file as "Xtractor.hta"
The .hta extension is for a html application.

The code was really just for a bit of fun - to try out these hta files. One
plus side is that I can post plain text to the newsgroup, but there are a
number of downsides, including error handling. If posting attachments were
allowed, I am sure an Access/VBA/DAO solution would be better than the
VBS/ADO code posted here.

Anyway, feel free to try it out and let me know how you get on.

Fletcher

Copy everything below the stars:
' ************************************************

<html>
<head>
<title>Table Extractor</title>
<script language="vbscript">
<!--

Sub DoMain()

Dim lngMaxCols
Dim strFolder
Dim strDbName
Dim strDbPath
Dim strMsg

strFolder = document.all.txtFolder.value

If Right(strFolder,1) <> "\" Then
strFolder = strFolder & "\"
End If

If Not FolderExists(strFolder) Then
Msgbox "Non-existant Folder"
Exit Sub
End If

If CountWordDocs(strFolder) < 1 Then
Msgbox "No Word Docs"
Exit Sub
End If

strDbName = document.all.txtDbName.value

strDbPath = strFolder & strDbName

If FileExists(strDbPath) = True Then

strMsg = "The following file already exists:"
strMsg = strMsg & vbCrLf
strMsg = strMsg & "Do you want to overwrite it?"

If Msgbox(strMsg, vbExclamation OR vbYesNoCancel) <> vbYes Then
Exit Sub
End If

If Not DeleteFile(strDbPath) Then
strMsg = "Error deleting file"
strMsg = strMsg & vbCrLf
strMsg = strMsg & "Check the file is not in use."
MsgBox strMsg, vbCritical
Exit Sub
End If
End If

If IsNumeric(document.all.txtMaxColumns.value) Then
lngMaxCols = Clng(document.all.txtMaxColumns.value)
Else
Msgbox "Columns"
Exit Sub
End If

If (lngMaxCols < 1) OR (lngMaxCols > 200) Then
Msgbox "Columns"
Exit sub
End If

If CreateDb(strDbPath, lngMaxCols) = False Then
Msgbox "Error Creating Database", vbCritical
Exit Sub
End If

ImportDocs strFolder, strDbPath, lngMaxCols

strMsg = "Word tables successfully imported" & vbCrLf
strMsg = strMsg & "Do you want to open the database?"

If Msgbox(strMsg, vbInformation OR vbYesNoCancel) = vbYes Then
StartDb(strDbPath)
End If

End Sub


Function CleanString(strDirty)

Dim strClean
Dim lng

strClean = Trim(strDirty)

If Len(strClean) > 0 Then

strClean = Replace(strClean, Chr(13), vbCrLf)

For lng = Len(strClean) To 1 Step -1
If Asc(Mid(strClean, lng, 1)) > 32 Then
Exit For
End If
Next

strClean = Left(strClean, lng)
End If

If Len(strClean) > 255 Then
strClean = Left(strClean, 250) & "..."
End If

CleanString = strClean

End Function


Function FolderExists(strFolder)

On Error Resume Next

Dim fso
Dim fld

FolderExists = False

Set fso = CreateObject("Scripting.FileSystemObject")

Set fld = fso.GetFolder(strFolder)

If Err.Number = 0 Then FolderExists = True

Set fld = Nothing

Set fso = Nothing

End Function


Function FileExists(strPath)

On Error Resume Next

Dim fso
Dim fil

FileExists = False

Set fso = CreateObject("Scripting.FileSystemObject")

Set fil = fso.GetFile(strPath)

If Err.Number = 0 Then FileExists = True

Set fil = Nothing

Set fso = Nothing

End Function


Function DeleteFile(strPath)

On Error Resume Next

Dim fso

DeleteFile = False

Set fso = CreateObject("Scripting.FileSystemObject")

fso.DeleteFile strPath, True

If Err.Number = 0 Then DeleteFile = True

Set fso = Nothing

End Function


Sub StartDb(strDbPath)

Dim wshShell
Dim lng

Set wshShell = CreateObject("WScript.Shell")

lng = wshShell.Run(strDbPath, 1)

Set wshShell = Nothing

End Sub


Function CountWordDocs(strFolder)

On Error Resume Next

Dim fil
Dim lng

lng = 0

Set fso = CreateObject("Scripting.FileSystemObject")

Set fld = fso.GetFolder(strFolder)

If Err.Number = 0 Then

For each fil in fld.Files

If Right(fil.Name, 4) = ".doc" Then
lng = lng + 1
End If
Next

End If

Set fil = Nothing

Set fld = Nothing

Set fso = Nothing

CountWordDocs = lng

End Function


Sub SetFolder()

Dim strFolder

strFolder = BrowseFolder("Choose a folder", &h0007, "c:\")

If Len(strFolder)>0 Then
document.all.txtFolder.value = strFolder
End If

End Sub


Function BrowseFolder(sPrompt, BrowseInfo, root)

On Error Resume Next

Dim oShell
Dim oFolder
Dim iColonPos
Dim oWshShell

Set oShell = CreateObject("Shell.Application")

Set oWshShell = CreateObject("WScript.Shell")

Set oFolder = oShell.BrowseForFolder(&h0&, sPrompt, BrowseInfo, root)

BrowseFolder = oFolder.ParentFolder.ParseName(oFolder.Title).Path

If Err.Number <> 0 Then

BrowseFolder = Null

If oFolder.Title = "Desktop" Then
BrowseFolder = oWshShell.SpecialFolders("Desktop")
End If

iColonPos = InStr(oFolder.Title, ":")

If iColonPos > 0 Then
BrowseFolder = Mid(oFolder.Title, iColonPos - 1, 2) & "\"
End If
End If

End Function


Function GetFolder()

Dim objShell
Dim objFolder

set objShell = CreateObject("Shell.Application")

set objFolder = objShell.BrowseForFolder(0, "Example", 0, "" )

If (not objFolder is nothing) then
GetFolder = "X" 'objFolder.Path
Else
GetFolder = ""
End if

set objFolder = Nothing
set objShell = Nothing

End function


Sub ImportTables(wdDoc, rst, lngMaxCols)

Dim wdTbl
Dim lngTblNo
Dim wdRow
Dim wdCol
Dim strValue

lngTblNo = 0

For Each wdTbl In wdDoc.Tables

lngTblNo = lngTblNo + 1

For Each wdRow In wdTbl.Rows

rst.AddNew
rst(1) = wdDoc.path & "\" & wdDoc.Name
rst(2) = lngTblNo
rst(3) = wdRow.Index

For Each wdCol In wdTbl.Columns

strValue = wdTbl.Cell(wdRow.Index, wdCol.Index).Range.Text

strValue = CleanString(strValue)

If Len(strValue) > 0 And (wdCol.Index < (lngMaxCols + 1)) Then
rst(3 + wdCol.Index) = strValue
End If

Next

rst.Update

Next

Next

Set wdTbl = Nothing

End Sub


Sub ImportDocs(strFolder, strDbPath, lngMaxCols)

Dim strSQL
Dim strCnn
Dim cnn
Dim rst
Dim wdApp
Dim wdDoc
Dim fso
Dim fld
Dim fil

strCnn = "Provider=Microsoft.Jet.OLEDB.4.0;"
strCnn = strCnn & "Data Source=" & strDbPath

Set cnn = CreateObject("ADODB.Connection")

cnn.ConnectionString = strCnn

cnn.Open

strSQL = "SELECT * FROM tblWordTables"

Set rst = CreateObject("ADODB.Recordset")

rst.Open strSQL, cnn, 2, 3

Set wdApp = CreateObject("Word.Application")

Set fso = CreateObject("Scripting.FileSystemObject")

Set fld = fso.GetFolder(strFolder)

For Each fil In fld.Files

If Right(fil.Name, 4) = ".doc" Then

Set wdDoc = wdApp.Documents.Open(fil.Path)

ImportTables wdDoc, rst, lngMaxCols

wdDoc.Close

Set wdDoc = Nothing

End If
Next

Set fil = Nothing
Set fld = Nothing
Set fso = Nothing
wdApp.Quit
Set wdApp = Nothing
rst.Close
Set rst = Nothing
cnn.Close
Set cnn = Nothing
End Sub


Function CreateTextColumn(catCatalog, tblTable, strColumnName)

On Error Resume Next

Const adVarWChar = 202
Dim col

Set col = CreateObject("ADOX.Column")
col.ParentCatalog = catCatalog
col.Name = strColumnName
col.Type = adVarWChar
col.properties("Nullable").Value = True
col.Properties("Jet OLEDB:Allow Zero Length").Value = False

tblTable.Columns.Append col

If Err.Number = 0 Then CreateTextColumn = True

Set col = Nothing

End Function


Function CreateLongColumn(catCatalog, tblTable, strColumnName)

On Error Resume Next

Const adInteger = 3
Dim col
Dim idx

Set col = CreateObject("ADOX.Column")
col.ParentCatalog = catCatalog
col.Name = strColumnName
col.Type = adInteger

tblTable.Columns.Append col

If Err.Number = 0 Then

Set col = Nothing

Set idx = CreateObject("ADOX.Index")

idx.Name = strColumnName

idx.Unique = False

Set col = CreateObject("ADOX.Column")

col.Name = strColumnName

idx.Columns.Append col

tblTable.Indexes.Append idx

If Err.Number = 0 Then

CreateLongColumn = True

End If

End If

Set idx = Nothing

Set col = Nothing

End Function
Function CreatePrimaryKey(catCatalog, tblTable, strColumnName)

On Error Resume Next

Const adInteger = 3
Dim col

Set col = CreateObject("ADOX.Column")
col.ParentCatalog = catCatalog
col.Name = strColumnName
col.Type = adInteger
col.Properties("AutoIncrement").Value = True

tblTable.Columns.Append col

If Err.Number = 0 Then

tblTable.Keys.Append "PrimaryKey", 1, strColumnName

If Err.Number = 0 Then

CreatePrimaryKey = True

End If

End If

Set col = Nothing

End Function
Function CreateDb(strPath, lngMaxCols)

On Error Resume Next
Dim cat
Dim tbl
Dim col
Dim str
Dim strColName
Dim lngColCount

CreateDb = True

Set cat = CreateObject("ADOX.Catalog")

str = "Provider=Microsoft.Jet.OLEDB.4.0;"
str = str & "Jet OLEDB:Engine Type=5;"
str = str & "Data Source=" & strPath

cat.Create str

If Err.Number <> 0 Then Exit Function

Set tbl = CreateObject("ADOX.Table")

tbl.ParentCatalog = cat

tbl.Name = "tblWordTables"

If Not CreatePrimaryKey(cat, tbl, "ID") Then Exit Function

If Not CreateTextColumn(cat, tbl, "DocPath") Then Exit Function

If Not CreateLongColumn(cat, tbl, "TableNo") Then Exit Function

If Not CreateLongColumn(cat, tbl, "RowNo") Then Exit Function

For lngColCount = 1 to lngMaxCols

strColName = Cstr(1000 + lngColCount)

strColName = "Column" & Mid(strColName, 2)

If Not CreateTextColumn(cat, tbl, strColName) Then
Exit Function
End If
Next

cat.Tables.Append tbl

If Err.Number = 0 Then
CreateDb = True
Else
Msgbox Err.Description
End If

Set tbl = Nothing

Set cat = Nothing

End Function

-->
</script>

<body bgcolor="#CCCCFF">

<table>
<th colspan="2" align="center">Extract Tables From Microsoft Word</th>

<tr><td>&nbsp;</td><td>&nbsp;</td></tr>

<tr>
<td>Document Folder</td>
<td><input type="text" id="txtFolder" value="C:\"</td>
</tr>

<tr>
<td>Database Name</td>
<td><input type="text" id="txtDbName" value="WordTables.mdb"</td>
</tr>

<tr>
<td>Maximum Columns</td>
<td><input type="text" id="txtMaxColumns" value="10"</td>
</tr>

<tr><td>&nbsp;</td><td>&nbsp;</td></tr>

<tr>
<td><input type="button" name="cmdFolder" value="Change Folder"
onclick="SetFolder()"></td>
<td><input type="button" name="cmdImport" value="Import Tables"
onclick="DoMain()"></td>
</tr>

</table>

</body>
</html>

Nov 12 '05 #20
"Pieter Linden" <pi********@hotmail.com> wrote in message
news:bf**************************@posting.google.c om...
I tweaked Fletcher's code so you can write the Word table info to your
database...
<snip> (Apologies for bollixing up your code, Fletcher)

Pieter

Hi Pieter
By all means feel free. It's an open forum and is sometimes a relief when
others answer your posts. If you are interested in what I finally did with
it have a look at my post elsewhere in this thread. This shows an html
application with VBS/ADO which was done to see if I could post a plain text
file with all the necessary code.
Fletcher
Nov 12 '05 #21
"Norman Scheinin" <no***************@boeing.com> wrote in message
news:40***************@boeing.com...
Fletcher,

Your code to extract data from Word tables works great. Do you also
have code to extract data from a table in the Header of a Word document?

Thanks,
Norman Scheinin
no***************@boeing.com


Hi Norman
It is simply a case of navigating your way through Word's object model to
get at what you want. I am not an expert on long documents created in Word,
but I tested this little snippet to get some info out of a table in the
header of a simple Word document.
If you have more complicated documents, headers can be different for
odd/even pages, for different sections, etc but this might give you a start
so you can start to have a more thorough investigation of the Word object
model.

Set wdHdr = wdDoc.Sections(1).Headers(wdHeaderFooterPrimary)

If wdHdr.Range.Tables.Count > 0 Then
Set wdTbl = wdHdr.Range.Tables(1)
MsgBox wdTbl.Cell(2, 2).Range.Text
Set wdTbl = Nothing
End If

Set wdHdr = Nothing
Fletcher
Nov 12 '05 #22
Hi Fletcher, thanks for posting the code.
How do you execute Xtractor.hta file?
When use IE6, it prompt me with a form(which I filed in) but without
'submit' button to execute. Perhaps I overlook something ...

Thanks again.

"Fletcher Arnold" <fl****@home.com> wrote in message
news:c1*********@hercules.btinternet.com...
"Ruby Tuesday" <ru**********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Thank you, Fletcher.

"Fletcher Arnold" <fl****@home.com> wrote in message
news:c1**********@sparta.btinternet.com...
"Ruby Tuesday" <ru*********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
> Fletcher, thanks for the code. I test it and it works, but there are
a
few
> things I'd love to know how.
>
> Instead of displaying it on the msg box, how would you insert it to
the > database, say, the access or mysql database? Do I have to use ODBC? How?

If you can give me a while, I will post a more complete example.

Fletcher

On the basis that the OP wanted to know how to get the code to run, I
thought I would offer a solution which only requires Notepad to create a
working application, provided certain system components are in place.

These components should be present if you have a reasonably up-to-date Windows
installation - so it shouldn't need any fiddling around with.

To get the data into Access, open up any normal text editor (eg NotePad) and copy and paste the code into a new file and save the file as "Xtractor.hta" The .hta extension is for a html application.

The code was really just for a bit of fun - to try out these hta files. One plus side is that I can post plain text to the newsgroup, but there are a
number of downsides, including error handling. If posting attachments were allowed, I am sure an Access/VBA/DAO solution would be better than the
VBS/ADO code posted here.

Anyway, feel free to try it out and let me know how you get on.

Fletcher

Copy everything below the stars:
' ************************************************

<html>
<head>
<title>Table Extractor</title>
<script language="vbscript">
<!--

Sub DoMain()

Dim lngMaxCols
Dim strFolder
Dim strDbName
Dim strDbPath
Dim strMsg

strFolder = document.all.txtFolder.value

If Right(strFolder,1) <> "\" Then
strFolder = strFolder & "\"
End If

If Not FolderExists(strFolder) Then
Msgbox "Non-existant Folder"
Exit Sub
End If

If CountWordDocs(strFolder) < 1 Then
Msgbox "No Word Docs"
Exit Sub
End If

strDbName = document.all.txtDbName.value

strDbPath = strFolder & strDbName

If FileExists(strDbPath) = True Then

strMsg = "The following file already exists:"
strMsg = strMsg & vbCrLf
strMsg = strMsg & "Do you want to overwrite it?"

If Msgbox(strMsg, vbExclamation OR vbYesNoCancel) <> vbYes Then
Exit Sub
End If

If Not DeleteFile(strDbPath) Then
strMsg = "Error deleting file"
strMsg = strMsg & vbCrLf
strMsg = strMsg & "Check the file is not in use."
MsgBox strMsg, vbCritical
Exit Sub
End If
End If

If IsNumeric(document.all.txtMaxColumns.value) Then
lngMaxCols = Clng(document.all.txtMaxColumns.value)
Else
Msgbox "Columns"
Exit Sub
End If

If (lngMaxCols < 1) OR (lngMaxCols > 200) Then
Msgbox "Columns"
Exit sub
End If

If CreateDb(strDbPath, lngMaxCols) = False Then
Msgbox "Error Creating Database", vbCritical
Exit Sub
End If

ImportDocs strFolder, strDbPath, lngMaxCols

strMsg = "Word tables successfully imported" & vbCrLf
strMsg = strMsg & "Do you want to open the database?"

If Msgbox(strMsg, vbInformation OR vbYesNoCancel) = vbYes Then
StartDb(strDbPath)
End If

End Sub


Function CleanString(strDirty)

Dim strClean
Dim lng

strClean = Trim(strDirty)

If Len(strClean) > 0 Then

strClean = Replace(strClean, Chr(13), vbCrLf)

For lng = Len(strClean) To 1 Step -1
If Asc(Mid(strClean, lng, 1)) > 32 Then
Exit For
End If
Next

strClean = Left(strClean, lng)
End If

If Len(strClean) > 255 Then
strClean = Left(strClean, 250) & "..."
End If

CleanString = strClean

End Function


Function FolderExists(strFolder)

On Error Resume Next

Dim fso
Dim fld

FolderExists = False

Set fso = CreateObject("Scripting.FileSystemObject")

Set fld = fso.GetFolder(strFolder)

If Err.Number = 0 Then FolderExists = True

Set fld = Nothing

Set fso = Nothing

End Function


Function FileExists(strPath)

On Error Resume Next

Dim fso
Dim fil

FileExists = False

Set fso = CreateObject("Scripting.FileSystemObject")

Set fil = fso.GetFile(strPath)

If Err.Number = 0 Then FileExists = True

Set fil = Nothing

Set fso = Nothing

End Function


Function DeleteFile(strPath)

On Error Resume Next

Dim fso

DeleteFile = False

Set fso = CreateObject("Scripting.FileSystemObject")

fso.DeleteFile strPath, True

If Err.Number = 0 Then DeleteFile = True

Set fso = Nothing

End Function


Sub StartDb(strDbPath)

Dim wshShell
Dim lng

Set wshShell = CreateObject("WScript.Shell")

lng = wshShell.Run(strDbPath, 1)

Set wshShell = Nothing

End Sub


Function CountWordDocs(strFolder)

On Error Resume Next

Dim fil
Dim lng

lng = 0

Set fso = CreateObject("Scripting.FileSystemObject")

Set fld = fso.GetFolder(strFolder)

If Err.Number = 0 Then

For each fil in fld.Files

If Right(fil.Name, 4) = ".doc" Then
lng = lng + 1
End If
Next

End If

Set fil = Nothing

Set fld = Nothing

Set fso = Nothing

CountWordDocs = lng

End Function


Sub SetFolder()

Dim strFolder

strFolder = BrowseFolder("Choose a folder", &h0007, "c:\")

If Len(strFolder)>0 Then
document.all.txtFolder.value = strFolder
End If

End Sub


Function BrowseFolder(sPrompt, BrowseInfo, root)

On Error Resume Next

Dim oShell
Dim oFolder
Dim iColonPos
Dim oWshShell

Set oShell = CreateObject("Shell.Application")

Set oWshShell = CreateObject("WScript.Shell")

Set oFolder = oShell.BrowseForFolder(&h0&, sPrompt, BrowseInfo, root)

BrowseFolder = oFolder.ParentFolder.ParseName(oFolder.Title).Path

If Err.Number <> 0 Then

BrowseFolder = Null

If oFolder.Title = "Desktop" Then
BrowseFolder = oWshShell.SpecialFolders("Desktop")
End If

iColonPos = InStr(oFolder.Title, ":")

If iColonPos > 0 Then
BrowseFolder = Mid(oFolder.Title, iColonPos - 1, 2) & "\"
End If
End If

End Function


Function GetFolder()

Dim objShell
Dim objFolder

set objShell = CreateObject("Shell.Application")

set objFolder = objShell.BrowseForFolder(0, "Example", 0, "" )

If (not objFolder is nothing) then
GetFolder = "X" 'objFolder.Path
Else
GetFolder = ""
End if

set objFolder = Nothing
set objShell = Nothing

End function


Sub ImportTables(wdDoc, rst, lngMaxCols)

Dim wdTbl
Dim lngTblNo
Dim wdRow
Dim wdCol
Dim strValue

lngTblNo = 0

For Each wdTbl In wdDoc.Tables

lngTblNo = lngTblNo + 1

For Each wdRow In wdTbl.Rows

rst.AddNew
rst(1) = wdDoc.path & "\" & wdDoc.Name
rst(2) = lngTblNo
rst(3) = wdRow.Index

For Each wdCol In wdTbl.Columns

strValue = wdTbl.Cell(wdRow.Index, wdCol.Index).Range.Text

strValue = CleanString(strValue)

If Len(strValue) > 0 And (wdCol.Index < (lngMaxCols + 1)) Then
rst(3 + wdCol.Index) = strValue
End If

Next

rst.Update

Next

Next

Set wdTbl = Nothing

End Sub


Sub ImportDocs(strFolder, strDbPath, lngMaxCols)

Dim strSQL
Dim strCnn
Dim cnn
Dim rst
Dim wdApp
Dim wdDoc
Dim fso
Dim fld
Dim fil

strCnn = "Provider=Microsoft.Jet.OLEDB.4.0;"
strCnn = strCnn & "Data Source=" & strDbPath

Set cnn = CreateObject("ADODB.Connection")

cnn.ConnectionString = strCnn

cnn.Open

strSQL = "SELECT * FROM tblWordTables"

Set rst = CreateObject("ADODB.Recordset")

rst.Open strSQL, cnn, 2, 3

Set wdApp = CreateObject("Word.Application")

Set fso = CreateObject("Scripting.FileSystemObject")

Set fld = fso.GetFolder(strFolder)

For Each fil In fld.Files

If Right(fil.Name, 4) = ".doc" Then

Set wdDoc = wdApp.Documents.Open(fil.Path)

ImportTables wdDoc, rst, lngMaxCols

wdDoc.Close

Set wdDoc = Nothing

End If
Next

Set fil = Nothing
Set fld = Nothing
Set fso = Nothing
wdApp.Quit
Set wdApp = Nothing
rst.Close
Set rst = Nothing
cnn.Close
Set cnn = Nothing
End Sub


Function CreateTextColumn(catCatalog, tblTable, strColumnName)

On Error Resume Next

Const adVarWChar = 202
Dim col

Set col = CreateObject("ADOX.Column")
col.ParentCatalog = catCatalog
col.Name = strColumnName
col.Type = adVarWChar
col.properties("Nullable").Value = True
col.Properties("Jet OLEDB:Allow Zero Length").Value = False

tblTable.Columns.Append col

If Err.Number = 0 Then CreateTextColumn = True

Set col = Nothing

End Function


Function CreateLongColumn(catCatalog, tblTable, strColumnName)

On Error Resume Next

Const adInteger = 3
Dim col
Dim idx

Set col = CreateObject("ADOX.Column")
col.ParentCatalog = catCatalog
col.Name = strColumnName
col.Type = adInteger

tblTable.Columns.Append col

If Err.Number = 0 Then

Set col = Nothing

Set idx = CreateObject("ADOX.Index")

idx.Name = strColumnName

idx.Unique = False

Set col = CreateObject("ADOX.Column")

col.Name = strColumnName

idx.Columns.Append col

tblTable.Indexes.Append idx

If Err.Number = 0 Then

CreateLongColumn = True

End If

End If

Set idx = Nothing

Set col = Nothing

End Function
Function CreatePrimaryKey(catCatalog, tblTable, strColumnName)

On Error Resume Next

Const adInteger = 3
Dim col

Set col = CreateObject("ADOX.Column")
col.ParentCatalog = catCatalog
col.Name = strColumnName
col.Type = adInteger
col.Properties("AutoIncrement").Value = True

tblTable.Columns.Append col

If Err.Number = 0 Then

tblTable.Keys.Append "PrimaryKey", 1, strColumnName

If Err.Number = 0 Then

CreatePrimaryKey = True

End If

End If

Set col = Nothing

End Function
Function CreateDb(strPath, lngMaxCols)

On Error Resume Next
Dim cat
Dim tbl
Dim col
Dim str
Dim strColName
Dim lngColCount

CreateDb = True

Set cat = CreateObject("ADOX.Catalog")

str = "Provider=Microsoft.Jet.OLEDB.4.0;"
str = str & "Jet OLEDB:Engine Type=5;"
str = str & "Data Source=" & strPath

cat.Create str

If Err.Number <> 0 Then Exit Function

Set tbl = CreateObject("ADOX.Table")

tbl.ParentCatalog = cat

tbl.Name = "tblWordTables"

If Not CreatePrimaryKey(cat, tbl, "ID") Then Exit Function

If Not CreateTextColumn(cat, tbl, "DocPath") Then Exit Function

If Not CreateLongColumn(cat, tbl, "TableNo") Then Exit Function

If Not CreateLongColumn(cat, tbl, "RowNo") Then Exit Function

For lngColCount = 1 to lngMaxCols

strColName = Cstr(1000 + lngColCount)

strColName = "Column" & Mid(strColName, 2)

If Not CreateTextColumn(cat, tbl, strColName) Then
Exit Function
End If
Next

cat.Tables.Append tbl

If Err.Number = 0 Then
CreateDb = True
Else
Msgbox Err.Description
End If

Set tbl = Nothing

Set cat = Nothing

End Function

-->
</script>

<body bgcolor="#CCCCFF">

<table>
<th colspan="2" align="center">Extract Tables From Microsoft Word</th>

<tr><td>&nbsp;</td><td>&nbsp;</td></tr>

<tr>
<td>Document Folder</td>
<td><input type="text" id="txtFolder" value="C:\"</td>
</tr>

<tr>
<td>Database Name</td>
<td><input type="text" id="txtDbName" value="WordTables.mdb"</td>
</tr>

<tr>
<td>Maximum Columns</td>
<td><input type="text" id="txtMaxColumns" value="10"</td>
</tr>

<tr><td>&nbsp;</td><td>&nbsp;</td></tr>

<tr>
<td><input type="button" name="cmdFolder" value="Change Folder"
onclick="SetFolder()"></td>
<td><input type="button" name="cmdImport" value="Import Tables"
onclick="DoMain()"></td>
</tr>

</table>

</body>
</html>

Nov 12 '05 #23

"Ruby Tuesday" <ru**********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Hi Fletcher, thanks for posting the code.
How do you execute Xtractor.hta file?
When use IE6, it prompt me with a form(which I filed in) but without
'submit' button to execute. Perhaps I overlook something ...

Thanks again.


You fill in 3 things:

1: The folder where your Word documents are stored. The program imports
all tables from all documents in that folder, so if you only want a few
documents done, you could move them to their own folder first. This will
also be the folder where the MS Access database is created. You can type
the folder path e.g C:\MyStuff or use the "change folder" button.

2: The name of the database - which might as well be left as
"WordTables.mdb"

3: The maximum number of columns which will be imported from each Word
table into the database.

**The final step is to press the "Import Tables" button which should firstly
create a new Access db for the results (or prompt you to overwrite an
existing one). It then takes each table in each Word document in the
specified folder and imports the contents into the new database. When it
has finished, it gives you the chance to open the database immediately.

That is the theory, anyway and it did work perfectly on my machine, although
it does take a while for large numbers of tables. Or did you already press
the import button and something didn't work?
Fletcher

Nov 12 '05 #24
Hi Fletcher,
when I ran the Xtractor.hta, it and set the correct folder path and the
access db, it keeps telling me that the folder is 'Non-Existant'.

I also try to hardcoded the path, and came back the same error. Did I
overlook something? Thanks
"Fletcher Arnold" <fl****@home.com> wrote in message
news:c1**********@titan.btinternet.com...

"Ruby Tuesday" <ru**********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Hi Fletcher, thanks for posting the code.
How do you execute Xtractor.hta file?
When use IE6, it prompt me with a form(which I filed in) but without
'submit' button to execute. Perhaps I overlook something ...

Thanks again.

You fill in 3 things:

1: The folder where your Word documents are stored. The program imports
all tables from all documents in that folder, so if you only want a few
documents done, you could move them to their own folder first. This will
also be the folder where the MS Access database is created. You can type
the folder path e.g C:\MyStuff or use the "change folder" button.

2: The name of the database - which might as well be left as
"WordTables.mdb"

3: The maximum number of columns which will be imported from each Word
table into the database.

**The final step is to press the "Import Tables" button which should

firstly create a new Access db for the results (or prompt you to overwrite an
existing one). It then takes each table in each Word document in the
specified folder and imports the contents into the new database. When it
has finished, it gives you the chance to open the database immediately.

That is the theory, anyway and it did work perfectly on my machine, although it does take a while for large numbers of tables. Or did you already press the import button and something didn't work?
Fletcher


Nov 12 '05 #25
"Ruby Tuesday" <ru**********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Hi Fletcher,
when I ran the Xtractor.hta, it and set the correct folder path and the access db, it keeps telling me that the folder is 'Non-Existant'.

Are you giving the name of an existing folder where the Word documents are?
What happens if you place an example Word document in the root folder (C:\)
so you do not touch the default settings of the form?

If you want to speed up communications, let me know an e-mail address and
I'll send you mine.
Fletcher
Nov 12 '05 #26
Nope. No luck. I gives me the same error.

here's my email:
-- please remove the dash(-) and colon(:) in the email address:

ruby-tuz:da**@yahoo.com

Thanks

"Fletcher Arnold" <fl****@home.com> wrote in message
news:c1**********@hercules.btinternet.com...
"Ruby Tuesday" <ru**********@yahoo.com> wrote in message
news:c1*************@ID-205437.news.uni-berlin.de...
Hi Fletcher,
when I ran the Xtractor.hta, it and set the correct folder path and the
access db, it keeps telling me that the folder is 'Non-Existant'.

Are you giving the name of an existing folder where the Word documents

are? What happens if you place an example Word document in the root folder (C:\) so you do not touch the default settings of the form?

If you want to speed up communications, let me know an e-mail address and
I'll send you mine.
Fletcher

Nov 12 '05 #27
Fletcher,
just a thought... You could use the BrowseFolder API from mvps.org
and then just let the user browse for the folder... Makes it a bit
more flexible, that's all.
Nov 12 '05 #28
Pieter -

In your message of 2004-02-25, you included the code below. Whenever I
try to run it in Access 97, I get the error "3001" invalid argument.

When I try to run it in Access 2002, I get the error "Compile Error:
User-defined type not defined.

If you have the time, can you suggest what might be going wrong? FYI, I
do have the table "mytable" in the DB.

Thanks,

Patrick

************************************************** ********
Option Compare Database

Private Sub cmdExtract_Click()

On Error GoTo Err_Handler

Dim strPath As String
Dim strValue As String
Dim wdApp As Object 'Word.Application
Dim wdDoc As Object 'Word.Document
Dim wdTbl As Object 'Word.Table
Dim wdRow As Object 'Word.Row
Dim wdCol As Object 'Word.Column
Dim wdCell As Object 'Word.Cell

'--NEW STUFF
Dim rs As DAO.Recordset
Set rs = CurrentDb.OpenRecordset("mytable", dbOpenDynamic)
'"mytable" is the name of the table in your DB you'll be writing to
strPath = "C:\Example.doc"

Set wdApp = CreateObject("Word.Application")

Set wdDoc = wdApp.Documents.Open(strPath)

If wdDoc.Tables.Count > 0 Then

Set wdTbl = wdDoc.Tables(1)

'--Row is analogous to Access Record
For Each wdRow In wdTbl.Rows
'--Column is analogous to Access Table Field
rs.AddNew
For Each wdCol In wdTbl.Columns

strValue =
wdTbl.Cell(wdRow.Index,wdCol.Index).Range.Text

If Len(strValue) > 2 Then
strValue = Left$(strValue, Len(strValue) - 2)
rs.Fields(wdCol.Index) = strValue
Else
strValue = ""
End If

MsgBox strValue

Next wdCol

'end of the column/record, so save it
rs.Update
Next wdRow

End If

rs.Close
Set rs = Nothing
MsgBox "Done", vbInformation

Exit_Handler:

On Error Resume Next

If Not wdDoc Is Nothing Then
wdDoc.Close
Set wdDoc = Nothing
End If

If Not wdApp Is Nothing Then
wdApp.Quit
Set wdApp = Nothing
End If

If Not rs Is Nothing Then
rs.Close
Set rs = Nothing
End If

Exit Sub

Err_Handler:
MsgBox Err.Description, vbExclamation, "Error No: " & Err.Number
Resume Exit_Handler

End Sub
***********************************************

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 13 '05 #29
RE/
When I try to run it in Access 2002, I get the error "Compile Error:
User-defined type not defined.


Have you declared a reference to Word (code window, Tools|References)?
--
PeteCresswell
Nov 13 '05 #30
Thanks, Pete -

I just did, and now in 2K I'm getting the aforementioned Error No:
3001 Invalid Argument.

Still stumped. I've found a couple of notes in the MSKB, but they are
a bit..uh..cloudy to me - for example:

SYMPTOMS
Some data access objects in Visual Basic for Windows version 4.0 no
longer have the default "Name" property. Instead, these objects now
have a default collection. This change can lead to "Type Mismatch"
(Error 13) or "Invalid Argument" (Error 3001) errors when attempting
to run your code.

WORKAROUND
To work around this problem, add the name of the property you want to
reference.

For example, use this: MsgBox Data1.Database.TableDefs(0).Name

instead of this: MsgBox Data1.Database.TablesDefs(0)

Am I missing something obvious?

Patrick
"(Pete Cresswell)" <x@y.z> wrote in message news:<kr********************************@4ax.com>. ..
RE/
When I try to run it in Access 2002, I get the error "Compile Error:
User-defined type not defined.


Have you declared a reference to Word (code window, Tools|References)?

Nov 13 '05 #31
RE/
Am I missing something obvious?


How about posting the line of code it's barfing on ....plus some more lines
before/after?
--
PeteCresswell
Nov 13 '05 #32
Thanks, Pete -

Code below - I'm not getting a specific indication of where the error
is occuring (not sure how I would do that), but given the way the code
has been developed by those who posted it, I'm guessing it's in one of
the lines annotated with "'NEW".

Option Compare Database

Private Sub Command2_Click()

On Error GoTo Err_Handler

Dim strPath As String
Dim strValue As String
Dim wdApp As Object 'Word.Application
Dim wdDoc As Object 'Word.Document
Dim wdTbl As Object 'Word.Table
Dim wdRow As Object 'Word.Row
Dim wdCol As Object 'Word.Column
Dim wdCell As Object 'Word.Cell

'*******START***************
'--BEGIN NEW STUFF
Dim rs As DAO.Recordset 'NEW
Set rs = CurrentDb.OpenRecordset("mytable", dbOpenDynamic) 'NEW
'"mytable" is the name of the table in your DB you'll be writing to

strPath = "C:\Example.doc"

Set wdApp = CreateObject("Word.Application")

Set wdDoc = wdApp.Documents.Open(strPath)

If wdDoc.Tables.Count > 0 Then

Set wdTbl = wdDoc.Tables(1)

'--Row is analogous to Access Record
For Each wdRow In wdTbl.Rows
'--Column is analogous to Access Table Field
rs.AddNew 'NEW

For Each wdCol In wdTbl.Columns

strValue = wdTbl.Cell(wdRow.Index,
wdCol.Index).Range.Text

If Len(strValue) > 2 Then
strValue = Left$(strValue, Len(strValue) - 2)

rs.Fields(wdCol.Index) = strValue 'NEW
Else
strValue = ""
End If

MsgBox strValue

Next wdCol

'end of the column/record, so save it
rs.Update 'NEW
Next wdRow

End If

rs.Close 'NEW
Set rs = Nothing 'NEW
MsgBox "Done", vbInformation 'NEW

Exit_Handler:

On Error Resume Next

If Not wdDoc Is Nothing Then
wdDoc.Close
Set wdDoc = Nothing
End If

If Not wdApp Is Nothing Then
wdApp.Quit
Set wdApp = Nothing
End If

If Not rs Is Nothing Then 'NEW
rs.Close 'NEW
Set rs = Nothing 'NEW
End If

Exit Sub

Err_Handler:
MsgBox Err.Description, vbExclamation, "Error No: " & Err.Number
Resume Exit_Handler

End Sub
"(Pete Cresswell)" <x@y.z> wrote in message news:<oh********************************@4ax.com>. ..
RE/
Am I missing something obvious?


How about posting the line of code it's barfing on ....plus some more lines
before/after?

Nov 13 '05 #33
RE/
I'm guessing it's in one of
the lines annotated with "'NEW".


Why guess? Add line numbers to the code and amend the error trap to something
like:

MsgBox Err.Description, vbExclamation, "Line " & Erl & " :Error " & Err.Number &
" " & Error$ & "'."
--
PeteCresswell
Nov 13 '05 #34
RE/
Why guess? Add line numbers....


Alternatively, Rem out "On Error GoTo Err_Handler" and
it will stop on the problem line.

--
PeteCresswell
Nov 13 '05 #35
Thanks, Pete.

I moved the code back to A97 so I could use wzComment to add line
numbers (not experienced enough with 2K to know how to do it there)
and added your suggested error trapping code.

Turns out the offending line is:

Set rs = CurrentDb.OpenRecordset("mytable", dbOpenDynamic)

Does that tell anyone anything? It's greek to me...

I tried being more specific by replacing "Current.DB" with the name of
my database, and then I get an error (in A97 or A02) saying;

"Method or Data Member not found"

I'm stumped.

Thanks again.

Patrick Arkins

"(Pete Cresswell)" <x@y.z> wrote in message news:<ck********************************@4ax.com>. ..
RE/
I'm guessing it's in one of
the lines annotated with "'NEW".


Why guess? Add line numbers to the code and amend the error trap to something
like:

MsgBox Err.Description, vbExclamation, "Line " & Erl & " :Error " & Err.Number &
" " & Error$ & "'."

Nov 13 '05 #36
On 6 Oct 2004 06:46:53 -0700, me*****@butter.toast.net (Patrick Arkins) wrote:
Set rs = CurrentDb.OpenRecordset("mytable", dbOpenDynamic)


Set rs = CurrentDb.OpenRecordset("mytable", dbOpenDynaset)

Wayne Gillespie
Gosford NSW Australia
Nov 13 '05 #37
(Pete Cresswell) wrote:
RE/
Why guess? Add line numbers....

Alternatively, Rem out "On Error GoTo Err_Handler" and
it will stop on the problem line.


Using a simple error handler as an example, this is what I do:

<---
ErrHandler:
Msgbox Err.Description
Resume ErrExit
Resume
--->

Break into the code on the Msgbox, then Ctrl+F9 on the last line
(Resume), F8 will take you back to the offending line. That way there's
no danger of changing your code for debugging and forgetting to change
it back again for release.

--
Pretentious? Moi?
Nov 13 '05 #38
Wayne Gillespie <be*****@NObestfitsoftwareSPAM.com.au> wrote in message news:<qg********************************@4ax.com>. ..
On 6 Oct 2004 06:46:53 -0700, me*****@butter.toast.net (Patrick Arkins) wrote:
Set rs = CurrentDb.OpenRecordset("mytable", dbOpenDynamic)


Set rs = CurrentDb.OpenRecordset("mytable", dbOpenDynaset)

Wayne Gillespie
Gosford NSW Australia


Thanks Wayne... that's the trouble with knocking out answers off the
top of your head... simple stupid things... OOPS! I stand corrected
(in the corner, with the rest of the ne'er-do-wells...)
Nov 13 '05 #39
RE/
no danger of changing your code for debugging and forgetting to change
it back again for release.


I like it.

Thanks.
--
PeteCresswell
Nov 13 '05 #40
Fletcher, Wayne, Piet -

Back to working on this, trying to get the HTA to work for my
purposes, having determined it's closer to meeting my needs than the
Access Code (no offense intended). Thanks for the help so far.
Here's where things stand:

HTA Method:
The HTA method chews through a folder of .DOC files nicely, and builds
the tables well with one exception; What seems to be my only
remaining challenge is that one of my table cells contains > 255
characters 98% of the time. I understand the purpose of Function
CleanString(strDirty), but I need the entire string. Is there a way
in the HTA to specify that the field should be a memo field, or some
other way to safely stash a thousand or so characters?

Access Code:
I'm facing several challenges with the Access code - note: these are
NOT meant to be criticisms. Just an explanation of why I think the
HTA is closer to meeting my needs. If anyone has an idea of how I can
fix these issues, I'm all ears.

1. The Access code runs on a specific file, (Eaxample.doc) not a
folder of files like the HTA. I've got 1,000 files to process, and
don't see how to do it without editing the form code each time.
2. The Access code seems not to capture the DocPath info, which is
very helpful for me when I need a way to identify what records are
coming from where.
3. The Access code stops between tables, and my documents have 3. The
HTA code motors on.
4. Access 97 (which I assume the code is designed to run in) doesn't
like the fact that I have tables with varying numbers of columns - it
stops the process altogether. The HTA doesn't seem to mind. (Of
course, I have to do some cleaning up of the tables once I've run the
HTA, and some fun queries, but only once.)

Thanks for any suggestions.

Patrick

pi********@hotmail.com (Pieter Linden) wrote in message news:<bf**************************@posting.google. com>...
Wayne Gillespie <be*****@NObestfitsoftwareSPAM.com.au> wrote in message news:<qg********************************@4ax.com>. ..
On 6 Oct 2004 06:46:53 -0700, me*****@butter.toast.net (Patrick Arkins) wrote:
Set rs = CurrentDb.OpenRecordset("mytable", dbOpenDynamic)


Set rs = CurrentDb.OpenRecordset("mytable", dbOpenDynaset)

Wayne Gillespie
Gosford NSW Australia


Thanks Wayne... that's the trouble with knocking out answers off the
top of your head... simple stupid things... OOPS! I stand corrected
(in the corner, with the rest of the ne'er-do-wells...)

Nov 13 '05 #41
Fletcher, Wayne, Piet -

Back to working on this, trying to get the HTA to work for my
purposes, having determined it's closer to meeting my needs than the
Access Code (no offense intended). Thanks for the help so far.
Here's where things stand:

HTA Method:
The HTA method chews through a folder of .DOC files nicely, and builds
the tables well with one exception; What seems to be my only
remaining challenge is that one of my table cells contains > 255
characters 98% of the time. I understand the purpose of Function
CleanString(strDirty), but I need the entire string. Is there a way
in the HTA to specify that the field should be a memo field, or some
other way to safely stash a thousand or so characters?

Access Code:
I'm facing several challenges with the Access code - note: these are
NOT meant to be criticisms. Just an explanation of why I think the
HTA is closer to meeting my needs. If anyone has an idea of how I can
fix these issues, I'm all ears.

1. The Access code runs on a specific file, (Eaxample.doc) not a
folder of files like the HTA. I've got 1,000 files to process, and
don't see how to do it without editing the form code each time.
2. The Access code seems not to capture the DocPath info, which is
very helpful for me when I need a way to identify what records are
coming from where.
3. The Access code stops between tables, and my documents have 3. The
HTA code motors on.
4. Access 97 (which I assume the code is designed to run in) doesn't
like the fact that I have tables with varying numbers of columns - it
stops the process altogether. The HTA doesn't seem to mind. (Of
course, I have to do some cleaning up of the tables once I've run the
HTA, and some fun queries, but only once.)

Thanks for any suggestions.

Patrick

************************************************** *****************************
Nov 13 '05 #42

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
4289
by: Phil Rutter | last post by:
Hello All, I have about 700 word documents that have 2 tables one is static 4 colums x 5 rows the other is 5 colums x rows ranging from 2 to 100 what i wolud like to do is open the word doc....
4
15797
by: Otis Hunter | last post by:
I have been given an Access Database which contains a table that has an OLE object field that contains a Word document. That table contains hundreds of records. I would like to find out how I can...
8
3486
by: Mike MacSween | last post by:
tblCourses one to many to tblEvents. A course may have an intro workshop (a type of event), a mid course workshop, a final exam. Or any combination. Or something different in the future. At...
5
4004
by: Jerry Hull | last post by:
I'm working with a database developed by an untrained person over several years - and on a network that has recently been upgraded with a new server installed and MS office upgraded from 2K (I...
1
4910
by: svdh | last post by:
I have posed a question last saturday and have advanced alot in the meantime. But I am still not there Problem is that I try to merging various fields from various tables in one document in Word...
4
3348
by: svdh2 | last post by:
Dear All, I have lately strugled more and more with Access, what started as a simple database has brought me to the fundaments of Access. I need to transfer fields from various tables to a...
8
13322
by: Ron B | last post by:
Help!!! What am I doing wrong? I am working with Office 2003 and am trying to create a command button on an Access form that will create a mail merge in Word from an Access table. I want to...
4
12412
by: etuncer | last post by:
Hello All, I have Access 2003, and am trying to build a database for my small company. I want to be able to create a word document based on the data entered through a form. the real question is...
8
6683
by: babyangel43 | last post by:
Hello, I have a query set up in Access. I run it monthly, changing "date of test". I would like this query to be merged with a Word document so that the cover letter is created in Word, the fields...
0
7281
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
6993
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7462
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5579
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5014
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4675
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3168
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1514
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
737
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.