A wee game for Aoinf or anyone who cares

Day 2,745, 03:21 Published in Ireland Ireland by Releasethe Krakken

Ok I will be short as I accidentally hit the delete button. the idea is that players who is interested in programming get introduced to VB.net using small programs. Actually i tend not to discuss programming as I like to keep some stuff to myself. But anyway since there is interest. Enjoy!

Language - VB.Net (available as free download)

Game Concept - Adaptation of Mastermind (tm)- For entertainment and education purposes only.



Basically there is a hidden code created by computer and the human player will have to deduce it. For each correct color in the correct location he gets a red button for partial hits - right color wrong location he gets a white button.



So in a row there is 10 small textboxes and 10 large textboxes and a submit button. As well as number label indicating the number of the row.

I will briefly provide you with specialized properties its up to you to figure out the font and coloring of each controls

Drawing controls: Create a control - change properties. copy paste and move it around to look like my form.

When you have done 1 row you can select all - deselct the form and the panel copy and paste all the controls on the line and move it to around until it looks like mine.

All controls:

Text - lets you enter text in the control

BackColor - The back color of the control

Forecolor - The textcolor of the control

Name - the name of he control. you will use the name to pass values to controls

Font - Lets you select font font size and whether font is bold or not etc.

My eyes is ligth sensitive so I uuse pastel colors a lot in my programs.

Small Textboxes
Multiline = true - allows you to resize the control
Readonly =true - user cannot enter text(since program will control this)

Large Textboxes
Multiline = true

Hidden Code Textboxes
Multiline = true
Readonly = true
Backcolor = colors.darkslategray
forecolor = colors.whitesmoke

Mainmenu type in text &File and below it in tab E&xit
name mnufile and mnufileexititem

Double click on exit and type - End

Ok poof im' GONE that is all that is required in PART 1 - PART 2 will follow in a bit WHS.