I have code in Word 97 that moves the cursor to a given point on
the screen. It works in conjunction with a Public Declaration at the
top of the module.

The public declaration:

Public Declare Function SetCursorPos Lib "user32" _
(ByVal X As Long, ByVal Y As Long) As Long


The code used in the macro:

ret = SetCursorPos(180, 80)


Is it possible to make the same kind of thing happen with a .vbs file?

Re: moving cursor with .vbs file? by Brian

Brian
Tue Feb 22 23:23:40 CST 2005

This would be best asked/answered in one of the Word/Office ng's.

--

Brian A.

Conflicts start where information lacks.
http://www.dts-l.org/goodpost.htm


"Larry" <larry328NOSPAM@att.net> wrote in message
news:er2c68VGFHA.2676@TK2MSFTNGP12.phx.gbl...
>
> I have code in Word 97 that moves the cursor to a given point on
> the screen. It works in conjunction with a Public Declaration at the
> top of the module.
>
> The public declaration:
>
> Public Declare Function SetCursorPos Lib "user32" _
> (ByVal X As Long, ByVal Y As Long) As Long
>
>
> The code used in the macro:
>
> ret = SetCursorPos(180, 80)
>
>
> Is it possible to make the same kind of thing happen with a .vbs file?
>
>
>