Compiling VB Project with 1 line of code !!!
With this code, you can compile into EXE files any VB project.
Original Author: Sébastien Poulin
Code
Dim VBPath
Dim Project
Path = "C:Program FilesMicrosoft Visual StudioVB98VB6.EXE 'Path of Visual Basic
Project = "C:VBProject1.vbp" 'Path of the Project
Private Sub Command1_Click()
Shell Path & " /make " & Project, vbhide
End Sub
Loading Comments ...
Comments
No comments have been added for this post.
You must be logged in to make a comment.