On Wed, 2004-12-22 at 11:50 +0000, Paul Goodyear wrote:
> Working.

> From myDB.ObjectsT import *
> Changed to
> Import myDB.ObjectsT

> And

> Obj = ObjectsT.CreateMain()
> To
> Obj = myDB.ObjectsT.CreateMain()

> Working a treat.

You could also do:

from myDB import ObjectsT

obj = ObjectsT.CreateMain()

peace,
Jason



-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
Webware-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-devel

Reply via email to