My script to Check off those items that do not have descs

If you made a script you can offer it to the others here, or ask help to improve it. You can also report here bugs & problems with existing scripts.
Post Reply
Dobermann
Posts: 9
Joined: 2006-10-08 09:45:06

My script to Check off those items that do not have descs

Post by Dobermann »

Hello,

I don't know Pascal, C, C++, or Java, but I know MS-SQL and am reading a book to learn PHP. So I looked at the IMDB script and came up with this from what I gleaned from it.

I wanted a script that would check off those items that do not have descriptions so that I only have to deal with them when connecting to IMDB instead of the entire huge list. So, this is what I have come up with. It seems to work, but I would appreciate critique as I might be missing something.

Also, is it worth even putting up for others to use? If so, what do I need to do?

Thanks!
Dobermann

Code: Select all

(***************************************************

Ant Movie Catalog importation script
www.antp.be/software/moviecatalog/

[Infos]
Authors=Charity Slepcevic
Title=CheckNoDesc.ifs
Description=Check off those items that do not have descriptions
Site=
Language=EN
Version=1.0
Requires=3.5.1
Comments=
License=
GetInfo=0

[Options]

***************************************************)

program CheckNoDesc;
begin
	if GetField(fieldDescription) = '' then
	begin
	SetField(fieldChecked, 'True');
	end;
end.
Post Reply