Jump to content

[Help] VB .net DOWNLOAD LINK


ASIO

Recommended Posts

  • Replies 2
  • Views 880
  • Created
  • Last Reply

or you can dl the ms .net framework
http://www.microsoft.com/en-us/download/details.aspx?id=17851

locate vbc,exe in a folder that looks like this (the red part might vary)
C:\Windows\Microsoft.NET\Framework\v4.0.30319
open cmd and add this folder to your path like this
C:\> set path="C:\Windows\Microsoft.NET\Framework\v4.0.30319;%path%

now you're ready to go.

open notepad and paste this:

Module Module1    Public Sub Main()        system.console.writeline("I just made my first VB.NET program, and all i got was this lame message")    end subend module

save it as hello.vb in a location of your choice

open cmd and type vbc hello.vb

you should get your newly compiled executable right away

try it typing hello

Link to comment
Share on other sites


Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...