SetWindowWord

SetWindowWord

VB声明

Declare Function SetWindowWord Lib "user32" Alias "SetWindowWord" (ByVal hwnd As Long, ByVal nIndex As Long, ByVal wNewWord As Long) As Long

说明

在窗口结构中为指定的窗口设置信息(在vb里使用:使用时要谨慎)

返回值

Long,指定数据的前一个值

参数表

参数

类型及说明

hwnd

Long,欲为其设置信息的那个窗口的句柄

nIndex

Long,参考对GetWindowWord函数的nIndex参数的说明

wNewWord

Long,由nIndex指定的窗口信息的新值

Top