VB 2008 Create A Program That Intercepts The Traffic Going Into And Out Of The Game Including Whats Writen In The Chatbox?
Aug 30, 2010
I have a game which has a chatbox in it and was wondering if its possible to create a program that intercepts the traffic going into and out of the game including whats writen in the chatbox.I am the host of the game.Basicly I want the information to be displayed in something like a richtextbox?
View 1 Replies
ADVERTISEMENT
Oct 19, 2010
I have made a Medical software writen in VBA and now I want know how can one who has not Microsoft Office (Excel) installed, run the program.
View 1 Replies
Apr 16, 2012
I am a noob to Visual Basic and I am currently learning it at my college. I have a final project to do and I am having some trouble deciding on how to attack it. First off, I have done a lot of research and I cannot find my answer, so I am using this(post) as a last resort. The book my prof is having me use is outdated, its coding on vb6, and we are using vb2010...hence my problem. I am not looking for an answer in code, but more to be pointed in the right direction, or maybe some classes that I do not know about.[code]...
View 7 Replies
Jul 18, 2011
I'm trying to create a little program where I can view a few game servers, specifically cs, cs:s, and cod4?
Imports GameServerInfo
Public Class Form1
Dim server As GameServer = New GameServer("74.201.57.23", 27015, GameType.CounterStrike)
[code]....
I've tested multiple servers as well that were up and running so It's not the servers I'm putting in.
View 5 Replies
Oct 18, 2011
Im new to visual basic and im taking a class on visual basic currently We are suppose to create a program that plays a game with the user. The game is about guessing a random number the program guesses If you are too high from the computers guess it will tell you "too high"If you are too low from the computers guess it will tell you "too low"If you are right it will let you know your right Currently im having problem with Line 7, its saying RandomInteger is expecting declaration But i declared it above as a integer
[Code]...
View 2 Replies
Oct 18, 2010
i dont know if this is the right place to post this thread so..Ok my real problem is that i want to make a chatbox in VB.NET 2008 (Framework 3.5) which should over a LAN network. And i dont have any clue how to make it coz I'm a newbie to vb.net So if anyone has any idea about it please tell me about it. then please let me know.
View 3 Replies
Oct 10, 2009
I want just a code that calculate and show the traffic (volume) of sending and receiving to/from internet?for example, IE is opening a page and IDM is downloading a file ; NOW , how many bytes has been sent / received
View 5 Replies
May 12, 2012
I want just a code that calculate and show the traffic (volume) of sending and receiving to/from internet?
for example, IE is opening a page and IDM is downloading a file ; NOW , how many bytes has been sent / received?
View 2 Replies
Dec 24, 2011
I am wanting to create an application that will monitor the upload/download traffic of a user. Can someone point me too some code that I can have a look at?I have found SharpPcap - A Packet Capture Framework for .NET, but cannot find any vb.net code for it.
I have found this code:
Dim Properties As IPGlobalProperties
Dim StatV4 As IPGlobalStatistics
Properties = IPGlobalProperties.GetIPGlobalProperties
StatV4 = Properties.GetIPv4GlobalStatistics
Dim Packets As Long = StatV4.ReceivedPackets
What actually is a 'packet'? Can I calculate the download/upload from this code by maybe multiplying the recievedPackets by packet size... or something like that?
View 2 Replies
Apr 8, 2011
If I have a starting X/Y position and enter an angle and power, I want to determine the X/Y positions for a cannon to follow. I have seen many sites on this but no straight code to use. Anyone have an example of this? I just want the X/Y posiitons in small steps - not far apart from each other.
View 6 Replies
Mar 25, 2010
I have a question, i have worked in several languages in my life (including several versions of basic) but i wonder whether in .NET using a variable or equation in a loop is a lot slower than not using one? Take the following identical loops
Dim test(999) As Integer
For count As Integer = 0 to 999
test(count) = count
Next
[Code]...
Now the 2nd case is good because it is easier to adjust the code should the array size need to change yet my background tells me the 1st case is the one in terms of performance, test.Length - 1 is calculated each time the loop runs. a loop of the 2nd kind for example has a massive effect on java as well as VBscript or javascript.So heres the question, would test.Length - 1 be calculated each time the loop ran, or just the first time?
View 14 Replies
Jun 4, 2012
I am all new to Visual Basic 2008, I am trying to create a picture shuffle game, the problem is I cant seem to be able to move one picture from PictureBox1 to PictureBox2 onClick, here is a Code I written earlier:Sub ChangePicture(ByRef P1 As PictureBox, ByRef P2 As PictureBox)
[Code]...
View 1 Replies
Sep 11, 2009
Is there any visual basic 2005/2008 RPG games with the source code available for download.Could you possibly reply to this post with a link to the website with the game.Or is there a template i could use to try create a zombie style RPG game text or graphical.
View 2 Replies
Nov 18, 2011
I want to make a program that enables a game to have more than one instance running, where it would otherwise be unable to be done. How should I go about this? A sandbox? Hack?
View 3 Replies
Apr 18, 2012
On programming assignment without having any real experience in vb. I guess I don't understand subroutines that well. When the program runs it never goes to the computer's turn and does not update the users score either. This assignment is already in but would like to know what is going wrong. Using VB 2010, and this is windows application.
Code:
Public Class Form1
Dim Myturn As Integer
Dim Computerturn As Integer
[CODE]...
View 6 Replies
Dec 7, 2009
I am writing a blackjack game program in vb.net 2008. The program is designed to play 6 players per game in sequence using a pre existing algorithim (basic strategy). The program will play one game at a time using all 6 players or can be set to play 100 games using all six players and then capture the resulting data generated from each player from every card. When one game at a time is played the program works fine. When the program plays 100 games at a time it drops (loses) the data that is being stored in its string variable arrays.
View 1 Replies
Nov 7, 2011
I want to make program that shows info in game while playing. Problem is that I have no idea how to do it. I tryed some methods, but unsuccessfully. So does anyone has idea how to make it ?
View 3 Replies
Dec 9, 2009
I'm using a dll in my program, it works fine. But when I publish and try to run on another machine, it says the dll is missing.Am I right in saying that I need to add it to my references, with the Add button on the references page? When I do that, it says it's not a valid assembly or com component.
How do I fix this? My level of knowledge is very low, especially with dll's.
View 10 Replies
Jul 4, 2011
How to use time in vb.net.I would like to make a traffic lights program in vb.net but am not yet sure where to start besides the interface.I want the lights to change within a give time.
View 1 Replies
Nov 30, 2008
Basically i am creating a Hangman program using VB 2008 Express edition and need some help.I would like some help on when a user is entering a letter for the word how can i make it so for example if the target word is "MAX" and they enter "M" i would like the lblstatus to update as "M--" obviously i would want it to be able to do it with all 3 letters.
View 2 Replies
Jun 19, 2010
I'm trying to make my program forward port 2303 for UDP so that my game will work without the user having to forward their ports manually every time they want to play.I've searched and come across this C# code but I keep having problems converting it to VB.Net:url...
View 1 Replies
Jul 4, 2011
how to create a setup file with inno software including interop.MessengerAPI.dll of any application.I have created a setup file with inno.but it is work in only my pc it is not work in anather pc after creating a setup file.In my application is chatting application.how it is work interop.MessengerAPI.dll in anather pc?
View 3 Replies
Jun 5, 2011
how to create a setup file with inno software including interop.MessengerAPI.dll of any application.I have created a setup file with inno.but it is work in only my pc it is not work in anather pc after creating a setup file.In my application is chatting application.how it is work interop.MessengerAPI.dll in anather pc?
View 2 Replies
Jul 4, 2011
how to create a setup file with inno software including interop.MessengerAPI.dll of any application.I have created a setup file with inno.but it is work in only my pc it is not work in anather pc after creating a setup file.In my application is chatting application.how it is work interop.MessengerAPI.dll in anather pc?
View 1 Replies
Jul 4, 2011
how to create a setup file with inno software including interop.MessengerAPI.dll of any application.I have created a setup file with inno.but it is work in only my pc it is not work in anather pc after creating a setup file.In my application is chatting application.how it is work interop.MessengerAPI.dll in anather pc?
View 1 Replies
Aug 20, 2009
I want to know how to include username and password of sql express 2005 for creating setup file in vb dotnet.Also how can i create an instance of sql and include it in setup project.
View 2 Replies
Jun 15, 2009
how i can write a program to create a shortcut in the startup folder of a different program. So i have one program on my computer that should run at startup, i just need another program to create a shortcut to it, and then copy this shortcut into the startup folder.
View 20 Replies
Oct 13, 2009
I have the following code :
sw = New StreamWriter("scanner.txt")
sw.WriteLine("TEST")
sw.Close()
This code should write the txt file to the folder my exe is in. This is the case on hundereds of different machines.
However I have just found out that on one machine my code always writes the files to the desktop and expects to read from the desktop. I am going to change my code so it looks specifically for the application folder but I still dont get why this is happening on one machine and not on all the others.
View 4 Replies
Jul 30, 2009
I want to use a program codes written for GWBasic in VB 2005. how to do it?
View 9 Replies
Jan 8, 2011
Im trying to write a simple c++ dll and then reference it in my vb form app however im having a hell of a time doing so. but im getting an error when i call the c++ function in vb.net
here is the c++ code
#include <WINDOWS.H>
LPCSTR DisplayStringByVal(LPCSTR pszString)
[code]....
View 2 Replies