Sorry about ressurecting the topic, but I think it is useful for me too.
I've created a
topic with a similar problem.
In my case, the default Windows language is English (but our software is in Portuguese). And I am having trouble on simple windows, as the example below, when I try to confirm that I want to end the system:
Set BtnYes = Aliases.FPR_CLIENT.dlgFPWReportsCliente.btnYes
Set BtnSim = Aliases.FPR_CLIENT.dlgFPWReportsCliente.btnSim
If BtnYes.Exists Then
BtnYes.ClickButton
Else
BtnSim.ClickButton
End If
The 'BtnYes' line is compatible with english Windows; the 'BtnSim' line is compatible with portuguese Windows.
Can I use the same explanation to my problem? What do I need to do?
The idea is to use the same ProjectSuite to both Windows languages (en_US and pt_BR).
Thanks.