Contributed by Samuel Stimpson ============================== CCFD .NET API Maxmind_CC_Fraud_API_Installer.zip contains an installer for the API. It will install the API to the user's local system under program files / maxmind with icons for the help.chm and the test harness program. After installing the API all a user has to do is. 1. Add a reference to the api dll in vs.net 2. use the following 3 lines of code Dim CCFraudDetector As New MaxMind.CreditCardFraudDetection("", True, 10) Dim ScoreObj As MaxMind.FraudScore = CCFraudDetector.GetFraudScore("24.24.24.24", "yahoo.com", "New York", "NY", 11021, "US") MsgBox(ScoreObj.score) For more details check out the help file.