View Single Post
  #2 (permalink)  
Old 08-30-2007, 02:33 AM
BPak BPak is offline
Junior Member
 
Join Date: Apr 2007
Location: Qld, Australia
Posts: 42
Default

Code:
	' move to the previous bet in the table	
	BetRow = (BetRow+tblBet.RowCount-1) Mod tblBet.RowCount

	' move to the next Bet in the Table
	BetRow = (BetRow+1) Mod tblBet.RowCount
I used this in my FlatBet Program which can be seen here

Flat Bet Investment
Reply With Quote