WebGadget edit controls

Just starting out? Need help? Post your questions and find answers here.
Thomas
Enthusiast
Enthusiast
Posts: 112
Joined: Sat Apr 26, 2003 8:45 pm

WebGadget edit controls

Post by Thomas »

When using a WebGadget, like in the WebBrowser example, the tab and del keys do not work. Is there an easy way to make the edit keys behave like in any other webbrowser?
rsts
Addict
Addict
Posts: 2736
Joined: Wed Aug 24, 2005 8:39 am
Location: Southwest OH - USA

Re: WebGadget edit controls

Post by rsts »

I have used this before.

better check to make sure it works for you.

Code: Select all

    ; below to catch tabs
      Global OleObject.IOleInPlaceActiveObject
      Global WebObject.IWebBrowser2 = GetWindowLong_(GadgetID(Gadget_0_HTML), #GWL_USERDATA) 
      CoInitialize_(0) 
      CoCreateInstance_(?CLSID_IOleInPlaceActiveObject, 0, 1, ?IID_IOleInPlaceActiveObject,@OleObject.IOleInPlaceActiveObject) 
      ;end of tabs initialization
cheers
Thomas
Enthusiast
Enthusiast
Posts: 112
Joined: Sat Apr 26, 2003 8:45 pm

Re: WebGadget edit controls

Post by Thomas »

Doesn't work, don't even understand your code.
Lost
User
User
Posts: 63
Joined: Fri Dec 19, 2008 12:24 am
Location: Tasmania

Re: WebGadget edit controls

Post by Lost »

Post Reply