How to hide concole window when I launch batch converter from my application?

Question: I launch your batch image converter from my application. Is there a way to hide console window that opens at every launch?

Answer: Surely it is possible. Below are examples for Visual Basic and Visual C++.

Example for Visual Basic*:

Shell("""C:\Program Files\ImageConverter Plus\ICPCL.exe" " -convertto jpg –source ""D:\Graphic Files\in\*.*" " -dest  ""D:\out\" "  dither:no  -oper Resize size:25 25 keep_prop:no compression:JPEG jpeg_quality:10 , vbHide)

Example for Visual C++*:

ShellExecute(0, "open", "C:\\Program Files\\ImageConverter Plus\\ICPCL.exe", -convertto jpg –source \"C:\\My Documents\\*.*\" -dest \"C:\\JPEG Files\" -save_opt convert_subfolders:yes restore_subfolders:yes
dither:no -oper Resize size:200 100", 0, SW_HIDE)

* This example works the same way with other support formats.