Subject | Re: [IBO] Question about dates and question about tib_memo. |
---|---|
Author | Luiz Alves |
Post date | 2000-12-27T21:05:13Z |
> OnSetText event to check for a date of ' / / ' and it so do aTry it on OnSetText event to DateTime Field:
> field.clear. This worked great but can't figure a way to accomplish
> a similar thing using IBO.
var s:string;
begin
s:=trim(Text);
with (Sender as TField) do
if s='/ /' then
Clear;
end;
I tryed and works well to me, although I don't use TIBO components to edit
data.
PS:IB_Date with TIB_Query(not TIBOQuery) treats it better.
> TIB_meno:I can't see what is wrong. Maybe with more information.
> Have a TIB_Memo control linked to a blob field in my table. Can't
> seem to get the TIB_Memo to accept data. Acts like it is read-only.
Luiz.