I have to make a program void after 90 day.. and warn at
85..
I have code... but need help with captions?

Any help appreciated..
Thnks

VB Code:
  1. Private Sub Form_Load()
  2.  
  3. Dim DueDate As Date
  4.     DueDate = "6/15/2002"
  5. Dim WarningDdate As Date
  6.     WarningDdate = "6/10/2002"
  7.    
  8.         If WarningDdate < Date Then
  9.        
  10.             If DueDate < Date Then
  11.                 MsgBox "Outdated Pricing. Please update...", vbCritical
  12.             Else
  13.             Dim days As Integer
  14.                 days = DueDate - Date
  15.        
  16.                 MsgBox "Pricing in effect for " & days & " days", vbInformation
  17.             End If
  18.         End If
  19. End Sub
  20.  
  21.  
  22. Seahag