Great App!
German language: At settings "Felder in der 2. Zeile" is listed twice. Please change one of them to "Felder in der 3. Zeile".
Search found 5 matches
- 2013-10-03 23:43:55
- Forum: Ant Movie Catalog > Mods
- Topic: Pocket AMC Reader for Android 2.3.2 available [29.9.2020]
- Replies: 298
- Views: 285342
- 2013-05-03 16:04:59
- Forum: Ant Movie Catalog > Scripts
- Topic: Merging Categories
- Replies: 0
- Views: 1781
Merging Categories
Categories of movies can have different values but same meanings, e.g. 'Sci-Fi' and 'Science Fiction' - or different languages. To join these categories together to one category I have written a little script. You have to write your wishes into the script code - it's not very smart, but easy ...
- 2013-04-09 19:44:17
- Forum: Ant Movie Catalog > Scripts
- Topic: [REL]Script to delete undesirable commas
- Replies: 6
- Views: 2489
- 2013-04-08 19:26:19
- Forum: Ant Movie Catalog > Scripts
- Topic: [REL]Script to delete undesirable commas
- Replies: 6
- Views: 2489
[REL]Script "OFDb - IMDb - TMDb - mod"
The Scipt "OFDb - IMDb - TMDb - mod" fills the database field "producer" with double commas as separator.
You can fix it by inserting at line 505:
Value := StringReplace(Value, ',,', ',');
Value := StringReplace(Value, ', ,', ',');
(Thx to soulsnake)
Note: This is a patch only to change the ...
You can fix it by inserting at line 505:
Value := StringReplace(Value, ',,', ',');
Value := StringReplace(Value, ', ,', ',');
(Thx to soulsnake)
Note: This is a patch only to change the ...
- 2013-04-07 08:18:55
- Forum: Ant Movie Catalog > Scripts
- Topic: [REL]Script to delete undesirable commas
- Replies: 6
- Views: 2489
[REL]Script to delete undesirable commas
Some scripts deliver strings with double commas or with comma at the end. This script deletes these commas in all string fields.
program CorrComma;
uses
StringUtils1;
var
MyField: string; // contents of a database field
MyFieldLen: integer; // length of MyField
Position: integer; // position of ...
program CorrComma;
uses
StringUtils1;
var
MyField: string; // contents of a database field
MyFieldLen: integer; // length of MyField
Position: integer; // position of ...