Is there a way to implement a killfocus for a SHDocVw.WebBrowser control?
Function killfocus_shdoc
EDIT
Another question:
With Acc a.Select you select/focus an item in the SHDocVw.WebBrowser control. But how can you scroll to an item when it's not visible (in order to select it)?
Function killfocus_shdoc
str dd=
;BEGIN DIALOG
;0 "" 0x90C80AC8 0x0 0 0 255 213 "Dialog"
;3 ActiveX 0x54030000 0x0 15 10 218 170 "SHDocVw.WebBrowser"
;4 Edit 0x54030080 0x200 100 183 115 12 ""
;5 Static 0x54000000 0x0 27 185 72 9 "some other inputfield:"
;END DIALOG
;DIALOG EDITOR: "" 0x2040601 "*" "" "" ""
str controls = "3 4"
str ax3SHD e4
ax3SHD="d:\"
if(!ShowDialog(dd &sub.DlgProc &controls)) ret
#sub DlgProc
function# hDlg message wParam lParam
sel message
,case WM_INITDIALOG
,case WM_DESTROY
,case WM_COMMAND goto messages2
ret
;messages2
sel wParam
,case IDOK
,case IDCANCEL
ret 1
EDIT
Another question:
With Acc a.Select you select/focus an item in the SHDocVw.WebBrowser control. But how can you scroll to an item when it's not visible (in order to select it)?