T
Tony
I can't seen to get the createwindowex api call working,
what am I doing wrong. I am actually using visual basic 6.
here is a sample,
Public Const WC_IE = "Shell DocObject View"
Declare Function CreateWindowEx Lib "user32.dll"
Alias "CreateWindowExA" (ByVal dwExStyle As Long, ByVal
lpClassName As String, ByVal lpWindowName As String, ByVal
dwStyle As Long, ByVal X As Long, ByVal y As Long, ByVal
nWidth As Long, ByVal nHeight As Long, ByVal hWndParent As
Long, ByVal hMenu As Long, ByVal hInstance As Long,
lpParam As Any) As Long
ReturnValue = CreateWindowEx(0, WC_IE, "", WS_CHILD, 0, 0,
0, 0, Parenthandle, 0, 0, ByVal CLng(0))
I have actually wm_closed Shell DocObject View, and am
trying to re-establish it in the same parent window.
Any ideas welcome thanks.
what am I doing wrong. I am actually using visual basic 6.
here is a sample,
Public Const WC_IE = "Shell DocObject View"
Declare Function CreateWindowEx Lib "user32.dll"
Alias "CreateWindowExA" (ByVal dwExStyle As Long, ByVal
lpClassName As String, ByVal lpWindowName As String, ByVal
dwStyle As Long, ByVal X As Long, ByVal y As Long, ByVal
nWidth As Long, ByVal nHeight As Long, ByVal hWndParent As
Long, ByVal hMenu As Long, ByVal hInstance As Long,
lpParam As Any) As Long
ReturnValue = CreateWindowEx(0, WC_IE, "", WS_CHILD, 0, 0,
0, 0, Parenthandle, 0, 0, ByVal CLng(0))
I have actually wm_closed Shell DocObject View, and am
trying to re-establish it in the same parent window.
Any ideas welcome thanks.