Reputation: 57
I am talking about Design not Runtime.
Is there a way to fix the Encoding and Character Sets issues? Example of messed up form title in Arabic below. Some French letters such as é show up like this too.
Upvotes: -2
Views: 314
Reputation: 57
I fixed my problem by using TNT Components and writing a program that converts the strings in my DFM files using ord like this
object l1: TLabel
Left = 735
Top = 0
Width = 32
Height = 33
Align = alRight
Alignment = taRightJustify
Caption = #1575#1604#1593#1605#16
Delphi 7 doesn't support unicode. Delphi 2009 does. Delphi 2010 is the closest in feel to Delphi 7.
Upvotes: 0