zoukankan      html  css  js  c++  java
  • AX Word操作

    AX Word操作

    发表于2007-11-8 0:30:03

    void job()
    {
        #define.wdLine(5)
        #define.wdCharacter(1)

        COM word = new COM("Word.Application");

        COM documents;
        COM document;
        COM selection;
        str        _filename;
        int        intTmp;
        int k=0;

         ;


        _filename = "d://test.doc";

        word.Visible(true);
        word.DisplayAlerts(False);

        Documents = word.Documents();
        Documents.open(_filename);

        selection = word.Selection();
        selection.movedown(#wdLine,4);
        selection.moveleft(#wdCharacter,5);
        selection.typetext("hello");

        selection.MoveRight(#wdCharacter,25);
        selection.typetext("world");

     

    /*
        Selection.MoveDown Unit:=wdLine, Count:=4
        Selection.MoveLeft Unit:=wdCharacter, Count:=5
        Selection.TypeText Text:="hello"
        Selection.MoveRight Unit:=wdCharacter, Count:=25
        Selection.TypeText Text:="world"
        Selection.MoveRight Unit:=wdCharacter, Count:=14
        Selection.TypeText Text:="AB"
        Selection.MoveRight Unit:=wdCharacter, Count:=17
        Selection.TypeText Text:="Computer"
        Selection.MoveRight Unit:=wdCharacter, Count:=22
        Selection.TypeText Text:="2007-11-15"
        Selection.MoveRight Unit:=wdCharacter, Count:=13
        Selection.TypeText Text:="asd"
    */
    }

  • 相关阅读:
    DHCP三种配置
    Linux-9引导过程与服务控制
    Linux系统管理10-进程和计划任务管理
    Linux系统管理11-系统安全及应用
    Linux系统管理12-Linux文件系统与日志
    ---01--Lin网络基础设置
    服务器RAID及磁盘配额的配置
    Linux常见故障及修复方法
    作业5
    104 权限 sudo 解压缩
  • 原文地址:https://www.cnblogs.com/Fandyx/p/2761440.html
Copyright © 2011-2022 走看看