FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour WEB event
Posts: 1392
Joined: Mon May 14, 2007 09:49 AM

WEB event

Posted: Fri Jun 24, 2011 07:42 AM

Hi, all !

I need to make an event handler for elements WEB of page(IE). Has written so:

el:=oDk:GetElementsByTagName("input")
for st=1 to el:Length
itm:=el:item(st-1)
if itm:Type=="text"
fl:=iif(empty(itm:id), itm:name, itm:id)

     itm:onFocus:='My_Prc_1("'+fl+'")'
     itm:onClick:='My_Prc_2("'+fl+'")'
  endif
next

procedure My_Prc_1(id)
? id
return

procedure My_Prc_2(id)
? id
return

But it doesn't work. In what an error?

Posts: 603
Joined: Sun May 04, 2008 08:44 PM

Re: WEB event

Posted: Wed Jun 29, 2011 03:21 AM

It's wrong...

Never will work, maybe you can test other way but it no.

:)

Continue the discussion