Dear all,
I am converting a small code from Qbasic4.5 to VB6.
in Qbasic4.5 code following variables are declare
DiMul!, FlMul! and
A!,B! and also
ReDim A!(IND%), B!(N%) and

these variable/arrays are used in the code following way.

CC2 = CNTR * (P1(i%) + DND * (2! * P2(i%) + 3! * DND * P3(i%)))
REY = 1273239.5 * Abs(BQ) * FlMul! / (BD(i%) * DiMul!)
A!(IND%) = A!(IND%) + S * BM

is "!" this floating point used in Qbasic or it is mod or factorial.
I need to know what is 2! and 3! ?

And please guide me how I can use "!" in VB6 or how i can convert the above code in VB6 because VB6 dose not recognize "!"....