How to move field or add custom field

If you need help on how to use the program
Post Reply
woolfie
Posts: 1
Joined: 2008-09-22 13:47:35

How to move field or add custom field

Post by woolfie »

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
antp
Site Admin
Posts: 9629
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post by antp »

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 ;)
JCSullivan
Posts: 25
Joined: 2010-01-22 14:59:03

Post by JCSullivan »

I realise this is an ancient post but I can't seem to get it right.

I'm trying to change "Borrower" to "Location" do I change every instance of "Borrower" in the English language file???

Thanks
bad4u
Posts: 1148
Joined: 2006-12-11 22:54:46

Post by bad4u »

JCSullivan wrote:I'm trying to change "Borrower" to "Location" do I change every instance of "Borrower" in the English language file???
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 with

Code: Select all

;**********
;* Frames *
;**********
[TMovieFrame]
(probably somewhere around line 1006). Now look for

Code: Select all

LBorrower.Caption=Borrower:
This is the field name/caption that you see on main window.

Code: Select all

EBorrower.Hint=|Borrower
This is the hint that you can see on status line when you move your mouse over the field. Simply change what is behind the equal (=).

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.
Post Reply