Your menu code is calling other parts of the code by running
os.system('python create_password.py') . This probably won't work once it's
frozen and installed, because there won't be a 'python' executable to call.
Rather than launching a separate process for each menu item,  you probably
want to load the code in the same process and run other parts of it by
calling functions.

Thomas

On 12 May 2017 at 15:02, James Metzger <woodcnc...@gmail.com> wrote:

> Thomas, my last email was bounced by the system moderator for size.  I
> have placed backup of my files in my Google drive which you should now have
> access to. The ERP_Flow.PFD may help you understand what I am trying to do.
> This is what i stated in my last email:
>
>
> Thomas, I have attached a PDF which shows the program flow and a
> description of the file relationships. My python experience is somewhat
> limited, I starting reading Zed Shaw's book (Learn python the hard way)
> late last summer and have nearly finished with John Keyser's book (Computer
> science concepts and Python exercises). I am using PAGE software to help me
> create Python tkinter GUI apps. I just loaded cx_Freeze last week.
>
> Thanks for any assistance you have time to give me, resources are limited
> in western North Carolina.
>
> On Wed, May 10, 2017 at 12:40 PM, James Metzger <woodcnc...@gmail.com>
> wrote:
>
>> Thomas, I have attached a PDF which shows the program flow and a
>> description of the file relationships. My python experience is somewhat
>> limited, I starting reading Zed Shaw's book (Learn python the hard way)
>> late last summer and have nearly finished with John Keyser's book (Computer
>> science concepts and Python exercises). I am using PAGE software to help me
>> create Python tkinter GUI apps. I just loaded cx_Freeze last week.
>>
>> Thanks for any assistance you have time to give me, resources are limited
>> in western North Carolina.
>>
>> On Wed, May 10, 2017 at 8:04 AM, Thomas Kluyver <tak...@gmail.com> wrote:
>>
>>> On 10 May 2017 at 02:38, James Metzger <woodcnc...@gmail.com> wrote:
>>>
>>>> I still have the same issue of cmd screens popping up and disappearing
>>>> when I select a menu item
>>>
>>>
>>> That sounds like your menu items are triggering another executable,
>>> which is having a similar problem.
>>>
>>> ------------------------------------------------------------
>>> ------------------
>>> Check out the vibrant tech community on one of the world's most
>>> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>>> _______________________________________________
>>> cx-freeze-users mailing list
>>> cx-freeze-users@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/cx-freeze-users
>>>
>>>
>>
>
> ------------------------------------------------------------
> ------------------
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> _______________________________________________
> cx-freeze-users mailing list
> cx-freeze-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/cx-freeze-users
>
>
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
cx-freeze-users mailing list
cx-freeze-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cx-freeze-users

Reply via email to