Page 1 of 1

Aiuto-catalogo piante Help-plants catalogue

Posted: 2010-01-27 11:22:25
by giulio84
Italiano
Ciao ragazzi, ho bisogno di un aiuto.
Sto usando questo programma per catalogare io miei film e lo trovo buonissimo
e adesso lo vorei un pò modificato per catalogare le mie piante per poi asportarli
ogni volta che voglio in pdf (cosi lo posso spedire agli amici collezzionisti).

Se mi date qualche dritta come poso fare per cambiare le vari cattegorie
tipo: "prestato", "titolo originale" ...etc. provero a cambiare qualche
cosa per fare un catalogo di piante con le aposite categarie interessate.
(un catalogo di piante grasse e cactus).
La mia email è america_armi@yahoo.it

Preciso che ho una buona conoscenza del pc ma non della programmazione
Grazie

Translation (google Translation)

English

Hello guys, I need help.
I am using this program to catalog my movies and I find it very good
and now I want to modify for my plants and then export it
every time I want to pdf (so I can send to friends collectors).

If you give me some advice as I lay do to change the various cattegorie
like "title", "original title" ... etc.. try to change some
what to do a catalog of plants with the text field provided categarie concerned.
(a catalog of succulents and cactus).
My email is america_armi@yahoo.it
thanks

Posted: 2010-01-27 18:36:50
by antp
Hi,
You want to change the labels shown in the program?
You can do that by copying one of the translations file (see the "Languages" folder of where the program is installed), copy for example "Italian.lng" to "plants.lng", then modify the contents.
You can later select the new language in Tools -> Language menu.

Posted: 2010-01-28 13:22:18
by giulio84
All ready done, But there are some empty blanks and I want to delet them. How can i do to delete them? Like "year", "URL" or "video format"
Thanks :ha:

Posted: 2010-01-28 16:24:55
by antp
instead of ".Caption=..." you can try a ".Visible=0", I do not remember if it works.
Else you can just move them outside the window, by setting .Left or .Top values to high values.

Posted: 2010-01-28 21:14:01
by giulio84
But in what file i must change this element, in language.lng? (i don't thing so) or in moviecatalog.exe? :??:
I thig is moviecatalog.exe but how i can modify .exe?, with txt? is very incompressible so many tags, letters....:hum:
anyway thank you for help me

Posted: 2010-01-28 22:19:01
by bad4u
It's in the language (*.lng) file, e.g. if you want to hide

Code: Select all

LYear.Caption=Year:
you can simply add new lines for

Code: Select all

LYear.Visible=0
or - if that doesn't work - use

Code: Select all

LYear.Left=2000
LYear.Top=2000
to move the the label outside the monitor.

If you want to hide/move the text box instead of the label, use e.g. EYear instead of LYear.