Need VB6 Help !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Posted: Sat Feb 11, 2006 12:23 am
Today, 08:11 PM #1
Montrèal
Posts per day: 0.30 Need VB6 Help !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
--------------------------------------------------------------------------------
Private Sub Command1_Click()
Dim a, b, c As Double
a = Text6.Text
b = Text10.Text
c = a + b
Text6.Text = c
End Sub
I know I am doing something wrong but for the life of me I can`t remember.This is a very simple application its to add the new Points for to the old points for in the database.Heres the problem the points for is at 22 .I want to add 5 more points which = 27.The problem is it gives me 225 it just adds the 25 to the end of the statement.
I know as soon as someone tells me the right way it will probably click but till then I am stopped.
Montrèal
Posts per day: 0.30 Need VB6 Help !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
--------------------------------------------------------------------------------
Private Sub Command1_Click()
Dim a, b, c As Double
a = Text6.Text
b = Text10.Text
c = a + b
Text6.Text = c
End Sub
I know I am doing something wrong but for the life of me I can`t remember.This is a very simple application its to add the new Points for to the old points for in the database.Heres the problem the points for is at 22 .I want to add 5 more points which = 27.The problem is it gives me 225 it just adds the 25 to the end of the statement.
I know as soon as someone tells me the right way it will probably click but till then I am stopped.