Visual Basic .NET (VB.NET) is a multi-paradigm, high level programming language, implemented on the .NET Framework.
Questions tagged [vb.net]
15 questions
3
votes
3 answers
What are the free 3d OOP game engines?
Could you please list a few free 3d OOP game engines, along with the pros and cons?
Embeddable in VB.net would be great.

James T
- 101
- 6
1
vote
1 answer
Why is my label not updating properly?
I am using the following code to handle experience points gains:
reqXP = (Level ^ 2 + Level + 3) * 4
If (currXP >= reqXP) Then
Level = Level + 1
expPoints = expPoints + 3
excessXP = currXP - reqXP
currXP =…

Gutanoth
- 119
- 2
0
votes
1 answer
How to simplify collision code when I have a lot of objects
Im trying to make a maze-like game and I need to simplify the code for when my player(picture box) collides with the walls of the maze(label). The code I have so far is
if pictureBox1.Bounds.IntersectsWith(label1.bounds) or _…

user30934
- 1
- 1
0
votes
1 answer
Visual Basic PictureBox
A description of my game:
When you start the game, you have a few seconds to memorize the arrangement of the grids. By the arrangement, I mean each grid is one of two colors. After the time is up, all the grids are set to the 'off' color. The player…

Matt512
- 1
- 1
-2
votes
2 answers
Making a Randomize() Function not go past 0 (VB.Net)
I am wondering on how I can prevent a Randomize() function from returning a value less than 0. Thanks!

Captain Caboose
- 25
- 1
- 8