Delphi2005

DataGridのバインディングの巻(その2)

一応、意地になってみます。じゃー、パブリックなプロパティがあれば良いの勝手なわけで、 type TMyBook = class private Fsample1: String; Fsample2: String; public property sample1:String read Fsample1 write Fsample1; property sample2:String read…

DataGridのバインディングの巻(その1)

DataGridに、WebServiceで取得したオブジェクトをバインディングしてみる procedure TWinForm.Button3_Click(sender: System.Object; e: System.EventArgs); var bookshelf_ :BookshelfImplService; begin bookshelf_ :=BookshelfImplService.Create; DataGr…