Tant mieux .C'est tout simplement parfait!
Pour information, la version 4.0.0 BETA devrait sortir samedi ou dimanche .
For information, version 4.0.0 BETA should be released Saturday or Sunday .
Soulsnake
Je ne sais pas si j'ai bien compris ce que tu demandes mais si tu veux par exemple déplacer certain champs de ton ancienne base de données vers une nouvelle base avec des champs personnalisés c'est très simple.Une petite question: peut-on importer les champs par défaut (ceux d'origine) dans les champs personalisés afin d'éviter de tout recréer si on ne veut en modifier que quelques uns? Je n'ai pas réusit à les trouver via la fonction Importer.
Can we import the original fields in the custom fields? So we don't have to recreate all the fields if we only need to modify 1 or 2.
No, you can't for the moment but you can put unit between brakets in field name .We cannot create a label in the custom fields? I would like to write just text without field (min, MB, fps...)
Yes! When "Multiple values" is checked, that mean you can have multiple values separed by a separator (defined in options) used to make multiple groups during grouping on this field.What does "multiple values" mean exactly? is it to use for subtitles, actors...? When it can be more than one "words/value"?
Code: Select all
if CanSetField(fieldOriginalTitle) then
SetField(fieldOriginalTitle, Value2);
Code: Select all
if CanSetField(fieldOriginalTitle) then
SetField(OriginalTitl, Value2);
Code: Select all
function GetCustomField(fieldTag: string): string;
Code: Select all
procedure SetCustomField(fieldTag: string; value: string);
Code: Select all
function CanSetCustomField(fieldTag: string): Boolean;
Code: Select all
function CustomFieldExists(fieldTag: string): Boolean;
Code: Select all
if CanSetCustomField('OriginalTitl') then
SetCustomField('OriginalTitl', Value2);
Code: Select all
if CanSetField(fieldURL) then
SetField(fieldURL, MovieURL);
if CanSetCustomField('Location') then
SetCustomField('Location', MovieURL);
Code: Select all
if CanSetField(fieldOriginalTitle) then
SetField(fieldOriginalTitle, Value2);
if CanSetCustomField('OriginalTitl') then
SetCustomField('OriginalTitl', Value2);
Code: Select all
program MoveSomeFieldsValue;
// Movie fields id: fieldLanguages, fieldSubtitles, fieldSize, fieldURL, fieldLength
// Custom fields tag: languages, subtitles, size, location, lenght
begin
SetCustomField('languages', GetField(fieldLanguages));
SetField(fieldLanguages, '') // if you want to remove value
SetCustomField('subtitles', GetField(fieldSubtitles));
SetField(fieldSubtitles, '') // if you want to remove value
SetCustomField('size', GetField(fieldSize));
SetField(fieldSize, '') // if you want to remove value
SetCustomField('location', GetField(fieldURL));
SetField(fieldURL, '') // if you want to remove value
SetCustomField('lenght', GetField(fieldLength));
SetField(fieldLength, '') // if you want to remove value
end.