Please, could you tell me, how to:
- move field (change position of it)
- delete field
- or make new field.
Thank You.
I am absolute beginner, sorry
woolfie
How to move field or add custom field
You cannot make new fields. You can eventually rename existing fields by modifying language file. With that, you can also move items in the window.
In the [TMovieFrame] section of these translation files you find the list of the fields used in main window, and if you search for "Fields.Strings." you will find the list used at other places.
You have Caption and Hint properties, some others like Visible, Left, Top, Width and Height can be used too. Other topics on the forum may contain additional info/samples as this question comes back from time to time
In the [TMovieFrame] section of these translation files you find the list of the fields used in main window, and if you search for "Fields.Strings." you will find the list used at other places.
You have Caption and Hint properties, some others like Visible, Left, Top, Width and Height can be used too. Other topics on the forum may contain additional info/samples as this question comes back from time to time
-
- Posts: 25
- Joined: 2010-01-22 14:59:03
Open english.lng with a text editor, and if you want to change the name of this field on main window only, you have to search for the section that begins withJCSullivan wrote:I'm trying to change "Borrower" to "Location" do I change every instance of "Borrower" in the English language file???
Code: Select all
;**********
;* Frames *
;**********
[TMovieFrame]
Code: Select all
LBorrower.Caption=Borrower:
Code: Select all
EBorrower.Hint=|Borrower
Borrower field might not be best choice for changing the meaning of it, because data from this field is connected internally with the loans manager function from tools menu. This is one of the reasons why you will find some more fields that contain "Borrower" on the language file. Though it is possible to change the fieldname if you don't want to use loans system.