镭镭 发表于 2006-8-23 09:56:28

怎么实现鼠标双击操作及跳过中断的步骤

RT

当一个对象操作需要用双击实现时候代码要怎么写?或者对象类型要怎么定义?

当WR在跑一段很长的流程时候,如果不希望出错就中止运行,希望机器自动跳过中断的地方,从下一步开始,这样就不用人为参与检查机器是否异常中断了,这个功能要如何实现?sdlkfj8

小李美刀 发表于 2006-8-23 11:21:21

我来说俩句

" 如果不希望出错就中止运行" 你这句话对机器而言比较难哦, 人可以提前知道程序会在哪里出错,但机器不会提前

知道吧,所以只能根据人的提前判断在可能出错的地方添加异常处理功能, 以使程序继续运行而且在报告里可以看到

程序在那个地方出现了错误.

小李美刀 发表于 2006-8-23 11:29:06

我来说俩句

当一个对象操作需要用双击实现时候代码要怎么写?或者对象类型要怎么定义?
请看下面:

list_activate_item ( list, item [, offset ] );


list        The logical name or description of the list.
item        The item to activate within the list.
offset        The horizontal offset (in pixels) of the click location relative to the left margin of the item's text (optional).

The list_activate_item function double-clicks an item in a list(实现双击功能).

Hope it helpful for you !!

[ 本帖最后由 小李美刀 于 2006-8-23 11:36 编辑 ]

镭镭 发表于 2006-8-23 11:44:00

能不能具个实例?因为E文水平极度的烂
比如有个虚拟对象BUTTON
实现双击的话,用list_activate_item ( list, item [, offset ] );要怎么写?

关于中断的问题,WR可以用TRY命令来控制异常吗?

小李美刀 发表于 2006-8-23 11:44:57

我来说俩句

When using the following command to make a double click function:

obj_mouse_dbl_click ( object, x, y [, mouse_button ])

object        The logical name or description of the GUI object. The object may belong to any class.
x, y        The position of the double-click expressed as x and y (pixel) coordinates. Coordinates are relative to the upper left corner of the GUI object.
mouse_button        A constant that specifies the mouse button to click. The value can be LEFT, MIDDLE, or RIGHT. If no button is specified, the default is the button that performs the select function.

Hope it helpful for you !!

kason163 发表于 2006-8-23 15:13:29

不想让他停一直做的话只要设置成批处理的模式
双击只要自己录一下就可以了

xihong2004 发表于 2006-8-24 16:46:46

WR的系统设置中有一个,出错时不中断的设置
页: [1]
查看完整版本: 怎么实现鼠标双击操作及跳过中断的步骤