I have userform with 2 textbox's, each textbox is for a different non-ascii language.
The user fill the textbox's and press "Submit" then in my code I generate a string of SQL query (INSERT INTO query) and send this string to SQL Server (in the SQL Server I have a "stored procedure" that continues from there, but that's not important for my question).
The thing is that I get a question marks (??????????) insteadof the text that the user submitted, I can solve one language if I change the windows language for non-unicode programs, but I can select only one language there, the second language is still creates thos question marks.
Is it possible for a string variable (or any other variable) to hold a string with 2 non-ascii language so I can send my SQL string to SQL server ?
The user fill the textbox's and press "Submit" then in my code I generate a string of SQL query (INSERT INTO query) and send this string to SQL Server (in the SQL Server I have a "stored procedure" that continues from there, but that's not important for my question).
The thing is that I get a question marks (??????????) insteadof the text that the user submitted, I can solve one language if I change the windows language for non-unicode programs, but I can select only one language there, the second language is still creates thos question marks.
Is it possible for a string variable (or any other variable) to hold a string with 2 non-ascii language so I can send my SQL string to SQL server ?
Last edited: