S
Sonny Maou
The following code does not do what it's supposed to do:
Sub typeCell(tNum As Integer, x As Integer, y As Integer, s As String)
On Error Resume Next
' ActiveDocument.Tables(tNum).Cell(x, y).Range.Text = s
ActiveDocument.Tables(tNum).Cell(x, y).Range.Text = ""
End Sub
For example, if I have "473" in the particular cell, the "3" gets left
behind by this procedure! Is there a bug therein?
Using the commented line, if s was "473," the result would be "4733."
Heeelllp!
Sub typeCell(tNum As Integer, x As Integer, y As Integer, s As String)
On Error Resume Next
' ActiveDocument.Tables(tNum).Cell(x, y).Range.Text = s
ActiveDocument.Tables(tNum).Cell(x, y).Range.Text = ""
End Sub
For example, if I have "473" in the particular cell, the "3" gets left
behind by this procedure! Is there a bug therein?
Using the commented line, if s was "473," the result would be "4733."
Heeelllp!