| |
chrisly
Posts: 1
Score: 0
Joined: 10/13/2003
From:
Status: offline
|
I've added a table to Microsoft Word (through VB script) as follows: Set oAD=oWordApp.ActiveDocument Set oTables=oAD.Tables Set oSel=oWordApp.Selection Set oRange=oSel.Range oTables.Add oRange,1,2 Now I'm trying to move over into the right hand cell to put some text. The VBA code for this is: oWordApp.Selection.MoveRight Unit:=wdCell but this does not seem to work in VBScript. Does anyone know how I can do this? Cheers, Chris
|
|