View Single Post
  #3 (permalink)  
Old 12-27-2007, 02:39 PM
$RaMRoM$ $RaMRoM$ is offline
Newbie
 
Join Date: Oct 2007
Posts: 6
Credits: 0
Rep Power: 0
$RaMRoM$ is on a distinguished road
Default

Thanks a lot travy92, your tuts are wonderful, BTW i just wanna say that maybe you can add Text Boxes and change:
Code:
Private Sub cmdCalc_Click()
Mint = DateDiff("d", "5/09/2007", "11/09/2007")
lstAnswer.AddItem "The day difference = " & Mint
End Sub
To:
Code:
Private Sub cmdCalc_Click()
Mint = DateDiff("d", Val(Text1.Text), Val(Text2.Text))
lstAnswer.AddItem "The day difference = " & Mint
End Sub
Just Saying! lol
Reply With Quote