Subject | Re: [IBO] ask a simple question |
---|---|
Author | Geoff Worboys |
Post date | 2001-03-27T12:32:31Z |
> i'm new with delphi and ib object.Probably the best tutorial is simply to look at the source for the
> can you tell me where i can read tutorial or sample in handling
> my tabel using ibo without IBObars?
bars themselves. For example, in IB_UpdateBar.pas you will find...
if Dataset <> nil then
with Dataset do
begin
case Index of
ubEdit: Edit;
ubInsert: if AppendOnInsert then Append else Insert;
ubDelete: Delete;
ubPost: Post;
ubCancel: if State = dssSearch then begin
ClearSearch;
Open;
end else begin
Cancel;
end;
ubRefreshKeys: RefreshKeys;
ubRefreshRows: RefreshRows;
ubRefreshAll: RefreshAll;
end;
end;
Which tells you pretty much all you need to know about what the
UpdateBar does :-)
For more sophisticated management, including transaction control I
suggest you work through some of the tutorial applications.
> i know in VB we can do that. sorry if i compare it with VBWe will forgive you this once ;-)
> because i am used to use it
Geoff Worboys
Telesis Computing