MiOn Messenger
Posted: Thu Jun 16, 2011 1:59 pm
Hi there everyone,
Well this is my first post in here since I'm a new member to codenStuff and I wanted to show u guys/girls my project that im working on by myself.
It is a start so let me know what u guys think of for now.
Form1 works
u really can make an account and login by it, im using a web SQL database, the only problem i still got is that i cant make people fill in more information like name, surname age and that kinda things so i gotta figure that out also
well thanks for ur attention guys
Code for the login form.
also gonna be changed to a real database after im done and this is also gonna be changed
Sunday June the 19th
Edited my chat program that I am working on.
Changed the look.
Chat works
Only able to chat by a username
Webcam views but no webcamview with your contacts yet!
Implenting a mail service inside the messenger program.
Changed the name to MiOn and let me know what you think about the name of it
or got a better name dont hesitate to tell me
Will be updating more pictures on Monday June the 20th
Well this is my first post in here since I'm a new member to codenStuff and I wanted to show u guys/girls my project that im working on by myself.
It is a start so let me know what u guys think of for now.
Form1 works
u really can make an account and login by it, im using a web SQL database, the only problem i still got is that i cant make people fill in more information like name, surname age and that kinda things so i gotta figure that out also

well thanks for ur attention guys
Code for the login form.
also gonna be changed to a real database after im done and this is also gonna be changed
Code: Select all
Imports MySql.Data.MySqlClient
Public Class Form1
Public conn As MySqlConnection
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
conn = New MySqlConnection("server=db4free.net;Port=3306; user id= you ID ; password= your id password; database=database you are using")
Try
conn.Open()
Dim sqlquery As String = "SELECT * FROM imonline WHERE Gebruikersnaam = '" & ComboBox1.Text & "';"
Dim data As MySqlDataReader
Dim adapter As New MySqlDataAdapter
Dim command As New MySqlCommand
command.CommandText = sqlquery
command.Connection = conn
adapter.SelectCommand = command
data = command.ExecuteReader
While data.Read()
If data.HasRows() = True Then
If data(2).ToString = TextBox1.Text Then
Form2.Show()
Me.Hide()
NotifyIcon1.Visible = True
Else
Label1.Text = "Onjuist wachtwoord of gebruikersnaam!"
End If
End If
End While
Catch ex As Exception
End Try
End Sub
Sunday June the 19th
Edited my chat program that I am working on.
Changed the look.
Chat works
Only able to chat by a username
Webcam views but no webcamview with your contacts yet!
Implenting a mail service inside the messenger program.
Changed the name to MiOn and let me know what you think about the name of it
or got a better name dont hesitate to tell me

Will be updating more pictures on Monday June the 20th