当前位置: 代码迷 >> PB >> PB 检索数据时,鼠标指针成漏斗形状,该如何解决
  详细解决方案

PB 检索数据时,鼠标指针成漏斗形状,该如何解决

热度:44   发布时间:2016-04-29 09:03:45.0
PB 检索数据时,鼠标指针成漏斗形状
PB 检索数据时,鼠标指针成漏斗形状,,,可以一直是指针形状吗?

------解决方案--------------------
SetPointer
Description 

Sets the mouse pointer to the specified shape.

Syntax 

SetPointer ( type )
------解决方案--------------------
pointer oldpointer
setpointer(hourglass!)
for i=1 to ll_rowcnt
 
next 
setpointer(oldpointer)
------解决方案--------------------
检索过程其它事情也是可以做的,

一般情况下:

setpointer(hourglass!)

........

setpointer(Arrow!)

就可以做到鼠标漏斗。

如果想同时同时还做其他事情
  相关解决方案