Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

system calls in Visual c++

Status
Not open for further replies.

merlinv

Programmer
Jun 11, 2001
32
US
I want to use a system call i.e.

system("ftp.webpage.com")

It goes to a cmd page - but I would like to make that minimized or at least not visable.

Any suggestions?

Thanks.
 
You could try
Code:
system( "start /min ftp ftp.site.com" );
Or some variation on that theme.

--
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top