Visual Basic Code Maze Game

Visual Basic Code Maze Game 4,6/5 7197 votes

This Video shows you a Maze game made in Visual Basic for fun and lets you download it and it's source.

An even simpler guide than microsoft's to make the maze game in Visual basic, inbox any suggestions you would like me do do for VB. Should I Learn Visual Basic or Java First? Traffic Light System Using Visual Basic 2012 / 2010.

Membuat Jam Digital Dengan Visual Basic 6.0 #Yudhiaz Blacksider. How To Make A Simple Game In VB.NET. Visual Basic 2010 Tutorial - Lesson 1 Install Visual Studio 2010, Hello World App. New Coding Experiences for C# and Visual Basic in Visual Studio 2015. How to create a Slot Machine using Random (Rnd) command in VB6. INSERT, DELETE, UPDATE AND SELECT Data in MS-Access with VB 2008 Part 1.

Visual Basic Tutorial 2017. Mahabharat episode 133 hot star app. How to Create Picture Puzzle Game in C#.

Hi evereybody i have recently moved coleges and have very limited knowledge of visual basic, i have completed the first assignment acheived a merit but the 2nd assignment is too hard for me. I have to create a maze. I have managed to set the keypresses so the shape moves around the screen and will not go off the screen, mny next task was to create the maze using the lines, i have had a little help and managed to get 1 line so the shape will not pass through it but now i am stuck any help out there thanks.

[quote name='antgraham' date='10 Jan, 2008 - 05:11 AM' post='295953'] hi evereybody i have recently moved coleges and have very limited knowledge of visual basic, i have completed the first assignment acheived a merit but the 2nd assignment is too hard for me. I have to create a maze.

Maze

Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode = vbKeyRight Then If shpball.Left + shpball.Width lne1.X1 And _ shpball.Top lne1.Y1 Then 'do nothing Else shpball.Left = shpball.Left + 100 End If End If If KeyCode = vbKeyLeft Then If shpball.Left + shpball.Left = frmmaze.ScaleHeight Then 'do nothing Else shpball.Top = shpball.Top + 100 End If End If End Sub this is my code which is similar to yours. My ball wont move throught the wall when the right key id pressed the problem is that when i go round the wall it will go back through the wall when i press left. Also when im on the right hand side of the line it wont let me move right when the ball is in line with the line itself, why is this? EDIT: Please use code tags in the future when posting code, it make it much easier for the reader to read the code, use them like so => PsychoCoder This post has been edited by PsychoCoder: 24 January 2008 - 07:05 AM.