If you need help on how to use the program
-
-=[WeBsEcReTa]=-
- Posts: 37
- Joined: 2002-10-02 23:46:56
- Location: Santiado de Chile
-
Contact:
Post
by -=[WeBsEcReTa]=- »
My catalog is until I number 872. How I can clon the number of movie to media label? for all
Mi catalogo es hasta el numero 872. ¿Cómo puedo clonar el número de la pelicula a código de registro? para todos

-
antp
- Site Admin
- Posts: 9668
- Joined: 2002-05-30 10:13:07
- Location: Brussels
-
Contact:
Post
by antp »
using the following script:
Code: Select all
program NewScript;
begin
SetField(fieldMedia, GetField(fieldNumber));
end.
-
-=[WeBsEcReTa]=-
- Posts: 37
- Joined: 2002-10-02 23:46:56
- Location: Santiado de Chile
-
Contact:
Post
by -=[WeBsEcReTa]=- »
It is possible to be modified to put something before the mumber for example:
456 ==> mov-456
Se puede modificar para poner algo antes del mumero por ejemplo:
456 ==> mov-456
-
antp
- Site Admin
- Posts: 9668
- Joined: 2002-05-30 10:13:07
- Location: Brussels
-
Contact:
Post
by antp »
Code: Select all
SetField(fieldMedia, 'mov-' + GetField(fieldNumber));
or if you want to add it to the existing media field, replace fieldNumber by fieldMedia