[IronPython] DataSet.Tables not callable

2007-04-26 Thread kostas daglas
hi all ! this is my first post and i am new to database programming generally. Anyway i would appreciate your help.. i made an Addressbook table with 5 rows (myfriends!) and every row has items (name, surname etc.)i called it AddressBook.mdb I made a form with a button and a TextBox contorl i

Re: [IronPython] DataSet.Tables not callable

2007-04-26 Thread 东子
in Python, () means a CALL, if you want a INDEX, try [] . like this: txtFirstName.Text = ds.Tables[AddressBook].Rows[0].Item[1] 2007/4/26, kostas daglas [EMAIL PROTECTED]: hi all ! this is my first post and i am new to database programming generally. Anyway i would appreciate your help.. i

[IronPython] can't override LayoutEngine property

2007-04-26 Thread Jonathan Amsterdam
I'm trying to overrride the LayoutEngine property of Control so I can implement my own layout engine. I find that this doesn't work in IP. Accessing the LayoutEngine property in IP works fine, but it doesn't work from C#. C# code: public class MyCSharpClass {

Re: [IronPython] DataSet.Tables not callable

2007-04-26 Thread kostas daglas
ds.Tables[AddressBook].Rows[0][1] works excellent ! thanks again for your immediate feedback Kostas On 4/26/07, 闫 力昕 [EMAIL PROTECTED] wrote: try it ds.Tables[AddressBook].Rows[0][1] or for dr in ds.Tables[AddressBook].Rows: dr[1] 2007/4/26, kostas daglas [EMAIL PROTECTED]: hi all ! this

Re: [IronPython] About IronPython and LINQ again

2007-04-26 Thread Dino Viehland
There's still no direct LINQ support. We believe we're getting the correct architecture in place to support extension methods in v2.0 (note though we still haven't done the actual work to enable the extension methods and when we ship the first 2.0 builds there will be no dependencies on

Re: [IronPython] About IronPython and LINQ again

2007-04-26 Thread Kevin Chu
If I plan to create Web Framework base of IronPython for ASP.NET like Django. First thing,I have to solve is a ORMapper. So do you any adivces about ORMapper used in IronPython for ASP.NET? On 4/27/07, Keith J. Farmer [EMAIL PROTECTED] wrote: Well, get to it! ;) -- Keith [MSFT: LINQ to SQL]