Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
otvaranje programa u c++
Author Message
dexdix Offline
Novi korisnik
*

Posts: 31
Joined: Apr 2010
Reputation: 0
Post: #1
otvaranje programa u c++
Zanima me kako da iz svog programa otvorim neki drugi program u novom prozoru bez da se moj program ugasi.
08-04-2010 10:45 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Gogy Offline
____
*

Posts: 2,311
Joined: Feb 2006
Post: #2
RE: otvaranje programa u c++
probaj:

Code:
#include <iostream>
#include <stdlib.h>
using namespace std;

int main()
{
   cout << Otvaranje aplikacije";
   system("path-do-aplikacije");

   return 0;
}

Pravila foruma | Twitter - Facebook - Google+ |


Radar404 <- moj blog
08-04-2010 10:55 PM
Visit this user's website Find all posts by this user Quote this message in a reply
dexdix Offline
Novi korisnik
*

Posts: 31
Joined: Apr 2010
Reputation: 0
Post: #3
RE: otvaranje programa u c++
Gogy Wrote:probaj: system("path-do-aplikacije");
jesam to već prije probao,ali ja želim da se novi program otvara u novom prozoru.
08-04-2010 10:58 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Gogy Offline
____
*

Posts: 2,311
Joined: Feb 2006
Post: #4
RE: otvaranje programa u c++
Novom prozoru vlastite aplikacije ili...? Nisam siguran što točno želiš.

Pravila foruma | Twitter - Facebook - Google+ |


Radar404 <- moj blog
08-04-2010 11:03 PM
Visit this user's website Find all posts by this user Quote this message in a reply
dexdix Offline
Novi korisnik
*

Posts: 31
Joined: Apr 2010
Reputation: 0
Post: #5
RE: otvaranje programa u c++
naprimjer
netko otvori program i otvore se još recimo dva zasebna programa sa strane(svaki u svojem prozoru)
(This post was last modified: 08-04-2010 11:11 PM by dexdix.)
08-04-2010 11:07 PM
Visit this user's website Find all posts by this user Quote this message in a reply
kecko Offline
Forumaš
***

Posts: 647
Joined: Nov 2009
Reputation: 20
Post: #6
RE: otvaranje programa u c++
aaha ti bi više programa pokrenuo odjednom?
09-04-2010 07:59 AM
Find all posts by this user Quote this message in a reply
danielvast Offline
Forumaš
***

Posts: 424
Joined: Dec 2009
Reputation: 22
Post: #7
RE: otvaranje programa u c++
Probaj
Code:
system("start path_do_aplikacije")

"When all else fails, read the manual."
09-04-2010 01:34 PM
Find all posts by this user Quote this message in a reply
dexdix Offline
Novi korisnik
*

Posts: 31
Joined: Apr 2010
Reputation: 0
Post: #8
RE: otvaranje programa u c++
kecko Wrote:aaha ti bi više programa pokrenuo odjednom?
DA
09-04-2010 02:24 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)