Hi Arnór,

> Question: WHERE is the language ID for a exe set up? In the version file
> or??? The Clarion .version files have "translation" block like this (from
> a client project)
>
> BEGIN
> VALUE "Translation", 0x0409, 1252
> END
>
> So this exe should show with 1033 (408h) in the read-only entry? Or is
> the default specified somewhere else?

Yes, that's correct.

BEGIN
VALUE "Translation", 0x0409, 1252
END

would translate to 1033 in the SetupBuilder read-only entry. It's a "for
your information" thing to check if the file is the "expected" version. The
information from this read-only entry does not make it into the compiled
setup.exe.

Friedrich