Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by bocker

  1. bocker

    Sunken Text Box Problem

    I have had some problems getting the special effects to work on sunken. I found this on Google and thought I would pass it on. After you unclick you need to go into form design and reset you special effects to Sunken Fix: Tools, Options, Forms and Reports, uncheck 'Use Windows Themed Controls
  2. bocker

    Open Outlook 2007 from Access 2007

    It worked Thank you for your help!
  3. bocker

    Open Outlook 2007 from Access 2007

    Thanks! I will try it when I get home.
  4. bocker

    Open Outlook 2007 from Access 2007

    I am not real experienced with 2007 at this point. I am double clicking an email text box to open up Outlook. The code does everything I want it to do except when I send the email and close Outlook I am finding out that it doesn't really close Outlook. After returning to my form everything is...
  5. bocker

    Calendar-Like Reports

    Try the following site: http://www.referee-assistant.com/calcontrol.htm
  6. bocker

    Calendat Form layout

    Try this site http://www.referee-assistant.com/calcontrol.htm
  7. bocker

    Access2000 - Need calendar help

    Try this site. http://www.referee-assistant.com/calcontrol.htm
  8. bocker

    automatically date a record

    I made a typing error. Field name Updated was the example on my first posting.
  9. bocker

    automatically date a record

    If you would have a field named Update, put the following code in the form on dirty property. Private Sub Form_Dirty(Cancel As Integer) Me!Updated = Date End Sub
  10. bocker

    When form changes, insert default today as date

    I also noticed that you are using [Date] as your field name. Date is a reserved word in Access. Change the field [Date] to another name like [Update].
  11. bocker

    When form changes, insert default today as date

    Use the On Dirty property of the Form. Private Sub Form_Dirty(Cancel As Integer) Me!Your field name here = Date End Sub
  12. bocker

    How to hot key current date

    On double click event: Me![Your field name] = Date or On Dirty event: Me![Your field name] = Date
  13. bocker

    Tracking vacation on a calendar

    Try this! http://www.referee-assistant.com/calcontrol.htm
  14. bocker

    Calender for Scheduling

    Try this site, it might give get you started! http://www.referee-assistant.com/calcontrol.htm
  15. bocker

    Creating Calendar from Table Data

    Try http://www.referee-assistant.com/calcontrol.htm

Part and Inventory Search

Back
Top