Results 1 to 7 of 7
  1. #1
    1gambit is offline Novice
    Windows XP Access 2010 32bit
    Join Date
    Jan 2012
    Posts
    4

    Follow-up Reminder

    Help! I am a newbie at Access and I am creating a database for our clients who have filed bankruptcy. I need to create a 30 day follow-up alert from the date the bankruptcy was filed. I also need an alert to remind me 10 days before a proof of claim needs to be filed. I am not having much success with it.



    Any help would be greatly appreciated. Thank you in advance!

  2. #2
    June7's Avatar
    June7 is online now VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,959
    Timers in Access are not easy and they hog processor. You can put code behind a form that opens by default when the project opens. This mean you have to open the project every day for the code to run. Code would open a query or form to return records that meet the date filter criteria.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  3. #3
    DinoBaggio is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Feb 2012
    Posts
    17
    hey gambit,
    Im pretty much a complete novice myself, but could do you use outlook office? if so you could use an appointment form that automatically adds the appointment from access to your outlook calendar and provides a reminder on at the time you state in the appointment form.

    not sure if this helps, but thought id throw my two cents in by chance to see if it

  4. #4
    1gambit is offline Novice
    Windows XP Access 2010 32bit
    Join Date
    Jan 2012
    Posts
    4
    Quote Originally Posted by June7 View Post
    Timers in Access are not easy and they hog processor. You can put code behind a form that opens by default when the project opens. This mean you have to open the project every day for the code to run. Code would open a query or form to return records that meet the date filter criteria.
    Sorry to take so long to get back on this, opening the project daily is not a problem. How would I go about creating a code for this?

  5. #5
    June7's Avatar
    June7 is online now VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,959
    One way to set a default form on open is: File>Options>CurrentDatabase>set options as appropriate

    Code would be in the default form Load or Open event. Now what do you want the code to do? Just a popup message 'You have follow ups' or open a report?

    I use only VBA, not macros.

    I don't know your knowledge level so no idea what guidance you need. Review: http://office.microsoft.com/en-us/ac...010341717.aspx

    Attempt code and post for analysis.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  6. #6
    1gambit is offline Novice
    Windows XP Access 2010 32bit
    Join Date
    Jan 2012
    Posts
    4
    BLANK BANKRUPTCY DATABASE.zip
    I am not having much luck getting it to work. This is my first database and I just started using Access when I started making it so I am learning as I go. I have "deleted" a lot of the information, but if there is anything remaining, it is okay. All of the information obtained within this database is all public record.

    Please look it over and if there are any other suggestions, please let me know, I am open to any suggestions.

    But my main issue is I need a "pop-up" alert that will remind me when a proof of claim is due, when 30 days has passed from date of filing. Also if there is a way to get all of the accounts on the cust test table that are linked to the debtor id show up on the debtor information form, only the first account tied to the debtor id shows up. I am not having much luck in getting that to work either, and if there is a way to do it I would be forever in your debt.

  7. #7
    June7's Avatar
    June7 is online now VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,959
    You have default form when project opens. In that form's Open event:
    Code:
    Private Sub Form_Open(Cancel As Integer)
    Dim x As Integer
    x = DCount("[DebtorID3]", "[cust test]", "[PROOF OF CLAIM FILING DATE]+30>=" & Date)
    If x > 0 Then
        MsgBox x & " Proof of Claim due."
    End If
    End Sub
    Instead of message box, could have a query, form, or report open.

    You have a subform to show account info. That subform's RecordSource does not need to be a join of tables. This is causing confusion. The Master/Child links are wrong. Need to be DebtorID and DebtorID3. The subform is set to Single record view. If you want to see all accounts for the client then set to Continuous or Datasheet view and reduce the size of the textbox and the Detail section.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Add button to follow hyperlink in table
    By stanley721 in forum Forms
    Replies: 6
    Last Post: 06-22-2013, 08:49 AM
  2. I need a 90 day reminder
    By weadwaker in forum Programming
    Replies: 3
    Last Post: 09-25-2012, 12:49 PM
  3. Follow Up
    By robertjleach in forum Queries
    Replies: 2
    Last Post: 10-30-2011, 06:07 AM
  4. Follow up calls, put in automatic date
    By Loish in forum Access
    Replies: 1
    Last Post: 04-08-2010, 03:59 PM
  5. FOLLOW UP DATABSE
    By gab_esp in forum Database Design
    Replies: 2
    Last Post: 07-19-2006, 11:27 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums