Moderator: 2020vision
by philuk » Sun Mar 14, 2010 3:08 pm
by mak » Sun Mar 14, 2010 5:35 pm
by philuk » Sun Mar 14, 2010 9:19 pm
by philuk » Sun Mar 14, 2010 9:21 pm
by philuk » Wed Mar 17, 2010 8:36 am
by GaryRussell » Wed Mar 17, 2010 8:48 am
Public Sub loadQuickPickList()
triggerQuickPickListReload = True
If Hour(Now) = 0 Then
Application.OnTime TimeValue("08:00:00"), "loadQuickPickList"
Else
Application.OnTime TimeValue("00:00:00"), "loadQuickPickList"
End If
End Sub
by philuk » Wed Mar 17, 2010 6:26 pm
by GaryRussell » Thu Mar 18, 2010 8:18 am
Private Sub Workbook_Open()
If hour(now)>=8 then
Application.OnTime TimeValue("00:00:00"), "loadQuickPickList"
else
Application.OnTime TimeValue("08:00:00"), "loadQuickPickList"
End If
End Sub
by xraymitch » Thu Mar 18, 2010 4:00 pm
by GaryRussell » Thu Mar 18, 2010 4:10 pm
by Yorkie » Thu Mar 18, 2010 4:27 pm
by philuk » Thu Mar 18, 2010 5:59 pm
GaryRussell wrote:The Workbook_Open code only runs once when you first open the workbook. If you open it after 8am then it will miss the midnight refresh. If you open it before then it doesn't need changing.
For completeness you can change it as follows.
- Code: Select all
Private Sub Workbook_Open()
If hour(now)>=8 then
Application.OnTime TimeValue("00:00:00"), "loadQuickPickList"
else
Application.OnTime TimeValue("08:00:00"), "loadQuickPickList"
End If
End Sub
by xraymitch » Thu Mar 18, 2010 10:46 pm
GaryRussell wrote:That will be because Betfair are not putting the correct dates in. They have been doing this for some time. They correct it later in the day, but earlier in the morning they always seem to get it wrong for some strange reason.
by GaryRussell » Fri Mar 19, 2010 8:16 am
xraymitch wrote:GaryRussell wrote:That will be because Betfair are not putting the correct dates in. They have been doing this for some time. They correct it later in the day, but earlier in the morning they always seem to get it wrong for some strange reason.
Thanks for the feedback Gary, I must admit to becoming more and more disenchanted with the service that Betfair offers it's consumers.
by xraymitch » Fri Mar 19, 2010 8:30 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.