Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Template Map don't working in Windows Pt Language. #2

Open
OntJames opened this issue Jul 4, 2017 · 1 comment
Open

Template Map don't working in Windows Pt Language. #2

OntJames opened this issue Jul 4, 2017 · 1 comment

Comments

@OntJames
Copy link

OntJames commented Jul 4, 2017

I found an Issue when i build a new template from image (on Design) and Save.
When I Load this template, the page border references saves the X,Y Coordinates wrong.
I think it can be the Float property.
In en-US language float is (ex.) 10.00.
In pt-Br language float is (ex.) 10,00.

I can fix this issue adding the following code in Program.cs >> Main() thread:

[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
System.Globalization.CultureInfo cultureInfo = new System.Globalization.CultureInfo("en-US");
Application.CurrentCulture = cultureInfo;
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new frmMain());
}

@justin-fyfe
Copy link
Contributor

Hmmm.... That is interesting... Do you have a patch you can submit? I would be more than happy to merge as we are also looking to leverage this base platform in other regions.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants