Subject RE: [IBO] GeneratorLinks in 5,000,000 words or less
Author Svein Erling Tysvær
>So, does GeneratorLinks work with the trigger, or replace the
>trigger? My real question, is if I use GeneratorLinks on a table
>that has the trigger firing, will I end up with the values
>1,2,3,4,5... or the values 2,4,6,8,10... or 1,3,5,7,9...

If you're not careful, you end up with 2,4,6,8... Just make sure that your
trigger only fires the generator if the field is <null>. GeneratorLinks
will by then have supplied a value, whereas your trigger will generate a
value when you're not using IBO (unless you set the value explicitly, which
is strongly discouraged).

Set