Subject Re: [IBO] ask a simple question
Author Geoff Worboys
> i'm new with delphi and ib object.
> can you tell me where i can read tutorial or sample in handling
> my tabel using ibo without IBObars?

Probably the best tutorial is simply to look at the source for the
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 VB
> because i am used to use it

We will forgive you this once ;-)


Geoff Worboys
Telesis Computing