VBGamer |
|||||||||||||||||||||||||||
RE: pi in VB Jay Wheeler (1 reply, 0 views) (2000-Sep-14) Sure, just use this info:
ATN(1) -- give you the angle where the tangent is one, which is pi/4. So to get PI, just be like this:
-----------
Dim PI as Double
PI = 4 * ATN(1)
-----------
|