Alles ist korrekt.
Wenn Du
x = CDbl( 328 * 100)
machst, multiplizierst Du 2 Integer und es gibt korrekterweise einen Overflow.
Ein Blick in die Notes Designer Hilfe zur Multiplikation:
The result is a value whose data type is generally the same as that of the operand whose data type is latest in this ordering: Integer, Long, Single, Currency, Double. For example, if one operand is a Double and the other is a Long, then the data type of the result is Double.
Wenn Du bspw.
erg = 328.0 * 100.0
Msgbox x
verwendest, geht es.
Also: Alles KEIN Bug oder sowas!
Andreas