Dick7Access
Dick S
- Local time
- Today, 07:32
- Joined
- Jun 9, 2009
- Messages
- 4,301
Need tutorial or instruction on Calendar Control 12.0
Hi and welcome to AWF.Need tutorial or instruction on Calendar Control 12.0
Howzit
Welcome to AWF.
Check out Uncle Gizmo' calendar control. He even has a video demonstration. This is pretty much all I use.
http://www.access-programmers.co.uk/forums/showthread.php?t=140186
No, it won't. The calendar control is just a calendar that looks like this:Calendar control 12.0 to see if it would work like I want it to.
Normally selecting dates. But there is no way to attach information to it.What is Calendar Control 12.0 use for anyways?
There are things that need to be changed in 2007 from 97 so it won't be necessarily a simple thing but it can be done and if you post questions as you have them we all should be able to help.Thanks again SOS
I have download the calendar you had on your link. It is what I am looking for. I have not been able to make it work yet, but I am still playing with it. However it was made for 97 and probable won't work on 2007. When I get a chance I will load it on my old puter that has 2003 on it and see if it works there. Thanks again.
You set it for the FOLDER that the ACCDB or MDB file is in. Not the program.SOS,
Is the trusted location a global setting or does it have to be set for all Access files. When I follow the instructions it show me this as a trust location. C:\Program Files\Microsoft Office\Office12\ACCWIZ\. When I tried to go to an indivual file it would not let me go there. Thanks again for all you help.
Set rst = CurrentDb.OpenRecordset(strSQL)
MsgBox (strSQL)
MsgBox(rst.RecordCount)
If rst.RecordCount > 0 Then
strSQL = "SELECT tblAppointments.*, tblHour.HourID " & _
"FROM tblAppointments INNER JOIN tblHour " & _
"ON tblAppointments.ApptStartTime = tblHour.Hours " & _
"WHERE tblAppointments.AppDate = #" & dtePubMyDate & "# " & _
"ORDER BY ApptStartTime;"