Subject | combine Edit & ParamEdit |
---|---|
Author | Gediminas |
Post date | 2003-11-25T17:07:58Z |
I want to modify ib_edit in such way, that then dataset is at insert state,
entered text is also provided to other dataset as parameter for further
searching.
Is it would be enough in OnChange handler copy/assign entered text to other
dataset's column?
void __fastcall TForm1::IB_Edit_Change(TObject *Sender)
{
AnotherQuery->ParamByName( "Name" )->Assign( IB_Edit->Field );
}
--/ Gediminas /--
The Truth Is Out There
entered text is also provided to other dataset as parameter for further
searching.
Is it would be enough in OnChange handler copy/assign entered text to other
dataset's column?
void __fastcall TForm1::IB_Edit_Change(TObject *Sender)
{
AnotherQuery->ParamByName( "Name" )->Assign( IB_Edit->Field );
}
--/ Gediminas /--
The Truth Is Out There