UpdateWindow
VB声明
Declare Function UpdateWindow Lib "user32" Alias "UpdateWindow" (ByVal hwnd As Long) As Long
说明
强制立即更新窗口,窗口中以前屏蔽的所有区域都会重画(在vb里使用:如vb窗体或控件的任何部分需要更新,可考虑直接使用refresh方法
返回值
Long,非零表示成功,零表示失败
参数表
参数 类型及说明
hwnd Long,欲更新窗口的句柄

Top