Can I use TPrototypeBindSource once I set it up to work with ContactName, i.e, and get the values?

Can I use TPrototypeBindSource once I set it up to work with ContactName, i.e, and get the values?

Something simple like:
while not PrototypeBindSource1.Eof do
begin
Label1.Text := PrototypeBindSource1.... <-- How to?
PrototypeBindSource1.Next;
end;

Comments

  1. Can you explain a bit further? AFAIK TPrototypeBindSource is used only to get sample data. Yes, it also allows you to create LiveBindings at design time, and replace the prototype source with a "real" one at runtime. Is that your case?

    ReplyDelete
  2. There's an event on the prototype source you can fill in to attach it to a real binding source

    ReplyDelete

Post a Comment