473,386 Members | 1,812 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Setting Future Dates, like a scheduler for a to do list

Can this be done in access by a lay person? Also, are there any tutorials for
this type of addition to your applications?

I'm trying to use a calendar control to set a date in the future for a to do
list, similar to a PIM. If the date exists, then I want to open that date, if
it doesn't I want to create that date. Thought about make table query, but not
sure to go from there.

Any help would greatly be appreciated. I searched Deja News and Google and kept
seeing the same thing, either buy, or there wasn't anything. Oh and I'm using
Access 97.

Michael
Nov 12 '05 #1
3 1605
Your question is not entirely clear.
The Calendar control is simply a graphical tool for returning/selecting a
Date value. What you do with it beyond that has nothing to do with the
control. If you are asking if the "lay person" can create a PIM application,
then I would tend to say, "Yes..A simple one." If you are asking how to
create a PIM, then the answer is much longer and would depend a lot on what
exactly you want the app to do. If you are asking what to do with the
returned date, again it depends on what exactly you want the app to do. For
"the lay person" who is not interested in the challenge, purchasing a PIM
(Like Outlook for instance) would be far simpler.

Mike Storr
www.veraccess.com
"Lumpierbritches" <lu*************@aol.com> wrote in message
news:20***************************@mb-m01.aol.com...
Can this be done in access by a lay person? Also, are there any tutorials for this type of addition to your applications?

I'm trying to use a calendar control to set a date in the future for a to do list, similar to a PIM. If the date exists, then I want to open that date, if it doesn't I want to create that date. Thought about make table query, but not sure to go from there.

Any help would greatly be appreciated. I searched Deja News and Google and kept seeing the same thing, either buy, or there wasn't anything. Oh and I'm using Access 97.

Michael

Nov 12 '05 #2
Mike,

Thank you for your reply. I'm trying to use the Calendar control to create a
date book in access to schedule future events, with dates only. I'm trying to
find some tips or code on how to do this.

I know the calendar control is just for date input, so how do I create a form,
on the fly to store date events or do I check to see if that date is already
there, so I don't have more than one date floating around for events?

Michael
Nov 12 '05 #3
Hi Mike,

In it's simplest form, it's not too tough:

1.) Create an unbound form called "frmAppointments"
2.) Add an ActiveX calendar control named "MyCal", and a subform called
"sbfAppointments" which is bound to "tblAppointments"
3.) Set the LinkMaster to "MyCal " and the LinkChild to "ApptDate"
4.) Add some code to set the date to today's date when the form loads.
5.) Tools / Startup ... Display Form: "frmAppointments"
Option Compare Database
Option Explicit

Private Sub Form_Load()
Me.MyCal = Date
End Sub

Private Sub MyCal_AfterUpdate()
Me.sbfAppointments.Requery
End Sub

Now as soon as you open your database, all appointments for today are
displayed in the subform.
New appointments can also be added for the date selected, using the same
subform.

IF the subform was a lttle too small to "get all the details", you could do
something like double-click on the "ApptID" field in the subform and have a
new full-sized form called "frmAppointmentDetails" open to the same record.
(Just an idea.)
--
HTH,
Don
=============================
Use My*****@Telus.Net for e-mail
Disclaimer:
Professional PartsPerson
Amateur Database Programmer {:o)

I'm an Access97 user, so all posted code
samples are also Access97- based
unless otherwise noted.

Do Until SinksIn = True
File/Save, <slam fingers in desk drawer>
Loop

================================


"Lumpierbritches" <lu*************@aol.com> wrote in message
news:20***************************@mb-m17.aol.com...
Mike,

Thank you for your reply. I'm trying to use the Calendar control to create a date book in access to schedule future events, with dates only. I'm trying to find some tips or code on how to do this.

I know the calendar control is just for date input, so how do I create a form, on the fly to store date events or do I check to see if that date is already there, so I don't have more than one date floating around for events?

Michael

Nov 12 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

19
by: Eric | last post by:
I'm trying to have some scripts run periodically on Windows XP and found the "Task Scheduler" did not execute my scripts. My scripts are of the form scriptName.py, and will run just by invoking that...
242
by: James Cameron | last post by:
Hi I'm developing a program and the client is worried about future reuse of the code. Say 5, 10, 15 years down the road. This will be a major factor in selecting the development language. Any...
3
by: Lumpierbritches | last post by:
Can this be done in access by a lay person? Also, are there any tutorials for this type of addition to your applications? I'm trying to use a calendar control to set a date in the future for a to...
8
by: MLH | last post by:
Anybody's solution would be appreciated. Pls, do not pause to write anything for this. I'm not looking for that kind of a handout. I have an idea about how to do it, but I wanted to see if anyone...
7
by: Shane Story | last post by:
Have an app and would like to allow easy addition of MYAPP.EXE /F /P (for example) my prog with command line args, as a job to be run. Would like to make it easier on the user to run the app. ...
1
by: laredotornado | last post by:
Hi, I'm using PHP 4.4.4 on Apache 2 on Fedora Core 5. PHP was installed using Apache's apxs and the php library was installed to /usr/local/php. However, when I set my "error_reporting"...
3
by: lsmith | last post by:
Dear group, I am the new volunteer coordinator for a non-profit organization in Tucson, AZ. One of my main focuses is to develop our own volunteer pool using either MS Access 2002 or Excel...
2
by: =?Utf-8?B?Sm9ubnk=?= | last post by:
I have an ASP.NET 2.0 C# web application that is contacting an Exchange server using WEBDAV. It allows the users to look up appointments for a future date. The problem I have is determining the...
3
by: NDayave | last post by:
How Do, Is there any way to get a drop down menu to show all dates into the future, without entering them into a table beforehand? I really don't want to use the calendar control, but I need to...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.