Home > Archive > Clarion > February 2007 > edit in place(EIP) problem, pleas help
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
edit in place(EIP) problem, pleas help
|
|
|
| In one of my browse I have enabled EIP, an...this is the problem that I have
with double click on the fild that is enabled for EIP browse enter in EIP
mode, it goes out only with esckey, and I would like to do that when I wont
to, simply, if I put presskey(esckey) it doesnt work....
this is the part of the sorce, so, if anyone can help me.....the sorce is
put into:
EditInPlace::SAVE_TRT5202.TakeAccepted PROCEDURE(BYTE Action)
ReturnValue BYTE,AUTO
! Start of "Edit-In-Place Manager Method Executable Data Section"
! [Priority 2800]
! End of "Edit-In-Place Manager Method Executable Data Section"
CODE
! Start of "Edit-In-Place Manager Executable Code Section"
! [Priority 4500]
THIS IS THE PLACE WHERE CHANGES IN THE FIELD ARE MADE AND HERE I HAVE
SOME OTHER MY CODE
AND THIS IS THE PLACE I WOULD LIKE TO GO OUT OF EIP MODE, SIMPLY, THAT I
HAVE NORMAL BROWSE THAT I CAN BROWSE
! RETURN ReturnValue
! Parent Call
ReturnValue = PARENT.TakeAccepted(Action)
! [Priority 5300]
! End of "Edit-In-Place Manager Executable Code Section"
RETURN ReturnValue
|
|
|
|
|