From: Ruben M. <rmc...@ya...> - 2004-12-01 20:35:24
|
Gregory, I know, there is a lot to take in when you are getting started. Note that Kevin said: "You need to specifically import the component modules that you use in your resource file" What that means is that, when using py2exe, you have to explicitly import each component that you use in your app individually. In other words, it is not enough to do: from PythonCard import model, dialog, etc... In addition to that, you need to do: from PythonCard.components import button, radiogroup, etc... -Ruben __________________________________ Do you Yahoo!? Read only the mail you want - Yahoo! Mail SpamGuard. http://promotions.yahoo.com/new_mail |