I see ...
I converted the text to "Arial Unicode MS" and the Chinese text now displays - thank you.
Search found 19 matches
- Thu May 24, 2012 12:13 pm
- Forum: Application Development
- Topic: Chinese charaters display as blocks on T7A
- Replies: 5
- Views: 11558
- Thu May 24, 2012 11:01 am
- Forum: Application Development
- Topic: Chinese charaters display as blocks on T7A
- Replies: 5
- Views: 11558
Re: Chinese charaters display as blocks on T7A
I'm using Tahoma throughout the project. Is it possible to download the font from my computer to the panel?
- Thu May 24, 2012 8:27 am
- Forum: Application Development
- Topic: Chinese charaters display as blocks on T7A
- Replies: 5
- Views: 11558
Chinese charaters display as blocks on T7A
I'm added "Chinese (Simplified, PRC)" to MultiLanguage control. The language displays fine on my computer in test-mode, but does not display (all characters are blocks) on the panel. Is there a font that isn't being downloaded to the panel?
- Mon May 14, 2012 1:22 pm
- Forum: Scripting
- Topic: Use event or call a method from another class
- Replies: 4
- Views: 11250
Re: Use event or call a method from another class
Vilius, I had a similar issue. The solution I found was to add the following to the screen's script: In the screen opened event: void Screen1_Opened(System.Object sender, System.EventArgs e) { Globals.Tags.Tag1.ValueChange += Enable_Button; // add ValueChange event Enable_Button(sender, e); // initi...
- Mon May 14, 2012 1:02 pm
- Forum: Scripting
- Topic: Drawing arc over circular meter control
- Replies: 4
- Views: 10627
Re: Drawing arc over circular meter control
Does the Polyline control have an anti-aliasing option/setting?
- Fri May 11, 2012 10:32 am
- Forum: Scripting
- Topic: Drawing arc over circular meter control
- Replies: 4
- Views: 10627
Re: Drawing arc over circular meter control
I managed to find a way to display the range arc I wanted by tweaking a Polyline control when my range tags change. sample code: private void Update_KWrange(System.Object sender, System.EventArgs e) { const double Meter_Min = 0; // Smallest unit on meter const double Meter_Range = 400; // Range of u...
- Fri May 11, 2012 8:29 am
- Forum: Scripting
- Topic: Drawing arc over circular meter control
- Replies: 4
- Views: 10627
Drawing arc over circular meter control
Is it possible to draw an arc using script over a circular meter control? I have a circular meter that I would like to have changing regions. I know the regions cannot change on the control itself, so I'd like to be able to draw a few arcs over the control that I can redraw based on tags. Is there s...
- Wed May 09, 2012 7:06 am
- Forum: Scripting
- Topic: Login Screen
- Replies: 19
- Views: 56108
Re: Login Screen
Is it possible to make the on-screen keyboard appear with the text window so users can see what they are typing when the textbox is covered?
- Tue Apr 17, 2012 12:21 pm
- Forum: Controller Communication
- Topic: Hide "message" when Modbus Slave RTU/TCP is disconnected
- Replies: 3
- Views: 11152
Re: Hide "message" when Modbus Slave RTU/TCP is disconnected
What are the command options to the driver?
Simply, I don't want the comm error window shown because nobody is connected to the device/driver.
Simply, I don't want the comm error window shown because nobody is connected to the device/driver.
- Mon Apr 02, 2012 3:19 pm
- Forum: Controller Communication
- Topic: Hide "message" when Modbus Slave RTU/TCP is disconnected
- Replies: 3
- Views: 11152
Hide "message" when Modbus Slave RTU/TCP is disconnected
Is there a setting to hide the "comm error window" when there is no device connected to the Modbus slave driver?