I am inserting into an access table a number of numeric fields. I am doing this by storing the insert statement into a variable and then executing the contents of this variable.
The system settings on the user's PC is set to a comma and thus 3.4 (3 point 4) is threated as 3, 4 (3 comma 4). On executing the SQL insert statement, I am getting an error that the number of fields do not match the number of target fields. The reason of this is that 3, 4 is being threated as two different fields.
Is there a way how to make VB work having the system settings set to both a point or comma?
Thanks in advance