Welcome to VB Programming oasis
Would you like to make this site your homepage? It's fast and easy...
Yes, Please make this my home page!
V I S U A L B A S I C P R O G R A M
'''''''''''''''''''''''''' Ho to compile this program ''''
'''
'''
''''
'' Author :ZT
'' Date :Oct 22 2017
'' add the path set path=%path%;c:windows\Microsoft.NET\Framework\v2.0.50727
'' from the local directory issue the following compile error
'' vbc /out:go.exe
'' THE OUTPUT is go.exe NOW
'' USE go.exe to RUN the Console Application
''''
''''
'''''''''''''''''''''''''''''''''''' END '''''''''''''''''''''
module mymodule
sub main()
for i=0 to 5
MSGBOX("...VB .. is a compelentary to C# "&" "&i)
next
nsp1.mymodule1.welcome1()
end sub
sub Welcome()
MSGBOX("Welcome ...VB .. is a compelentary to C# ")
end sub
end module
'
'
namespace nsp1
module mymodule1
sub Welcome1()
MSGBOX("...VB .. is a compelentary to C# I am nsp1.mymodule1.welcome1()")
end sub
end module
'
'
module mymodule2
end module
end namespace