Thanks Marc-Hendrik,
I got it just before your response,
Dim W, H as Double
Dim PW as Double
Dim PH as Double
W = 88.6
H = 1.64
W = CDbl(Wt.text)
H = CDbl(Ht.text)
PW = pow(W, 0.425)
PH = pow(H, 0.425)
BSAC.Text = format(PW*PH*0.007184, "#.###")
Thanks again.
Lennox.
From: "Marc-Hendrik Bremer" <1033-120 at online dot de>
Reply-To: Getting Started <gettingstarted at lists dot realsoftware dot com>
To: "Getting Started" <gettingstarted at lists dot realsoftware dot com>
Subject: Re: How to calculate this
Date: Sun, 30 Jan 2005 19:13:18 +0100
Lennox Jacob wrote:
Neither did this
BSAC.Text =format(WExp(.425)*HExp(0.725)*0.007184, "#.###")
How about:
BSAC.Text= format(Pow(W,0.425)*Pow(H,0.725)*0.007184, "#.###")?
Greetings,
Marc-Hendrik
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://www.realsoftware.com/listarchives/lists.html>
_________________________________________________________________
FREE pop-up blocking with the new MSN Toolbar - get it now!
http://toolbar.msn.click-url.com/go/onm00200415ave/direct/01/
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://www.realsoftware.com/listarchives/lists.html>
|