User Profile

Collapse

Profile Sidebar

Collapse
skynetplus
skynetplus
Last Activity: Nov 15 '08, 10:49 AM
Joined: Feb 11 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • skynetplus
    started a topic VB read from MYSQL

    VB read from MYSQL

    I want to read from my table in mysql so that data is displayed in a listbox and a text box on my form.

    I have a mailing system and want the subject to be displayed in the list box and then the message to be displayed in the text box. The field names on the DB are:

    message_ID, user_from, user_to, subject, message, read

    I want to be able to read the user to for the current username logged in and then display...
    See more | Go to post

  • skynetplus
    started a topic VB to MYSQL

    VB to MYSQL

    Ok i got my form to read from my mysql database adn works perfect but now need code to insert into the db. I have a mysql.dll and was told i just use that hahahaha how? i have relevant programming knowledge but want to take it further. Has anyone got code that will work first time or help that will?

    The things i want to input:

    user_name = txtUsername.tex t
    pass = txtPassword.tex t
    IP_add = "game"...
    See more | Go to post

  • skynetplus
    started a topic Picturebox Moving

    Picturebox Moving

    Ok so far got the following:

    picBall.Left = picBall.Left - 10
    picBall.Top = picBall.Top - 5

    If picBall.Left >= Me.Width Then

    End If

    The top two lines allow the picturebox to move but i now want the code for if the picturebox hits the side then goes another direction. The task is to make a breakout game. I have looked over the internet and all i can find is code from...
    See more | Go to post

  • Hello!

    Create the form and insert 1 Button and 1 Picture Box. Insert this code:

    Code:
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    
            PictureBox1.Image = System.Drawing.Image.FromFile("C:\Documents and Settings\robert.lacour.RBG0\Desktop\dans vb stuff\pic\warrior.jpg")
    
        End Sub

    SKYNETP...
    See more | Go to post
    Last edited by skynetplus; Feb 11 '07, 06:17 PM. Reason: Add some Coding

    Leave a comment:

No activity results to display
Show More
Working...