编程序时候遇到的 :
wapp.Selection.MoveRight Unit:=wdCharacter, Count:=10
wapp.Selection.MoveDown Unit:=wdLine, Count:=1
wapp.Selection.MoveRight Unit:=wdCharacter, Count:=14 
不知道什么意思,请指点一下吧!!!
多谢大家了!

解决方案 »

  1.   

    补充:是在调用WORD方面的!
    谢谢:)
      

  2.   

    wapp.Selection.MoveRight Unit:=wdCharacter, Count:=10
    将打开的WORD文档的光标从当前右移10个字符wapp.Selection.MoveDown Unit:=wdLine, Count:=1
    将打开的WORD文档的光标从当前下移一行
      

  3.   

    Call wapp.Selection.TypeText(bgfrm1.Text16.Text)
    wapp.Selection.MoveRight Unit:=wdCharacter, Count:=10
    wapp.Selection.MoveDown Unit:=wdLine, Count:=1
    wapp.Selection.MoveRight Unit:=wdCharacter, Count:=14
    烦劳高手们在帮我看一下
    是把Text16.Text中的内容写进word之后右移,还是之前右移????
      

  4.   

    这不用说了吧?代码已经写得很清楚了,是先把Text16的内容写到Word里,然后光标右移10个字符,接着往下移一行,最后再往右移14个字符