Click here to Skip to main content
15,894,546 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
what is the simple standalone project using visual basic?
what I meant is a standalone such as application that using in cyber cafe, student registration. i dont know how to describe it.sory, my english not good.
Posted
Updated 6-Sep-12 0:08am
v2
Comments
Sergey Alexandrovich Kryukov 6-Sep-12 3:34am    
Not a valid question.
--SA

1 solution

There isn't one.

There is no single project which you can do with VB - you can do a huge variety of projects form a simple "guess the number" game to a global networked financial information system.

If you mean "what is the simplest project type to start with" then try creaing a Console Project - they are pretty basic, and all you need to get started is the two lines
VB
Dim s As String = Console.ReadLine()
Console.WriteLine("You entered {0}", s)
 
Share this answer
 
Comments
_Amy 6-Sep-12 3:06am    
Nice answer. +5!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900