I use Visual Basic 2008 + MySQL Database
I have create a textbox1.text
MySQL Table Test with Two Columns:
Column Name DataType
RecordID INT(11)
Money Decimal(10,2)
TextBox1.Text = "€ 22,07"
I want the contents of field textbox1.txt save it into money in the column of the Test table!
I want to use the next MySQL Statement:
Insert INTO Test (money) VALUES ('" & textbox1.text & "')
Therefore I must translate content textbox1.txt into decimal format.
I hope that within the MySQL INSERT INTO statement can!!!
How can I do that the fastest way
Thanks for your help,
Regards,
Andre