Results 1 to 3 of 3

Thread: How to make a reminder

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Aug 2000
    Posts
    26

    Cool

    can you please help me how to make a reminder? i mean poping up a message on a specific date and time. regards

  2. #2
    Guest
    Put the following code in a Timer and set it's interval to 1.
    Code:
    Private Sub Timer1_Timer()
    
        'Check if the date is the specified date
        tDate = Format(Date, "dd/mm/yyyy")
        If tDate = "10/08/2000" Then
            'Check if the time is the specified time
            tTime = Format(Time, "hh:mm:ss")
            'If so, then display a MessageBox
            If tTime = "09:24:00" Then MsgBox ("Reminder")
        End If
        
    End Sub

  3. #3

    Thread Starter
    Junior Member
    Join Date
    Aug 2000
    Posts
    26

    Wink The Great Megatron

    you are great, this is exactly what i need. thanks a lot. i will use this with MS Agent. if u need files and info about msagent i can send u whatever u need... thanks again...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width