Nomograms

From CaisisWiki

(Difference between revisions)
Jump to: navigation, search
(New page: Download the following 3 files: *Caisis.Nomogram.dll *Caisis.Nomogram.reg *Caisis.Nomogram.tlb # Open a Module in the Export Analysis Utility: # Click Tools, References, Browse and open t...)
Line 4: Line 4:
*Caisis.Nomogram.tlb
*Caisis.Nomogram.tlb
-
# Open a Module in the Export Analysis Utility:
+
 
 +
# Double-click the Caisis.Nomogram.reg file to register this DLL
 +
# Open a VBA Module in the Export Analysis Utility
# Click Tools, References, Browse and open the Caisis.Nomogram.tlb file
# Click Tools, References, Browse and open the Caisis.Nomogram.tlb file

Revision as of 20:10, 20 December 2007

Download the following 3 files:

  • Caisis.Nomogram.dll
  • Caisis.Nomogram.reg
  • Caisis.Nomogram.tlb


  1. Double-click the Caisis.Nomogram.reg file to register this DLL
  2. Open a VBA Module in the Export Analysis Utility
  3. Click Tools, References, Browse and open the Caisis.Nomogram.tlb file

Public Function TestMe()

   Dim score As Double
   Dim prp As ProstatePreRPNew
   
   Set prp = New ProstatePreRPNew
   
   prp.NAHormones = False
   prp.NAXRT = False
   prp.psa = 2#
   prp.TStage = "T2a"
   prp.PrimaryGleason = 2
   prp.SecondaryGleason = 3
   prp.PositiveCores = 10
   prp.NegativeCores = 3
   prp.PredMonths = 120
   
   score = prp.Calculate
   
   TestMe = score

End Function

Personal tools