Home > Archive > Clarion > February 2006 > events of a created control. where is this Embed point?
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 |
events of a created control. where is this Embed point?
|
|
|
| Clarion 5.5 ABC
So ive got this button control that is created by execution of code in my
application, I know its control number, so I can change attributers like
size, text, color, etc. All that works swell..
But what about when someone clicks on it? And its not just one control that
is created, there will be several, so how will I know when to execute code
when its clicked?
Somewhere in the accept loop, i need to have a ''case of 'control# of my
button' '' .. where is this Embed point? I know its a field event, but
where do I put my case of control if clicked type loop?????
Scott
| |
| Robert Peros 2006-02-11, 7:55 am |
| "Scott" <scott.tabor@usol.com
> So ive got this button control that is created by execution of code in my
> application, I know its control number, so I can change attributers like size,
> text, color, etc. All that works swell..<cut>
> But what about when someone clicks on it? And its not just one control that is
> created, there will be several, so how will I know when to execute code when
> its clicked?
Just looked EIP EditClass.This cover all what you need and in(with) derived
class you can solve any behavior.NOT need use EIP only in List feq.
You are interesting for EIP.Feq data members. e.g.
IF EVENT:Accepted AND FIELD() = Eip.Feq.....
R.
|
|
|
|
|