Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the default VB6 charset?

we have an application written in Java which reads some text generated by a VB6 application. The problem is: this VB6 application generate this output using some special characters, like ç,ã,á which we don't know in what charset.

So the question is: is there a default charset used by VB6? Which is it?

like image 848
Kico Lobo Avatar asked Jan 12 '10 13:01

Kico Lobo


1 Answers

how do you transfer the data from one to the other? via file? if yes then it uses the machine default encoding i don't know the java code to get it, but in c# its Encoding.Default...

like image 77
Peter Avatar answered Nov 03 '22 23:11

Peter