Online VB Game With Text And Connections?

Sep 20, 2009

Here is the plan/layout for the connection to a database.The biggest thing is that, it must be able to be connected by everyone, and it's pretty obvious why this is a big one, haha. The aim of the database is, naturally, to store all the info about the user required by the game (so each column would have x rows, name, age, etc etc). The program would have the ability to add columns (user registration) and log into them (username and password). They would enter their username password, and it would search for username, and if found, confirm password = password in that column.

So basically, the database acts like any other database, it just needs to be able to be connected by everyone (or by a vast majority of the average population), and be able to be edited (adding rows/deleting rows).I've dealt with databases before, but only local ones, and I've tried before with internet (and intranet a few times), but those ones never went anywhere, so they were dropped.

View 4 Replies


ADVERTISEMENT

Source - Mu Online Game - Can't Make Right "Server Status" To Show Online Or Offline

Jul 28, 2009

I have working on 1 program that is for Mu Online game. Its Mu Launcher program,but i'm having trouble with it. I can't make right "Server Status" to show Online or Offline I can't make autoupdater people to have using this for theyr server.

I make one file launcher.txt to get info the program but i need a lil help to finish thise program. The program is not for 1 server only its freewere . So here is the problem with the Server Status and AutoUpdater to get info from what server..

View 4 Replies

How To Make Bot For Online Game

Aug 27, 2009

i have zero programming knowledge and wanting to learn programming from seeing people making bots for online games, i always seek the knowledge if things and wonder how they do them, even though its pretty useless motive lol i just want to know what knowledge needed to making bot for online game am learning know VB.net 2008 got visual basic step by step book for 2008, i was searching for online game hackers forums and hear them type things like hooks, packets sniffers , etc , so what things do i need to learn beside visual basic 2008 to make bots for online game? i wonder how can i connect my program to other programs

View 1 Replies

VS 2008 - Make An Online Multiplayer Game?

Jul 17, 2011

I was looking at this example: Basic TCP Communication I was really amazed by this piece of code however it only works in WLAN. I was thinking if its possible to make the same program over internet not the same router but which can be connected to two different countries or any other place except the same network?

Actually I have created a very simple game called whack a mole. In which buttons appear and the user has to click it before it disappears. however I am trying to make it multiplayer over the internet even if i have to create a server from my PC. I dont know if its even possible. The other player should also get the same screen as the user who hosted the game just like real time.

View 4 Replies

.Net SQLClient Connections And SQL Server - Active Connections Reflect Even Though All Closed?

Jul 19, 2011

Using VB.Net and SQL Server 2008 R2: I have recently had a database that using sp_who2 reflects a connection ".Net SqlClient Data Provider" is still active even though the .Net application has closed and disposed of all connections.

[Code]...

View 1 Replies

Game Programming :: Prevent Users Typing In Random Letters In A Text Box-Scrabble Game?

May 4, 2011

I have created a scrabble game that generates random letters. For the user to type in a word using the random letters they have to type it in a text box.

I want my program to prevent users from typing in letters that are not provided in the text box and to allow them to type in the random letters that are provided.

View 4 Replies

Reading Text From Online Text File

Jul 30, 2009

im trying to read a online txt file and its not working [code]but it has a uri error i think in doing it wrong but need help with how im doing it wrong, all i want to do is read the text from a file online not from the system should be easy.

View 1 Replies

Reading Text From Online Text File?

Jul 4, 2010

Usually, the text file that would need to be read and processed would be local (on the computer the program is run), but for this example, we need to get the data from an online text file.

I have searched on google for nearly an hour now and haven't found anything of any real use. One of the earlier projects we submitted used a similar target, and I managed to get it working fine, however I dont have the original source code with me and I cannot remember how I did it.

I believe I used a Net.WebRequest method of some sort, because I had tried using StreamReader and ended up with an URI error or something like that.

View 7 Replies

Check Text Online Without WebBrower

Jul 9, 2010

1. Can i check an online text without flooding my form with webbrowers or diming the webrower so i dont spam my source EXAMPLE TEXT

[Code]...

so what its should do is change the label to the txt and never use the webbrower again 2.if i do use the webbrower method will it make the file size VERY big if i put like 5 of them and only using it for about 2 secounds 3.with the CheckOnlineText example can it wait until it fully loads so it doesnt load "" like webbrower when not useing documenttextfinish thngy

View 4 Replies

Read The Displayed Text Online

Nov 9, 2010

I am clueless when it comes to this, I want to read the displayed text online. My problem right now is What Im trying to read has different html codes and I cant figure out a good way to seperate the text line by line from code

[Code]...

View 2 Replies

Write Text To An Online File?

Aug 8, 2010

how would i write text to a .txt file that is online?

View 18 Replies

Find Out Contents Of A Text File Thats Online?

Jun 24, 2009

Is there anyway to find out the contents of a text file thats online?[code]...

View 3 Replies

How To Get Program To Read Online Text File

Mar 19, 2012

I am trying to get the program to read a text file online. Thus it can return a result if present inside the text file. If text file contains XXX@yahoo.com Then show form.

Private Sub Form6_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim request As System.Net.HttpWebRequest = System.Net.HttpWebRequest.Create("")
Dim response As System.Net.HttpWebResponse = request.GetResponse()
Dim sr As System.IO.StreamReader = New System.IO.StreamReader(response.GetResponseStream())

View 2 Replies

Open Online Text File In Vb 2008?

May 22, 2009

How would i open a text file which is hosted online, even with the url ending in .txt? When i try to open this in streamreader i get uri location is not supported.

View 2 Replies

Reading Text File From A Online Database?

Jan 23, 2009

i have maid a simple login system in vb.net here is my current code

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If TextBox1.Text = "http://mywebsite.com/usernames.txt" Then
Form2.Show()
Me.Hide()

[code]....

View 6 Replies

Save Online Text File To Combo Box

Jul 26, 2009

I have a program that has a combobox. It always needs to be updated w/o redownloading the program, so what I figured was best is to keep a text file on my server that lists all items that should be in the combobox. [Code] This code works perfectly for a text file on my computer, but I am needing to do the exact same thing but from a text file on my server (http:www.example.com/textfile.txt).

View 3 Replies

VS 2008 Write To A Online Text File?

Dec 4, 2011

I have a file.txt on my website,How do i write to this file thats on my website ?

Like write a line at the end of the file without overwriting any lines thats already there.

View 1 Replies

VS 2010 Read Text From A Online *.txt File

Aug 14, 2010

how to read text from a online *.txt file ? i know how to read text from a local *.file

Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

[Code]....

View 10 Replies

Extract All Text From An Online Txt File To 2008 Textbox?

Mar 24, 2010

I got an online txt file(url..)

I want my vb 2008 program to read all text from [url]... and put all the text there into a textbox in a vb2008 form, what code is needed to do this?

View 6 Replies

Grab Clause From Online XML Text-format Site

Jul 22, 2011

I am making a world clock app that relies on an internet response... I have made a situation where it sends the latitude and longitude to a website and the website generates a response in the form of an xml file in a webpage... Here is a demo:

[Code]...

View 3 Replies

Obtain UserName And Password From Online Text File?

Dec 10, 2011

I have the following code:

Dim userName As String
Dim passWord As String
Populate userName and passWord from an online text file ...
If textbox1.text = userName AndAlso Textbox2.text = passWord Then
MsgBox("Welcome")
Else
MsgBox("UserName or Password incorrect")
End If

How do I verify the user and password against an online text file from a URL that contains data like:

View 1 Replies

Read An Online Text File To A TextBox In VB 2010?

Apr 6, 2011

How can I read an online text file(just a textfile that is uploaded online) in a Textbox or a label in visual basic 2008? This is all i could find and when im using it with VB2010 it says:"A first chance exception of type 'System.Net.WebException' occurred in System.dll"

View 1 Replies

Send And Receive Data From ONLINE Text File?

Oct 18, 2009

from and to a text file. that's no problem and was done within a hour. (tnx to google)Now the problem. i want this textfile to be online. Normally with webpages you can read and write a file very easy but i've never done this withSo far the read code works. write code works in local mode, the only thing is he won't write to an online file.i don't get any errors the code looks fine for the debugger.the code so far (local mode for testing)

read:
Private Sub read()
If runlocal = False Then

[code].....

View 1 Replies

Text File From Online Web Address Readable By Streamwriter?

Sep 3, 2010

Is it possible to use the streamWriter to read a .txt file thats in a web address online?

View 1 Replies

Game Development - Write Text In A Already Existing Text File?

Apr 7, 2012

I've been developing a arcade game, and as every good arcade game, it has an incorporated scoreboard so that players can see who scored better. My problem is that everytime it enters a new scoreline, it deletes all the previous lines in the text file. The code I've been using is the following:

If player1 > 25 Then
objReader.Close()
MsgBox("O " + jogador1 + " ganhou.")[code]............

View 2 Replies

Game Programming :: Searching For A Name (text)?

Nov 27, 2010

I know this is my first post and Im very sorry its a question right away. I apologize for this, but I felt that I have to ask, I was searching all over and couldnt find answer, probably I just need help to define the keywords..searching for a name of a monster in some game and move the mouse onto it. Example: In middle of the screen, there is monster named: AAA I would need the program to search for the name "AAA" and move the mouse onto it.

View 2 Replies

Create A Multiplayer Game - Send Some Text

Jan 9, 2011

I'm trying to create a multiplayer game, but i don't know how to communicate between my programs, what I'm trying to send is some text, which my program can understand it. I searched for it and for making a chat application but found no working results...

View 10 Replies

Save Yahtzee Game To A Text File?

Oct 12, 2010

I have created a Yahtzee game, its all complete appart from the high score sheet.

I have added a text file to the project, but I have absolutly no idea how to take the score from the grand total label and print it to the text file at the end of the game.

[code]...

View 1 Replies

Tutorial For Making A Text Based Game In VB?

Mar 25, 2010

is there a tutorial for making a Text Based Game In Visual Basic?

View 2 Replies

Game Programming :: When Accessing Form2, Text Is Selected?

Jul 23, 2008

I am creating a game with VB2005. On Form2 I have placed a textbox containing the Rules for the Game. When I click on Rules from the Menu in Form1, Form2 opens and displays the information, but the text is selected (highlighted blue) what have I done?

View 6 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved