Results 1 to 7 of 7

Thread: [RESOLVED] how to make no gui application?

Threaded View

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Apr 2008
    Posts
    74

    [RESOLVED] how to make no gui application?

    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 
    Last edited by goldenix; Mar 9th, 2010 at 10:42 AM.

    M.V.B. 2008 Express Edition

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width