I'm openning an word doc via vb.net. I want to have two tables display with a variety of data.
I can get one table to display but the other one wont show up.
After I got oTable1 to appear in the doc I cut an pasted the code and changed the name for otable1 to otable2 hopeing the 2nd table would show up. No such luck.
I've been looking at the MSDN library but with no luck.
This is my first shot at word so anyhelp would be appreciated.
Dan
I can get one table to display but the other one wont show up.
After I got oTable1 to appear in the doc I cut an pasted the code and changed the name for otable1 to otable2 hopeing the 2nd table would show up. No such luck.
I've been looking at the MSDN library but with no luck.
This is my first shot at word so anyhelp would be appreciated.
Dan
Code:
Dim oWord As Word.Application
Dim oDoc As New Word.Document
Dim oTable1 As Word.Table
Dim oTable2 As Word.Table
Try
oWord = CreateObject("Word.Application")
oWord.Visible = True
oDoc = oWord.Documents.Add
oTable1 = oDoc.Content.Tables.Add(oDoc.Range, NumRows:=4, NumColumns:=4)
oTable1.Cell(1, 1).Range.Text = "Patient Name"
oTable1.Cell(1, 2).Range.Text = "Dans table1"
oTable1.Range.InsertParagraphAfter()
oTable2 = oDoc.Content.Tables.Add(oDoc.Range, NumRows:=1, NumColumns:=6)
oTable2.Cell(1, 1).Range.Text = "Patient Name"
oTable2.Cell(1, 2).Range.Text = "Dans table2"
oTable2.Range.InsertParagraphAfter()
Catch ex As Exception
Response.Write(ex.Message)
End Try