文件名称:vb6.0 IE 浏览器源码
文件大小:1.43MB
文件格式:RAR
更新时间:2014-10-20 17:52:51
vb6.0 IE 浏览器 源码
基于IE内核的浏览器(美化版) Private Type tagInitCommonControlsEx lngSize As Long lngICC As Long End Type Private Declare Function InitCommonControlsEx Lib "comctl32.dll" _ (iccex As tagInitCommonControlsEx) As Boolean Private Const ICC_USEREX_CLASSES = &H200 Public Function InitCommonControlsVB() As Boolean On Error Resume Next Dim iccex As tagInitCommonControlsEx ' Ensure CC available: With iccex .lngSize = LenB(iccex) .lngICC = ICC_USEREX_CLASSES End With InitCommonControlsEx iccex InitCommonControlsVB = (Err.Number = 0) On Error GoTo 0 End Function Sub Main() InitCommonControlsVB mainFrm.Show End Sub