Thats the very basic thing & there should be like a template for this & after searching google & VBhelp file for like 3 hours I still cant find how to do it.
Let me get to point:
I want execute exe, it will decompress a file & exit.
I have code, it works. but the CMD console window keeps popping out every time I launch my exe.
Im a beginner, so explain for beginner please.
How can I make No gui application? Im using vb 2008 express
PHP Code:Imports System
Imports System.Collections.Generic
Imports System.IO
Imports System.IO.Compression
Module Module1
Sub Main()
UncompressFile("1.gz")
End Sub
Public Sub UncompressFile(ByVal file)
'do stuff hire
End Sub
End module





Reply With Quote