Visual basic
Welcome to our Visual Basics Games page

Open Question: I need help editing a game file.?

I'm trying to edit a game file and I'm opening the file in Microsoft Visual Basic C++ and every time I try to save it, it says that Access is denied. I went into that specific files properties and changed it to where I should have full control to edit, write and whatever else I want to do, but it keeps doing the same thing. Any suggestions?  more

Open Question: I don't feel I'm learning enough in school?

First of all, thanks to everyone who spends the time reading this and also to your answers =]. I'm a junior in high school right now and I'm really worried about my future. I don't have the normal high school student schedule right now, mainly because I go to another school program during the school day(Technology Center of Dupage) where I learn to use computer programs such as Maya, Flash, Photoshop, Visual Basic, and more. These are all programs used in gaming and I have personally visited a gaming company and have seen that they use the same exact programs as I am learning to use. Though it may seem like I'm getting a good start in my future, I have been slacking this year and haven't learned much about the programs. It's only been 1 year, but I feel like I will fail in the future. I will make up for my loss in my senior year and learn as much as I can. With all that said, my main question is: should I be worrying about not learning enough? Do you feel that I'm capable of going to college and learn everything that I need to? Is college where I REALLY start learning about the things I need to know for my future job? Or is high school a part of it? Am I being pretty dumb right now and stressing for no reason? I've been stressing out about if I have to be ready right now or not.  more

Open Question: How can I do the following in Visual basic .net 2005?

Okay. Im developing a calculator for a game called runescape. I want people don't have to complete so many boxes with information. I need to find a way auto-complete a textbox with the information in this page: http://hiscore.runescape.com/index_lite.ws?player=dangerosking The page is totally blank. It only contains numbers but them are not random numbers. Them contain the information I want to complete the texboxes with. I'll reformulate the question if you don't understand it. Excuse me for my bad english.  more

Open Question: It's my first day working with Visual Basic and I'm trying to make a new window to add more code, how can I do?

So I have a main page with some info. it says "games sections" and has 4 buttons with question marks. How do I make it so when you click on the 1st button (called 'lvl1') it opens a new window with the game(I already have the code for it). I don't mean a message window but just a new window with more lfash.  more

Open Question: Visual Basic Ontime HELP!?

Hi, we are making a game in Excel similar to the Pandemic Flash Game. We want the evolution points to increase around every 30 seconds. How is this possible? How should we create the timer so that every 30 seconds the evolution points will add by one or two? Help desperately needed. Thanks.  more

Open Question: How do I select a cell in Visual Basic and erase all its contents?

We're making a board game using Microsoft Excel/Visual Basic, and when we 'pick up' the piece on a cell, the contents need to disappear. Basically, when I select/click on a cell, the contents should be erased.  more

Open Question: microsoft visual basic 6.0 (coding for minesweeper)?

ok, im making a game like minesweeper and i need help with the option buttons that make you lose when you click on them I have 200+ option buttons in the form. When you click on an option button with no bomb, the option button turns green. and when you click on one with a bomb, it turns red and you lose. I cant really figure out how to do this. Also, every time the form loads, it will randomize where the badd or good buttons are. if anyone could help that would be sweet. Could you give a in-depth coding for me since im not too good at VB yet.  more

Resolved Question: Visual Basic 2008 Express Edition project idea?

I know there are many questions already on this so I prefer you not link to them because I looked at them all. I have created a webrowser, tic tac toe, hangman, and guess the number. It doesnt have to be a game, I just want an idea for something not to hard, not to easy, just nothing with databases yet...still working on a recipe database program. But I do want to get away from that recipe program for awhile, any suggestions are appreciated.  more

Open Question: How do i fix this problem on my visual basic snake game?

okay so i have everything in place and my snake moving and able to eat the fruit. my problem is that when the snake grows and i try to turn it instead of the snake kinking and then turning the whole object just begins to move please help Public Class frmStartSnake Private Sub frmStartSnake_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub Private Sub frmStartSnake_Resize(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Resize Me.Height = 500 Me.Width = 500 End Sub 'This code was from the FPP tips Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As _ System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown Select Case e.KeyValue.ToString Case Windows.Forms.Keys.Left Timer2.Dispose() Timer3.Stop() Timer4.Stop() 'Me.PictureBox1.Left -= 20 Timer1.Start() Case Windows.Forms.Keys.Right Timer1.Dispose() Timer3.Stop() Timer4.Stop() 'Me.PictureBox1.Left += 20 Timer2.Start() Case Windows.For Case Windows.Forms.Keys.Up Timer1.Stop() Timer2.Stop() Timer4.Dispose() 'Me.PictureBox1.Top -= 20 Timer3.Start() Case Windows.Forms.Keys.Down Timer1.Stop() Timer2.Stop() Timer3.Stop() 'Me.PictureBox1.Top += 20 Timer4.Start() End Select Dim recSnake As New Rectangle(picSnake.Left, picSnake.Top, picSnake.Width, picSnake.Height) Dim recFruit As New Rectangle(picFruit.Left, picFruit.Top, picFruit.Width, picFruit.Height) Dim recForm As New Rectangle(Me.Left, Me.Top, Me.Width, Me.Height) Dim recFruit2 As New Rectangle(picFruit2.Left, picFruit2.Top, picFruit2.Width, picFruit2.Height) Dim sngScore As Single If recSnake.IntersectsWith(recFruit) Then picFruit.Visible = False picFruit2.Visible = True picSnake.Height = 15 picSnake.Width = 11 sngScore = sngScore + 1 End If If recSnake.IntersectsWith(recFruit2) Then picFruit2.Visible = False picFruit3.Visible = True picSnake.Height = 20 picSnake.Width = 11 sngScore = sngScore + 1 End If End Sub  more

Open Question: How do you edit a text (*.txt) Document in Visual Basic 6?

Hi all. I'm writing a program that will change some values in a config file. The text is layed out like this: 1, VALUE* 2, VALUE* 3, VALUE* *A given number I'd like to be able to change. So I want to be able to replace VALUE with something else. Thanks ever so much, the program is for a free game console I am making and best answer gets max points and a credit in the program.  more

Voting Question: How to play Travian with Visual Basic?

I want to make travian (browser based game, www.travian.com) easily played in a program. I want to use Visual Basic internet controls to allow me to do that. When I attempted to do it I got a runtime error after i logged in using webbrowser. I just started making it so i dont really have much source. I started simple but just checking if I could play travian in a program. This is the only source i have added so far Private Sub Form_Load() WebBrowser1.Navigate ("http://s1.travian.com/") End Sub I run the program and im at the login screen, i login, then the page loads and i get this runtime error "Run-time error '-2 (fffffffe)' " After i get past this issue then Ill make the program more complicated.  more

Voting Question: visual basic 6 help, college assignment?

i am writing a program for college that is a guessing game, i want to know how i get a menu to ask the user to play again and restart the application if he guesses correctly?? This is my code Private Sub cmdCommand_Click() 'This program will allow two users to enter their names 'The program will allow player one to enter a number between 1 100 and then player two must guess the number 'The program will be allowed to loop five times and then it will be game over if the correct answer is not guessed 'Integer names Dim sName1 As String Dim sName2 As String Dim iGuess As Integer Dim iAnswer As Integer Dim iLoop As Integer 'Read text box values and assignee them to a variable sName1 = txtName1.Text sName2 = txtName2.Text 'Tells player 2 to look away MsgBox sName2 & ", Look away now", vbOKOnly 'tells player 1 to enter a number between 1 & 100 iAnswer = InputBox(sName1 & ", please type a number between 1 & 100") 'Do loop start Do 'I loop adds 1 after each guess iLoop = iLoop + 1 'Player to inouts his/her guess iGuess = InputBox(sName2 & " please type in your guess") If iGuess = iAnswer Then MsgBox "Congratulations, you gussed correctly" ElseIf iGuess < iAnswer Then MsgBox "your guess is too low" ElseIf iGuess > iAnswer Then MsgBox "Your guess is too high" End If 'Loop untill guess is correct or the program has looped five times Loop Until iLoop = 5 Or iGuess = iAnswer If iLoop = 5 Then MsgBox "You didn't guess correctly within your five allowed guesses, the correct answer was " & iAnswer End If Exit Sub End Sub  more

Resolved Question: How can I close the whole workbook in excel using vba codes?

I am trying to make an "exit button" for my game in visual basic. Is it possible that when you click the exit button, the whole application (including the excel workbook) will close?  more

Resolved Question: I need help in Visual Basic?

i have made a little bit of a maths game and when i click on the "Next" buttoo i want it to come up with a message box saying which of the questions i have gotton right and which ones i have gotton wrong. if you can help can you make it simple for me because i'm not very good at this. Here is my code so far: Private Sub BtnNext_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnNext.Click If A1.Text = 72 And A2.Text = 87 And A3.Text = 0.5 And A4.Text = 348.45 Then MessageBox.Show("Well Done, You got em all. Carry on") ElseIf A1.Text = 72 And A2.Text = 87 And A3.Text = 0.5 Then MessageBox.Show("You got the last one wrong, Unlucky.") ElseIf A1.Text = 72 And A2.Text = 87 And A4.Text = 348.45 Then MessageBox.Show("You got the third one wrong, Unlucky.") ElseIf A1.Text = 72 And A3.Text = 0.5 And A4.Text = 348.45 Then MessageBox.Show("You got the second one wrong, Unlucky.") ElseIf A2.Text = 87 And A3.Text = 0.5 And A4.Text = 348.45 Then MessageBox.Show("You got the first one wrong, Unlucky.") End If End Sub  more

Resolved Question: How do i kill a process with visual basic?

My computer has been acting up, often when i exit out of counter-strike source the hl2.exe process is still running so I need to go into task manager and end it a lot. I was wondering if anyone could tell me how to kill a process with vb so that I could put it in a command button. I have a "macro" on my desktop that I use to launch all my games/movies so I would just add it to that, and I have that up almost all the time so it would actually be faster to use the button then go to task manager, find the process and end it. I cant put "Dim RunningProcess As System.Diagnostics.Process = Process." it automaticly puts SystemColorConstants after i type in system and try to put . in there, any other ideas? I downloaded vb8 for some reason it does not like the line of code that you gave me, it says "Index was outside the bounds of the array." I typed in exactly what you gave me. any ideas why it wouldn't like it? this is what was highlighted when i tried to run it: runningprocess As System.Diagnostics.Process = Process.GetProcessesByName("hl2.exe")(0)  more

Resolved Question: rhh...would you rate these lyrics...?

I notice THE MORBID EMO posting alot tonight so thought I would do some real crazy multi sh!t. My mental capacity spans for galaxies, eradicate galactics Rapidly, my fate could battle weight and gravitate the planets Evaporate the axis, defyin’ the laws of physics To cause eclipses, and have the gods inflict apocalypses Have the stars evicted, and blow the light away Then right away, I’ll reverse the cycle and turn the night to day So find a way to get your game to par, raise the bar Yo you aint a star, fuck what these A&R’s, say you are So play your part, or I'ma have to dead you already With a heavy machete, ready to turn ya head to spaghetti Take every single lyrical syllable literal Spittin' metaphysical miracles, like in spiritual rituals Visible vividness/ mixed in biblical scriptures, Depicts subliminal pictures, projectin' visual images Precision is key on my level, when bringin' deviants that'll Load they glocks and blow off a piece of your temple Me and the devil are embraced in deep discussions Facial reconstruction, beef with us'n face the repercussions Give mc's concussions, 'til their basic reproductions Are basically eruptin', spontaneously combustin' The Reaper’s comin’ with a lethal prescription The needle incision, will leave you twitchin' in the fetal position The evil has risen, my pen is possessed by a spirit That spreads through my lyrics, and infects you the second you hear it It’s best that you fear it, once it affects your appearance It’ll appear when you peer in any mirror when you're near it The cure is an injectional dose, as you convulse While dispensin' projectional jolts, of electrical volts what do you think? @Nexx-look don't bring your religion to me and I won't bring my non religion to you...see christians are always too judgmental, if you would've made a song or lyric about god, I wouldn't say blah blah blah blah to you...wtf don't post on my sh!t then, I'ma do me. @Morbid, maybe so, I have a life don't listen to music all the time, with your lame @ss man. you still can't rap better than me or do sh!t better than me, except maybe, just maybe.... just maybe... na, I'm phucking with you, ain't shit you can do better than me. just maybe, just maybe...nope still nothing, let's battle right now 10 quick bars.  more

Resolved Question: Microsoft Visual Basic War Program?

I was wondering if there was any code for a program on Microsoft Visual Studio C++ that allows people to play war (a card game). if there is, i need it. i would also appreciate a pucture of what the form should look like I was wondering if there was any code for a program on Microsoft Visual Studio (Visual Basic) that allows people to play war (a card game). if there is, i need it. i would also appreciate a pucture of what the form should look like  more

Voting Question: help with making a simple visual basic program?

i used to do a lot of visual basic, butg i have moved on since, and do a lot of game programming in other languages, something which i found futile to attempt in vb as there was very little choice in game options. ( totally my opinion). i used to be able to do this. i need to know if any of ou can help me with this progam (actually making it - it will take a very short while) - since all my time is tied up with studying for the exams. the program is actually quite simple: in visual basic, or any other program there has tgo be a part where we can copy in data : (test scores) so for eg : micheal blah = 73% george moo = 87% hilary duff = 68 % and the i need to be able to put in exactly 10 people details. and in the program in a screen will be 10 horses, each with the peoples name underneath it ( the names that go into the data feilds) and they will move in accordance with their test score percentage so if they got 73% then they will move say 7.3 cm forward and if they got 59 then they move 5.9 cm forward. and right at the end, within the 10 peoples data, the one whoi got the highest test score, should be the furthest away from the start. here are the needed things. any sort of program compiler or maker or whatever ( e.g. vb6 or vb.net) and the horse images : http://logo.cafepress.com/2/5605360.2648822.JPG http://potlee.com/wp-content/uploads/2008/11/cartoon-horse-yellowsmaller.jpg oh yeh can teh background be white please so you cant see the background difference with the horses and the programs screen. thanks to anyone and everyone whoh helps me with this. i would take the time to study what i forgot ages ago, since i do much more complicated stuff now, but i am studying for exams, and all my time should go towards that. thankyou and good day to you all yehm813 oh yeh and btw way guys, use any lamguage u know, like c or ++ or anyfin, as long as any other computer can use it.  more

Voting Question: roblox hack help with visual basics?

i have visual basic and i'me trying to make a game trainor for roblox and for one i don't know what it is running flash or java? and i have a swf changer so i can put the video file in my decomplier but i don't know wat the video file is for roblox and that's wat i need  more

Resolved Question: play station 3 programming?

Hello i was wondering if anybody knew how to program games on the ps3 console. If so please tell me or if you know links to programming software for the ps3 please tell me i have had experance with many lanuages visual basic c# c ++ but now i need to make ps3 games so please help me out thanks.  more

Resolved Question: Visual Basic project ideas?

I need help coming up with an idea for a final project in my high school computer science class. I've got 2 weeks to work on it, and my knowledge is pretty basic. One of the last things we did was make a hangman game application. Any ideas are appreciated!  more

Resolved Question: visual basic 6.0 coding question involving loops?

im doing a project where its like a number guessing game and the user can choose the range of numbers and guesses from separate listboxes. how do i loop the number of guesses based on which selection the user chooses from the listbox? like i have intGuess = InputBox("Enter your first guess.") but how do you make it keep looping to say enter your second guess..etc.  more

Resolved Question: Question about Microsoft Visual Basic 2008 Express?

Ok, I'm trying to make a flash game trainer, which for the most part I've done correctly. However, I can't seem to edit the Window header, 'Form1' to something more appropriate. Similarly, I cannot edit button names. I seem to get various error messages, and sometimes not at all. Any ideas how to fix it? Thank you.  more

Resolved Question: Simple question about Microsoft Visual Basic 2008 Express...?

Ok, I'm trying to make a flash game trainer, which for the most part I've done correctly. However, I can't seem to edit the Window header, 'Form1' to something more appropriate. Similarly, I cannot edit button names. I seem to get various error messages, and sometimes not at all. Any ideas how to fix it? Thank you.  more

Resolved Question: Visual Basic 6 HELP PLEASE!?

Im pretty new to visual basic and am trying to make a simple game. Im using picture boxes for tiles in my game and there all exactly the same size and they all have the same outside colour. im trying to create boundary's for my character however i keep getting glitches whats the best ways to do it with picture boxes? the code im using at the moment is where i have to define each area that the character cant go in and i tell it to move my character back as much as its coming forward. e.g If Picture2(0).Top < Picture1(3).Top + 495 Then If Picture2(0).Left < Picture1(134).Left + 495 Then Picture2(0).Top = Picture2(0).Top + 20 (fixed)..........  more

Resolved Question: Visual Basic Help Please?

I am currently programming a Jeopardy game in Visual Basic 2008. I have the basic functionality of the game working, but I have designed it so the user can set his or her own questions, answers and categories. The problem is, I have never had to design a game that saved the settings upon closing. I want my Jeopardy game to automatically save what they entered for the questions, categories and answers for the next time they play. I know it is possible, but I don't know how to do it. Any ideas would be greatly appreciated. I understand that XML files are probably the best way to go, the only problem is the fact that I don't know how to get the program to write to the XML files. Novice computer users will be using this program... (Specifically a coworker of mine, it is made specifically to aid her in training new employees), and I can't expect her to jump into an XML file and know how to edit it. She specifically requested this feature so she could quickly and easily keep the questions in the game up to date.  more

Voting Question: The Game to diss Rick Ross? Work with 50 Cent?

50 CENT INFORMATION Well, all remains quit on the home front with 50 Cent. But there are some rumors buzzing in the background. Fif has been shooting a new movie with Keifer Sutherland and that is why he has been kind of quiet. I heard that the summer is where the real “heat” is going to come down. Also, they said that there is still a tour planned for Dr. Dre, Eminem and 50 this summer or so. A source of mine continuously keeps hearing that The Game wants to work with 50 Cent, but Jimmy Henchman isn’t with it. If you remember the last “diss” Game had with Rick Ross…it really didn’t have any barbed words for 50, even though he was on it. You know Jimmy and 50 have their own set of issues as well. Rumor has is, 50 Cent really wants out of his Interscope contract and hopes to go to either Def Jam or Atlantic. Not sure how factual that is, but I’ve been hearing for a long time that Lloyd Banks will end up over there. Tony Yayo may be going independent. I heard that 50 Cent is still committed to making Mobb Deep pop when Prodigy gets out of jail. It would have been nice to have seen him help Hav with that ill-fated solo project! I also hear that there may be a future 50/Jadakiss song coming down the line. Jada continues to sell very well. I see him striking gold. EMINEM RUMOR... I heard that Eminem and his success is really going to dictate what happens for EVERY artist on the roster at Shady/Aftermath/G-Unit. I’m not going to into more detail, but if he doesn’t sell a lot, it could be catastrophic! Good to see an emcee actually SPITTIN! Lets get back to basics, kids! Lyrics, visuals and concepts! THE GAME UPSET AT ROCK ROSS? This is a separate rumor altogether, but it goes well with the previous one under the 50 Cent category. A friend of my friend out in L.A. said The Game was on the radio and claims that The Game said he would diss Rick Ross if he dissed Eminem again. According to rumors, The Game said he’s not concerned with 50 Cent and Ross going at him, but he wants Ross to leave Em and Dre out of it. Now…this sounds interesting to me. Also, I heard that Rick Ross “begged” him to be on the remix of “Mafia Music” and diss 50 Cent. Now, Game was on it, but didn’t really go at 50 like that. I also heard Game had some unsavory things to say about Ross’ C.O. past. Game reportedly stated that, “I recorded my verse and sent it to him, because I was smoking weed I didn't want to get a citation or piss tested and sent to my P.O.” Oh boy. I hope this is wrong, because I definitely don’t want to see The Game and Ross clashing! EMINEM VS RICK ROSS LOOMING? This could be just another internet rumor, but its worth a note. There are rumors in circulation that state that Eminem is about to lyrically lash Rick Ross. That’s right. Even though his CD is close to dropping, they are saying that Em is also taking some time in the studio to record some bars for Rick Ross. Not looking like anything beyond lyrics will be directed at Ross and that is a criticism Ross had of 50 Cent, that he did a lot of videos to battle. Anyway. As always, we’ll see!  more

Resolved Question: What skills or trades do you have?

I feel like im lacking skills or trades. I can make flash games, create a fully functional website from scratch, program in visual basic, and i know a lot about computers I'm very knowledgable about cars, and i considar myself a very good driver. I'm skilled at lockpicking I'm good at photography I know how to defend myself with Krav Maga I love thinking up new ideas/practical inventions I have an extremely large vocabulary, although I dont exactly use it all the time.. I can punch a speedbag and keep it going for as long as I want I'm a good shot with a gun, also very knowledgeable about them. I can drive a boat in tricky waters with a lot of traffic I have many survival skills And I have a lot (too much) trivial knowledge Those are some of my skills, most are useless, atleast I think. Which is why I think i need some more, so list yours. maybe give me some ideas or help.  more

Voting Question: best progran make 3d games?

i want best program make 3d games without using language as visual basic or anything else as fps or 3dgamemaker  more

Resolved Question: How do i make an auto-invite program?

I have Microsoft visual basic and i would like to make an auto invite program for an imob game for the ipod touch/iphone. How would i make this using this or any other free program.  more

Voting Question: How to program AI in Visual Basic .NET 2008?

I am studying Visual Basic 9. In the past, I know most real coding was done in C, but today the only difference between C and VB is the syntax. I have been programming games, and so far, my method has been to define all possible move combinations, using a very long list of Elseif having it first look for moves where it would win, next look for moves where the user would win, then work it's way down to free moves, which I use multiple lists for that with random values to make it not so predictable. That method seems to work great, but I don't consider it true AI, and it is very time consuming, especially now that my games are getting more complicated. What I need is a shorter way of doing it. Ideally, I'd like a method where the program figures out for itself ideal combinations, a learning AI, but any online guides or downloadable books that will teach me simpler methods of programming AI in Visual Basic .NET is what I need. For example, Chess AI. I can't imagine that it is ever done the way I do it. But I can't find any simple tutorials explaining how it is done. I don't want source code, copies of someone else's work, I want to learn how to do it myself, even if someone else's work would be better, the point is to learn. Any information would be helpful. But I'd like to find a way to do what I want in Visual Basic .NET and VB .NET only. (I don't know any other languages at this time.) Thanks. I am not looking for methods of AI for an existing program, rather for new more complicated programs. Even if it is not chess AI, some examples of AI methods would be useful. I have seen allot of books on the shelf, too many, and most of them are so long and drawn out without actually getting into anything serious. I learn by doing and don't really internalize it if I don't do a bit here and a bit there and gradually move into it. I would still rather a website because I don't live near a bookstore. I can't exactly flip through the pages online to see if it has what I need, so a suggestion would also be helpful.  more

Resolved Question: Need Help!! Making a game with visual basic 6.?

Im making a game where a ships shoots laser at other aline ships. Ive already got the laser thing working but dont know how to get the ship to dissappear after the laser touches it. Anybody Know????  more

Voting Question: Visual Basic Keyboard Help?

I'm making a game and I need 2 keys on the keyboard to work at the same tame(ex: A and left key). When they are held down at the same time, only one key works. How do I make it so they both work. Visual Basic 6.0  more

Resolved Question: How to create games using Microsoft Visual Basic 2008 Express Edition?

I am still a beginner and is still learning how to use it. I would like to learn how to make games using Microsoft Visual Basic 2008 Express Edition. If you could please give me the code  more

Resolved Question: Good (Free) 3D FPS Game Engine?

I've looked through some lists but basically can't choose. Features it must have; Physics (knock over barrels etc) Open Source (Not needed but nice) Able to Customize Menus (GUI, Main Menu) A Good Water Effect My Programming EXP; Visual Basic Java C++ Engines I've tried and don't need listed Blender FPS Creator  more

Voting Question: How do i use a scrollbar in visual basic?

I am making a gallery of pictures for a game in visual basic and i would like to make it so that you can scroll thorough the pictures with a scroll bar. How could i do this? I am using a img box to display my pictures  more

Resolved Question: Public Declarations in Visual Basic 2008?

How do I add a public declaration to be called in private subs using VB 2008? So far my code looks like this (I know it's wrong but not sure how to fix it - I'm new to this so please explain simply): Public Class Form1 Dim rand1 Randomize() rand1 = Int((Rnd() * 10)) + 1 Dim rand2 Randomize() rand2 = Int((Rnd() * 10)) + 1 Dim rand3 Randomize() rand3 = Int((Rnd() * 10)) + 1 Dim rand4 Randomize() rand4 = Int((Rnd() * 10)) + 1 Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click If TextBox1.Text = rand1 Then If TextBox2.Text = rand2 Then If TextBox3.Text = rand3 Then If TextBox4.Text = rand4 Then MsgBox("Well Done!! You guessed the number right - it was " + rand1 + rand2 + rand3 + rand4 + "!!") End If End If End If End If End Sub End Class I'm creating a mastermind style game and need to call rand1, rand2, rand3, rand4 at any point without those numbers changing Thanks, Jake  more

Resolved Question: Could i create palm OS applications using visual basic?

if so would i have to download some type of software (such as XNA game studio for c#) or would it just be using a special type of code?  more

Resolved Question: I'm taking a Visual Basic but I can't figure out how to take a whole word and change it into *'s. Anybody know?

I'm taking a Visual Basic but I can't figure out how to take a whole word for a Hangman game and change it into *'s or dashes (-). I'm doing it in a loop but I can't figure out what I'm doing wrong. Here's what I have so far: For i = 1 To i = Master.Length If Asc(Mid(Master, i)) > 65 Or Asc(Mid(Master, i)) < 90 Then Display = Display + Mid(Master, i) Else Display = Display + "*" End If Next i Thanks!  more

Resolved Question: how to use visual basic windows form applications?

how would i use a windows app created in visual basic... outside of visual basic.. i have created a neat math game for my niece. how can i make the game available to her, so she doesn't have to run VB and hit F5?  more

Voting Question: How can I import SWF files into a Visual Basic 6 Simple EXE application?

How can I import SWF files into a Visual Basic 6 Simple EXE application? I need to make a Flash Game Trainer and it is important. And... how can I find variables... if you know... Thanks!  more

Voting Question: Visual Basic 5.0 help?

At my school we use Visual Basic 6.0 and I wanted to try something that we learned about arrays and using notepad as a cheap database. We would use thinks like: Open "Filename.txt" For Input As #1 Input #1, strVARIABLE lblVARIABLE = str VARIABLE So basically it'd take the first line from the notepade, read it, and set strVARIABLEs name as that and then the form would display whatever was written there. I got back home and tried to make a sort of quiz game but I have Visual basic 5.0 and whenever I try to put in Input it says "Input past end of file" but I don't know what that means :l Any help would be great thanks  more

Resolved Question: I was looking to go to AAU (Academy of Art University), am i expected to know much about the courses/major?

I'm going to be a senior in high school and was looking to apply at AAU. I'm planning to take courses in animation and visual effects but I have no real education in either one of them, I just have a strong passion for video games and want to pursue a career with them. I was wondering if I will be ok or if they're going to expect me to understand some basic things already? ...Should i begin somewhere else and then transfer their?  more

Resolved Question: advice on game development?

im thinking about learning to programm and take some courses--whaty ones should i take which will be beneficial in the future-my main goal is to make money with the things i create. should i learn more flash--(i know the basis)the whole flash game sponsors--i heard you can get good games sponsored by companies like Armorgames for like 500-1000$ should i learn like C++ or Visual Basic-- --Can i mek money out of these things- btw--this is supposed to be a side thing , not my main life  more

Resolved Question: i want to be a programmer and learn a language its confusing which one should i start with?

im a high school student and i dont have alot of social life and i dont do a lot of homework i wanna spend my time on a better way than playing runescape and world of warcraft for 3 hours a day i wanna start what was my dream career when i was 8 being a programmer and designing games for ea games now i also wanna be able to write softwares some people said start with visual basic some said dont it will confuse u and u wont be able to learn another language c looks fine and after c++ but what about the rest? and whats this java eclipse thing, and i have downloaded over 30 ebooks about hacking/programming plz i need to understand and learn whats happening and no one learns anything from do this do that without major explanations and goodbye. ive reserached for hours and for begginers i learned that the best is python,c,visual basics is this true? y or y not thank you in advance i know i asked alot of questions but if you can answer even only one i would be extremely thankful  more

Resolved Question: Using Visual Basic, how would I reset a board game using coding?

 more

Resolved Question: hi, i know there are a lot of programmer dudes out there so i want to know in visual basic 6.0 how can i run a?

game gta san Andreas by a click of a button. i want to make it an executable program. please give me an eg and syntax. help thanks  more

Resolved Question: Visual Basic 2005 help: Making a game; how to save settings?

When i say settings, i mean the lives left or if item1 = true (meaning you got the item). How would i code the save dialog to record all this? Could someone give me an example? Thanks in advance :P  more

Resolved Question: How do I output a new line of text from a text document using Visual Basic?

So I'm writing this hangman game. The 1st word is "xxx" and 2nd word is "yyy". These 2 words are stored in a text (notepad) file. In form_load, I called the first word. But how do I read the 2nd word - aka a new line in the text file - after the user finishes guessing the 1st word? Thanks for all your anticipated help :)  more

Resolved Question: about user acceptance testing?

hello.. i build a game called gomoku in visual basic. now i have to prerpare acceptance test for it.....what are the questions that could be asked in testing......?  more

Visual Basics Games Article

Basics of SEO optimization redefined with organic SEO analysis tips

This includes several kinds of work done but firstly we have to understand the basics of ethical organic SEO and the requirement of SEO in all kinds of small business.Why SEO is needed of all small business owners?SEO is nothing but a quality methodology which increases a site reputation into the various search engines through the keywords of that site. Nowadays every small business should acquire SEO services (http://www.seosydney.net.au/) to highlight their site into the search engines. An ethical SEO analyst gives your business the superb edge from your competitors over enormous competition by getting top placements in a steady manner. The end results are drastic reductions of cost over traditional media advertising process due to:1. Rising local business to the global arena with tiny expenditure.2. more

15 minutes of flame

If you keep the pantry well stocked with the basics, such as good-quality olive oil and vinegars, mustard, pasta and rice, there is no need to compromise with ready-prepared, packaged meals which are inferior in taste and often expensive. Some dishes are seasonal while others can be cooked year-round. I hope you enjoy 15 Minutes Flat in your kitchen, too.

Honey-roasted pineapple

6 slices peeled fresh pineapple, 1-2cm thick
1 vanilla bean, split lengthways
1 cup warm honey
4 cardamom pods, bruised
250g mascarpone
1-2 tbsp white rum
60g toasted pecan nuts, coarsely chopped

Preheat oven to 220C. Halve pineapple slices and place in a single layer in a shallow ovenproof dish. Scrape seeds from vanilla bean into honey and add bean and cardamom pods. more

Danish education comparison unfair - language research

Berit Smerdon said she grew up in Denmark, where students aren't introduced to a second language until after they've learned the basics in Danish - their first language.

Students are taught 60 minutes of English a day beginning in their third year of school.

By Grade 7, they are often introduced to a third and fourth language, Smerdon said.

"It's a shame that European children are exposed to multiple languages and given such opportunities but in New Brunswick no one can decide on how to teach just one," Smerdon said, in an earlier interview.

"If it can be done in Denmark, should New Brunswick not be able to do so as well?"

But Kristmanson said it's not that easy.

In New Brunswick, the official second language is the minority language, but in Denmark, the official second language is much more predominant, she said. more

Top Visual Basics Games News

visual basics games

Jay Kulkarni left his management job at DoubleClick in the midst of the US recession in 2002 to start a company that would provide services for the online advertising industry. Seven years later, his company, Theorem Inc., has 425 employees in India ...

Read more


How Products Can Evolve from Services - BusinessWeek

Falling well short of its intended challenge of the ages, Pahelika comes off more as a limited puzzle-based diversion for an afternoon. It is said that knowledge is power, and perhaps there is no greater repository of knowledge than books, making ...

Read more


Welcome to the premiere destination for adventure game news, reviews ... - Adventure Games

The saying "a picture can paint a thousand words" was coined in the days long before computers, when a simple still photograph could tell a story in its own right. Now, although the photographer's art remains as engaging as ever, it is undeniable ...

Read more


Visualise your future: The employment market is looking good for young ... - The Independent

When the Metropolitan Museum set up its first sculpture department in 1886, it threw in anything and everything that wasn’t framed, stitched or printed: “all the sculptures, pottery, porcelain, glassware, jewelry, engraved gems, bronzes ...

Read more


Made in U.S.A.’ Shines After Makeover - New York Times

As franchise victories go, this one is an instant classic. The Magic looked like they had jet lag for much of the first half, trailing by 15 points at halftime. But bless them, they kept chipping away, not only at the lead, but at the invincible ...

Read more


Magic turn the Q into mausoleum - Orlando Sentinel

Hong Kong, May 22, 2009 - (ACN Newswire) - The following is the China excerpt from IRG's TMT Weekly Market Review May 11 - May 18. IRG is a financial advisory and investment firm focused on the core growth sectors in Asia with particular focus on the ...

Read more


IRG Technology, Media, and Telecoms Weekly China Market Review - Asia Corporate News Network

Windows 7 may be looking faster and more polished than its predecessor, Windows Vista, but both operating systems are nearly identical under the hood. That means some of the application compatibility problems that plagued Vista users could also ...

Read more


Your company's apps incompatible with Windows 7? Shim them, says ... - Reseller

It’s no secret that the Nintendo DS ™ system offers great ways to have fun while on the move. With the May 26 launch of the Personal Trainer ™ : Walking game, Nintendo is inviting consumers to turn their most basic daily movements into an ...

Read more


Nintendo Steps Up the Pace with Personal Trainer: Walking - PR Inside

Mumbai: Animation is no longer a cat and mouse game in India. According to Nasscom, the industry is worth USD 950 million and requires over 30,000 professionals. This demand can go upto over three lakh professionals by the end of the year. Job ...

Read more


Animate a dream career - Daily News and Analysis

Ages: 2-14. Where: Jewish Community Center of Dallas, 7900 Northaven. When: June 15-Aug. 14. Monday-Friday 9 a.m.-4 p.m. Cost: $750-$1,500 (for three-, six- or nine-week option). Description: From preschool to teen camps, activities include creative ...

Read more


Top Visual Basics Games Search Links
VbGames - Learn to Program Games - Make Games in Visual Basic, VB & VB ...

Some of the code in this program could be much more efficient. However, I made this when I first started out in VB. The code in the video gets the job done but it could be done a ...

YouTube - Visual Basic 6.0 Game

Cd player with volume control. When you execute, it finds your cd rom and if there is a music cd in it, it shows track numbers and track names.

Visual Basic games

Amazon.com: Visual Basic Game Programming with DirectX (The Premier Press Game Development Series): Jonathan S. Harbour: Your Store

Amazon.com: Visual Basic Game Programming with DirectX (The Premier ...

VB Games section is filled with VB code made By others which will help you if you are trying to create your own game in Visual Basic.

Visual Basic Library - VB Games Programming

Visual Basic Games, Code and More. VB, C++, Java, Javasscript Tons of code examples java visual basic asp and java games and a lot more C\C++,Assembly, html, windows shortcuts ...

Visual Basics Games
navigation
Home
Visual Basic For Applications In Excel
What Is Visual Basic Programming
Visual Basic Constants
Visual Basic Library System
Visual Basic Glossary
Visual Basic User Interface
Visual Basic Basics
Basic Programs
Visual Basic Programming Guide
Tips For Visual Basic
Visual Basic 2005 Projects

Sitemap
Privacy Policy

Deals

quick links

Visual Basics Games
Looking for Visual Basics Games?
www.ToseekA.com

Video News & Entertainment
Get breaking news stories in streaming video. Today's top stories in Entertainment, Health and More. Always Free!
www.ivillage.com

Visual Basics Games Is Here
Compare All Visual Basics Games Sites, Sources and SAVE $$$...
Comparisonwiz.com

Entertainment News
Breaking headlines and Hollywood gossip. Free entertainment videos and clips!
www.ivillage.com

Chinese Sex Culture in 3D
ChinaSexCulture.com introduces the World's first 3D Sex Museum containing majority of vast collection by China Sex Museum of about 3,700 erotic pieces that romp through some 5,000 years of human sexual behavior.
www.chinaontv.com