Moderator: 2020vision
by Spike » Fri May 22, 2009 10:26 am
by dgs2001 » Fri May 22, 2009 11:48 pm
by dgs2001 » Sat May 23, 2009 12:02 am
by Captain Sensible » Sat May 23, 2009 11:21 pm
by GaryRussell » Mon May 25, 2009 9:48 am
Public Declare Function GetTickCount Lib "kernel32" () As Long
Option Explicit
Dim dtStart As Long
Dim dtEnd As Long
Dim refreshTimes As Collection
Dim elapsedTime As Long
Dim totRefresh As Long
Dim refreshed As Boolean
Dim refreshCount As Long
Const avgCount As Integer = 10
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Columns.Count = 16 Then
If Not refreshed Then
refreshed = True
dtStart = GetTickCount
Set refreshTimes = New Collection
refreshCount = 0
Else
dtEnd = GetTickCount
refreshCount = refreshCount + 1
elapsedTime = dtEnd - dtStart
refreshTimes.Add Str(elapsedTime), Str(refreshCount)
totRefresh = totRefresh + elapsedTime
If refreshCount > avgCount Then
totRefresh = totRefresh - Val(refreshTimes(Str(refreshCount - avgCount)))
refreshTimes.Remove (Str(refreshCount - avgCount))
Cells(1, 26).Value = totRefresh / avgCount
End If
dtStart = dtEnd
End If
End If
End Sub
by 2020vision » Mon May 25, 2009 10:29 am
The strength of Gruss Software is that it’s been designed by one of you, a frustrated sports punter, and then developed by listening to dozens of like-minded enthusiasts.
Gruss is owned and run by brothers Gary and Mark Russell. Gary discovered Betfair in 2004 and soon realised that using bespoke software to place bets was much more efficient than merely placing them through the website.
Gary built his own software and then enhanced its features after trialling it through other Betfair users and reacting to their improvement ideas, something that still happens today.
He started making a small monthly charge so he could work on it full-time and then recruited Mark to help develop the products and Gruss Software was born.
We think it’s the best of its kind and so do a lot of our customers. But you can never stand still in this game and we’ll continue to improve the software if any more great ideas emerge.