Jan 9, 2004 #1 merlinv Programmer Joined Jun 11, 2001 Messages 32 Location 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 Joined Apr 29, 2003 Messages 2,455 Location 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. --