HI!!
For example, I have this:
sqlwords = "insert into aaaa values('" & txt_name.Text & "'," & Val(txt_number.Text) & ")"
ConectionA.Execute sqlwords

In txt_number.Text I have a number with format. For example: 128.23
But the string named sqlwords, takes this number like 128,23
And the execution fails.
What can I do? Thanks in advance.