Font
-
antp
- Site Admin
- Posts: 9897
- Joined: 2002-05-30 10:13:07
- Location: Brussels
it is not really an option; but it is possible:
just edit the langage file that you use (english.lng if you use default, then you'll have to use this one instead of the default) and find e.g. the line :
MainWindow.FrmMovie.LOriginalTitle.Caption=Original Title:
This is the line that sets the label in front of the Original Title field
Insert these lines if you want for example change the font type and font size:
MainWindow.FrmMovie.LOriginalTitle.Font.Name=Times New Roman
MainWindow.FrmMovie.LOriginalTitle.Font.Size=12
You'll have to do it for each field that you want to modify
If you want to set the same font to all the fields, instead of inserting a line for each you can simply insert these lines :
MainWindow.FrmMovie.Font.Name=Times New Roman
MainWindow.FrmMovie.Font.Size=12
All the fields will inherit from this.
(in this example the size is not really well chosed since it is a little too big)
A question: why do you want to change the font ?
just edit the langage file that you use (english.lng if you use default, then you'll have to use this one instead of the default) and find e.g. the line :
MainWindow.FrmMovie.LOriginalTitle.Caption=Original Title:
This is the line that sets the label in front of the Original Title field
Insert these lines if you want for example change the font type and font size:
MainWindow.FrmMovie.LOriginalTitle.Font.Name=Times New Roman
MainWindow.FrmMovie.LOriginalTitle.Font.Size=12
You'll have to do it for each field that you want to modify
If you want to set the same font to all the fields, instead of inserting a line for each you can simply insert these lines :
MainWindow.FrmMovie.Font.Name=Times New Roman
MainWindow.FrmMovie.Font.Size=12
All the fields will inherit from this.
(in this example the size is not really well chosed since it is a little too big)
A question: why do you want to change the font ?
-
turtle
-
antp
- Site Admin
- Posts: 9897
- Joined: 2002-05-30 10:13:07
- Location: Brussels
-
turtle
-
antp
- Site Admin
- Posts: 9897
- Joined: 2002-05-30 10:13:07
- Location: Brussels
-
ZoNi
- Posts: 22
- Joined: 2003-04-03 22:14:10
- Location: Belgrade, Serbia
and how about BOLD and ITALIC??? Can that be set here?antp wrote:it is not really an option; but it is possible:
This is the line that sets the label in front of the Original Title field
Insert these lines if you want for example change the font type and font size:
MainWindow.FrmMovie.LOriginalTitle.Font.Name=Times New Roman
MainWindow.FrmMovie.LOriginalTitle.Font.Size=12
-
antp
- Site Admin
- Posts: 9897
- Joined: 2002-05-30 10:13:07
- Location: Brussels
-
ZoNi
- Posts: 22
- Joined: 2003-04-03 22:14:10
- Location: Belgrade, Serbia
-
ZoNi
- Posts: 22
- Joined: 2003-04-03 22:14:10
- Location: Belgrade, Serbia
-
antp
- Site Admin
- Posts: 9897
- Joined: 2002-05-30 10:13:07
- Location: Brussels