Posts Tagged ‘Visual’
i want to become an installation tech, for audio visual, or telecommunications. How do become one?
I need an entry level job that will train. Any suggetions? I live in Los Angeles.
Videotutorial X-treme System Info [Visual Basic 2008]
Este es mi 3º videotutorial sobre programacion en Visual Basic. En esta ocasion, os enseño como programar un simple pero util programa que muestra la informacion general del PC (El SO, el nombre de usuario, el lenguaje del SO, la version del SO, etc…). Espero que os guste. Votda y comentad xD. ¡Gracias por ver el video!
Tutorial – Lan chat Visual basic
Ik heb deze video gemaakt op www.youtube.com
Visual Basic – Medium Lesson 1 – MsgBox Customized Functions
This is an example of an customized msgbox like: MSGBOX “HI ALL”, VBINFORMATION, “TITLE
” to: MessageBox “HI”, VBINFORMATION, “TITLE!” Enjoi it!
Saber IP Local – Visual Basic 6.0
Aquí les muestro como hacer una sencilla aplicación que enseñe nuestra IP Local
Download Visual Basic 6
Esse eu aconselho , é sem vírus , e é bem leve , gente , não achem que estou fazendo apologia á pirataria … mas é o velho ditado . “Quem não tem cão , caça com gato” Ou vb6
! Abraços!!!
Visual Basic 2008 Tutorial #5 IP Finder
in my 5th tutorial i will show you how to make a program that finds your local IP and Remotehost IP if you like my tutorials give me credit at my blogg. www.wowfury.com
TCP Chat Application – Visual Basic 2008
TCP Chat Application There’s 2 private forms in every app, if you want to make more of them, just copy – paste the codes from examples. Source code link : www.megaupload.com
Visual Basic 6 – RAT Tutorial Server/Client
Simple visual basic 6 tutorial on how to create your own RAT software
LAN Chat program Simple Tutorial Visual Basic Network
Entre em nossa comunidade : [www.orkut.com.br
Descarga Visual Basic 6.0 \ Ver la IP publica de nuestro pc (VB6)
Espero que les guste y que comenten Link de descarga Visual basic 6 : amsterdam1.plunder.com Link arreglado! Instrucciones: Agregar un Winsock, Boton, label Despues Copiar en el label 000.000.000 y en el boton poner este code: Label1.Caption = Winsock1.LocalIP
Visual basic 2008 trojan tutorial
Creare un server di un piccolo trojan commentate e votate
xD winsock download www.afreeocx.com
Visual Basic Help Needed?
Ok I’ve been following this tutorial: http://www.youtube.com/watch?v=0JCUbWpotp4 but when I try to run it the first time after adding in the winsock I get this error: “An error occurred creating the form. See Exception.InnerException for details. The error is: Class not registered (Exception from HRESULT: 0×80040154 (REGDB_E_CLASSNOTREG))” Please help me.
Oh yeah, I’m using Microsoft Visual Basic 2008 Express Edition on Windows Vista Ultimate (if that helps)
Tutorial visual basic 6.0 – Winsock – Server.avi
Este video muestra como hacer un pequeño troyano.Usando conexión inversa.Esta es la parte 1 proximamente la parte 2
Tutorial Visual Basic – Vedere il proprio IP (NO winsock) -
Visual Basic 2010 Tutorial ITA su come creare un programma in grado di mostrare la propria IP (senza l’ausilio di winsock). Codici: Dim ipadress As System.Net.IPHostEntry = System.Net.Dns.GetHostByName(System.Net.Dns.GetHostName) TextBox1.Text = ipadress.AddressList.GetValue(0).ToString www.tutorialrialvb.altervista.org
Visual Basic 2010 networking?
So I got into programming a little over two years ago and have become pretty good at it. I’d like to take it to the next level by making it communicate with the internet. Now I haven’t been programming long enough to remember the winsock controls of VB 6. But that seems to be all I can find. I found a toolkit from C4F, but I like to know how to do things on my own. Does anyone know where I might find something to teach me the code for networking instead of relying on a toolkit?
TCP/IP Visual Basic 2008?
Ive written many programs back in the days of XP that commuinicated via the UDP and TCP families as part of the Winsock control in visual basic 6.0.
Now days vista dosnt have these controls as default. What controls can I use in place of the Winsock control on vista, that are available as default?
Yes, I understand UDP and TCP protocols are still in use (obviously), but what has replaced the winsock control?
How to make Visual Basic 6, make a text file, sorting server data?
Okay, I am trying to make an MMO, and so far, I have all my concepts in place. I am working on Winsock controls in another forum, and I may be posting a question about it here, BUT- I have one critical problem;
Player files.
Okay, I decided that when a player registers, all the information is thrown bit-by-bit to the server, then, I want the server to take the data, open up a text file, put the information, in the correct organization, and then save that file to a directory in my computer.
Though I have a problem- so far, I know how to make Winsock take data, and I can do whatever I like with it, but, I do not know how to make Visual Basic open up a text file, take the information, jot it down into the text, then save it, and name the file, then be able to search it up later when it is needed.
Can someone give me the code? So far, all I have is what is needed to be written.
———————————————————————————————————————–
DataArrived()
————————
Dim strUsername as string
Dim strPassword as string
Dim strEmail as string
Dim strSecurityQuestion as string
Dim strSecurityAnswer as string
Winsock1.GetData strUsername
Winsock1.GetData strPassword
Winsock1.GetData strEmail
Winsock1.GetData strSecurityQuestion
Winsock1.GetData strSecurityAnswer
——————————————————————-
So, so far I just have Winsock1 getting the data, but I already see a problem that I DO NOT know the answer to.
How can I make it so that Winsock1 will know WHAT strUsername is? What if the client put his username, and then the server thinks that the username is the password. How can I make it so it knows what is what?
Thanks in advance!
P.S. Does anyone know what the SMALLEST (in data size) text format is?
Oh yeah, the bit of code i threw there isnt from an actual VB, I just made it up on the spot (sept the variables)… So ignore the absence of the Private Subs and End subs
By format, I meant like .txt , .rtf, .abw, etc.
It sends it in order eh?
So if I tell the send button on the client to send the username (a string variable) first in the line, the server will recieve it before all the others and use strUsername to find it since strUsername is the first string Winsock1 is supposed to find?