Use VB to insert a table with three columns and six rows into word, and insert data into each table row.

Source: Internet
Author: User

'Must click the menu "Project/reference/Microsoft Word 9.0 Object Library"
Dim WD as new word. Application
'Insert a table with three columns and six rows and insert data to each table row.
WD. Documents. Add documenttype: = wdnewblankdocument
Set odoc = WD. activedocument
Set otable = odoc. Tables. Add (range: = odoc. Range (START: = 0, end: = 0), numrows: = 6, numcolumns: = 3)
Icount = 1
For each ocell in otable. range. Cells
Ocell. range. insertafter "no." & icount & "cell"
Icount = icount + 1
Next ocell
Otable. AutoFormat format: = wdtableformatcolorful2, applyborders: = true, applyfont: = true, applycolor: = true
'Move the cursor to the end
WD. selection. endkey unit: = wdstory
'Insert pagination Operator
WD. selection. insertbreak type: = wdpagebreak
WD. Visible = true
WD. showme
Set WD = nothing

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.