Subject | Re: [IBO] IB_Grid and a embedded button or graphic |
---|---|
Author | Dmitry Beloshistov |
Post date | 2005-04-29T06:46Z |
Hello, jdlynn123!
You wrote to <IBObjects@yahoogroups.com> on Thu, 28 Apr 2005 20:15:30 -0000:
j> What would I put in the field name?? Do I add a actual button and use
j> it's click event?? Is there a place to get more information??
IB_Query1.SQL.Text:='SELECT ID, MYFIELD FROM MYTABLE';
IB_Grid1.EditLinks.Clear;
IB_Grid1.EditLinks.Add('MYTABLE.MYFIELD');
IB_Grid1.AlwaysShowEditor:=True; // if you want always show button for
example
Before this: set event handler for IB_Grid1.OnEditButtonClick event... And
if you press edit button in grid this event will be triggered...
WBR,Dmitry Beloshistov AKA [-=BDS=-]
You wrote to <IBObjects@yahoogroups.com> on Thu, 28 Apr 2005 20:15:30 -0000:
j> What would I put in the field name?? Do I add a actual button and use
j> it's click event?? Is there a place to get more information??
IB_Query1.SQL.Text:='SELECT ID, MYFIELD FROM MYTABLE';
IB_Grid1.EditLinks.Clear;
IB_Grid1.EditLinks.Add('MYTABLE.MYFIELD');
IB_Grid1.AlwaysShowEditor:=True; // if you want always show button for
example
Before this: set event handler for IB_Grid1.OnEditButtonClick event... And
if you press edit button in grid this event will be triggered...
WBR,Dmitry Beloshistov AKA [-=BDS=-]