Jan 9, 2004 #1 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.
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.
Jan 10, 2004 #2 Salem Programmer Apr 29, 2003 2,455 GB You could try Code: system( "start /min ftp ftp.site.com" ); Or some variation on that theme. -- Upvote 0 Downvote
You could try Code: system( "start /min ftp ftp.site.com" ); Or some variation on that theme. --