Visual Basic Poker Code
I am looking to create a video poker card game using visual basic.I have limited knowledge of visual basic 8 but was very curious about visual basic 10. View 4 Replies VS 2008 - Game Poker Hands Database Mar 29, 2009. Visual Basic / VB.NET: Jeu de poker - CodeS SourceS - Guide Visual Basic / VB.NET: Analyse d'une main dans un jeu de poker( avec toutes les cartes en.bmp ) -Guide.
Write, Run & Share VB.net code online using OneCompiler's VB.net online compiler for free. It's one of the robust, feature-rich online compilers for VB.net language, running on the latest version 16. Getting started with the OneCompiler's VB.net compiler is simple and pretty fast. The editor shows sample boilerplate code when you choose language as VB.net
. OneCompiler also has reference programs, where you can look for the sample code to get started with.
OneCompiler's VB.net online editor supports stdin and users can give inputs to programs using the STDIN textbox under the I/O tab. Following is a sample VB.net program which takes name as input and prints hello message with your name.
Visual Basic is a event driven programming language by Microsoft, first released in the year 1991.
Key Features
- Beginner's friendly language.
- Simple and object oriented programming language.
- User friendly language and easy to develop GUI based applications.
Variables
Variable is a name given to the storage area in order to identify them in our programs.
Simple syntax of Variable declaration is as follows
Variable initialization
Conditional Statements
1. If
2. If-else
3. If-else-if ladder
4. Nested-If
5. Select Case
Loops
1. For..Next
2. For..Each
3. While
4. Do-while
Video Poker Basics
Procedures
Procedure is a sub-routine which contains set of statements. Usually Procedures are written when multiple calls are required to same set of statements which increases re-usuability and modularity.
Procedures are of two types.
Basic Poker Hands
1. Functions
Basic Poker Rules
Functions return a value when they are called.
2. Sub-Procedures
Sub-procedures are similar to functions but they don't return any value.