Closed Thread
Results 1 to 8 of 8

Thread: program to program

  1. #1
    opencircles is offline Newbie
    Join Date
    Oct 2009
    Posts
    8
    Rep Power
    0

    program to program

    how in python do you take one program and have an input that opens another program screen? sry if wording is bad i dont no how to explain

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    manux's Avatar
    manux is offline Programming Professional
    Join Date
    Oct 2008
    Posts
    234
    Blog Entries
    1
    Rep Power
    14

    Re: program to program

    Hmm, you can use pipes to have controlled stdin/out depending on what you want,
    if you are developing 2 programs that must communicate you can use sockets+pickle(or any python serializer).
    I'm not sure I understand your question though.

  4. #3
    opencircles is offline Newbie
    Join Date
    Oct 2009
    Posts
    8
    Rep Power
    0

    Re: program to program

    like if i have a menu program and some1 selects sumtin how do i get it to go to what they selected?

  5. #4
    manux's Avatar
    manux is offline Programming Professional
    Join Date
    Oct 2008
    Posts
    234
    Blog Entries
    1
    Rep Power
    14

    Re: program to program

    Hmm, I'm not sure what you want... To open multiple windows or open multiple programs?

  6. #5
    opencircles is offline Newbie
    Join Date
    Oct 2009
    Posts
    8
    Rep Power
    0

    Re: program to program

    if i give a menue and some1 clicks a selection. so to get to the selection isnt that a second program?

  7. #6
    Join Date
    Jul 2008
    Location
    Somewhere that is shorter to write than "In the gloomy shadows of my personal namespace"
    Posts
    10,725
    Blog Entries
    2
    Rep Power
    90

    Re: program to program

    You want to run an external program from python, I think. Look here:

    Run external program in python - Dev Shed
    Python execute External Application. How?

    Basically you can use
    Code:
    os.system("myprogram.exe")
    Hey! Check out my new Toyota keyboaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

  8. #7
    Hot_Milo23's Avatar
    Hot_Milo23 is offline Programmer
    Join Date
    Jun 2009
    Location
    Western Australia
    Posts
    120
    Rep Power
    11

    Re: program to program

    Posted via CodeCall Mobile
    oh! I didnt understand the question either, i thought u meant, to have one gui window open another gui window. Haha.

  9. #8
    Join Date
    Jul 2008
    Location
    Somewhere that is shorter to write than "In the gloomy shadows of my personal namespace"
    Posts
    10,725
    Blog Entries
    2
    Rep Power
    90

    Re: program to program

    I'm not sure if I understood him right either, but.. Worth a try
    Hey! Check out my new Toyota keyboaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Program for search terms within a program
    By 817moose in forum General Programming
    Replies: 4
    Last Post: 11-03-2010, 01:07 PM
  2. Why do you program/Why are you learning to program?
    By taylerhughes in forum The Lounge
    Replies: 34
    Last Post: 08-11-2010, 12:26 AM
  3. Replies: 9
    Last Post: 03-14-2010, 08:44 PM
  4. Execute a program from within another program
    By gabrielle_l in forum Java Help
    Replies: 4
    Last Post: 02-17-2010, 02:47 PM
  5. Replies: 8
    Last Post: 05-11-2009, 01:41 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts