The information in this article applies to:
SUMMARYThis article discusses methods that you can use to determine if the insertion point is within the last cell of a Word table. MORE INFORMATIONMicrosoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web: http://www.microsoft.com/supportnet/refguide/The following WordBasic macro tests for the last cell in a table.
The function form of the NextCell() command returns 0 (zero) if there is no
next cell in the table. This behavior may be useful if you don't want to
add a new row to a table.
The NextCell() command moves the insertion point to the next cell in the table and assigns the return value to the variable named "x." The value 0 (zero) is returned if there is not a next cell in the table. The above macro posts a message if the current cell is the last cell in the table. The MsgBox command can be replaced by other WordBasic commands depending on the purpose of the macro. The PrevCell command returns the insertion point to its original location before the NextCell() command was executed. If the NextCell() command is used when the insertion point is not within a table, a "Command is unavailable" error is posted. The following macro uses the SelInfo command to first determine if the insertion point is within a table.
NOTE: The SelInfo command is not available in versions 1.x of Word for
Windows.
REFERENCES"Using WordBasic," by WexTech Systems and Microsoft, page 259 and 277 Additional query words: winword2 determine final NextCell SelInfo
Keywords : kbmacro wordnt kbmacroexample winword ntword macword kbtable word6 word7 word95 |
Last Reviewed: December 28, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |