Calendar With holidays/Events Example Topic (1 Viewer)

Dreamweaver

Well-known member
Local time
Today, 02:23
Joined
Nov 28, 2005
Messages
2,466
Related project: https://www.access-programmers.co.uk/forums/showthread.php?t=303130


Just noticed this un-needed code



Code:
Code from frmscheduleCalendar

    'For I = 1 To 37
     '   Me.Controls("Text" & I).Visible = False
    '    Me.Controls("Day" & I).Visible = False
   ' Next
As it does the same thing in the module Code below
Code:
     For A = 1 To 37
        F("Day" & A).Visible = False
        F("Text" & A).Visible = False
        F("Rmd" & A).Visible = False
        F("Sch" & A).Visible = False
        F("Main" & A).Visible = False
        F("Nw" & A).Visible = False
        F("date" & A) = Null
        F("day" & A) = Null
     Next
As I didn't design the original I've decided to go though it and make improvements where I can and post them here.
 
Last edited:

Dreamweaver

Well-known member
Local time
Today, 02:23
Joined
Nov 28, 2005
Messages
2,466
Comment out the code indecated in image until you are happy
 

Attachments

  • 2019-01-06_LI.jpg
    2019-01-06_LI.jpg
    94.3 KB · Views: 210

JHB

Have been here a while
Local time
Today, 03:23
Joined
Jun 17, 2012
Messages
7,732
I think you should put it in the thread with the database!
 

Dreamweaver

Well-known member
Local time
Today, 02:23
Joined
Nov 28, 2005
Messages
2,466
I'm working on an update for the calendar which I hope to complete by sunday

I'm adding a yearly events like birthdays, Anniversaries Etc.
I know most wont need it but I have a use for it in my personal Db.


I'll be adding an update db with what you will need and post a complete description on how you can add it to the calendar.
 

Attachments

  • 2019-01-10.jpg
    2019-01-10.jpg
    104 KB · Views: 139

Dreamweaver

Well-known member
Local time
Today, 02:23
Joined
Nov 28, 2005
Messages
2,466
Yearly Events Update Info




This will allow you to show yearly events like birthdays, Anniversaries on your own calendar (I.E. when you are loged into your db)


By ticking the all field that event will be shown on All employees calendars this should be restricted to managers/Admin as it would relate to special dates for the company they wish to keep the employees aware of.


Download this update from the link below:
https://access-programmers.co.uk/forums/showpost.php?p=1606133&postcount=3


A full description has been added to the topic starting on post 2
 

Attachments

  • 2019-01-13.png
    2019-01-13.png
    7.6 KB · Views: 712

Dreamweaver

Well-known member
Local time
Today, 02:23
Joined
Nov 28, 2005
Messages
2,466
Re: Employee Example Version 2

I'm hoping To complete this update by the 24th


This update includes:

  1. Works Diary
  2. Updates to the Holiday Planner For works diary
  3. Updates to calendar For works Diary
  4. New Meetings system for Works Diary
  5. I have used the groups/tasks From peter Hibbs Gantt Chart Demo, This is a demo Item which shows some of the things that can be done with the data from the works Diary
  6. Works Diary Uses Same Admin/Manager System as The Holiday planner
  7. The Main Screen/Preferences Screen has been updated
  8. Complete word doc going though the calendar, Holiday Planner and Works Diary Usage
It will be uploaded to this topic Hopefully by the date above
https://www.access-programmers.co.uk/forums/showthread.php?t=303671
 

Attachments

  • 2019-02-16 (1).png
    2019-02-16 (1).png
    72.9 KB · Views: 208
  • 2019-02-16 (2).png
    2019-02-16 (2).png
    66.7 KB · Views: 203
  • 2019-02-16 (4).png
    2019-02-16 (4).png
    82.9 KB · Views: 195
  • 2019-02-16 (5).png
    2019-02-16 (5).png
    60.4 KB · Views: 198

Users who are viewing this thread

Top Bottom