指点一下:能否用多线程DLL刷新一个比较慢的网页
各位大大:有个WB控件上的网页刷新比较慢,能否将这个网页的刷新交给一个多线程DLL来刷新,而不影响主程序的后继操作?
最近才开始研究VFP的COM组件,有一点点想法......
Define Class RefreshOLE As Session OlePublic Function RefreshXML(cOBJ As VARIANT,cFile As String) If Empty(cOBJ.locationURL) cOBJ.Navigate2(cFile) Else cOBJ.Refresh2("REFRESH_NORMAL") Endif Endfun Function Error(nError, cMethod, nLine) Comreturnerror(cMethod+' err#='+Str(nError,5)+; ' line='+Str(nline,6)+' '+Message(),_vfp.ServerName) Endfun Enddefine