473,327 Members | 2,118 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,327 software developers and data experts.

MS Access Calendar

135 100+
Admin Note
This thread has been closed as it has gotten just too big.

If you have any questions about the application discussed in this thread please start a new thread in MS Access by clicking on the Start a Discussion button and link to the this thread in your question.


Original Question
Just wondering...Am I the only one in the access universe that would like an Outlook like calendar option? Is there such a thing as a calendar that can be used for data entry? You know...double click the day and "POP" up comes the event screen to enter data into. I have spent countless hours searching for such a phantom. Any thoughts or sites with a template/example/download?

Admin Edit
For ease of usage I will include a link here to the post in this thread with the latest version of the solution database.

Currently this is at Post #298.

Alternatively, if the attachment is all you require, then you'll find it here (Calendar.zip).

A wide angled version (for wider screen real-estate) has also been posted now at Post #327. The attachment there is Wide Calendar with Switchboard.zip.
Jan 19 '08
340 108209
ADezii
8,834 Expert 8TB
I must say that it does make the Calendar uniform and symmetrical, thank you.
Jan 26 '10 #201
ADezii
8,834 Expert 8TB
You are quite welcome. I must state again that I am not the original creator of the Calendar Database. The original Author is a friend and ex co-worker who created this basically as a Platoon Scheduler and simple Events Posting utility. With his explicit permission, I've simply adapted it many times over the years for specific purposes and distributed it as freeware to the GP.
Jan 26 '10 #202
NeoPa
32,556 Expert Mod 16PB
Well then - thanks certainly go to your generous ex- co-worker.

We still appreciate the time, effort and understanding you put in on behalf of numerous members to provide this and make certain changes so that they can all use it easily. That is no mean offering my friend, and I'm pretty sure most of those you've helped very much appreciate your part in all this.
Jan 26 '10 #203
ADezii
8,834 Expert 8TB
Hello again, edsuk:
  1. BTW, for my own curiosity, did you have to swap Lines 21 and 26 as I indicated to in Post #228?
  2. There is a Logic Bug that you should be aware of and correct. I discovered the Bug awhile ago, and I actually corrected it minutes ago (I know, I know!). Should you ever set a Reference to the ADO Object Library as well as DAO, and place it at a higher Priority Level within the References, the code will crash for obvious reasons (DAO References for db and rstEvents were not Explicitly Declared.
  3. The following Line of Variable Declarations in the PopulateCalendar() Routine should be changed. Original Declarations are:
    Expand|Select|Wrap|Line Numbers
    1. Dim astrCalendarBlocks(1 To 42) As String, db As Database, rstEvents As Recordset
    but they should be:
    Expand|Select|Wrap|Line Numbers
    1. Dim astrCalendarBlocks(1 To 42) As String, db As DAO.Database, rstEvents As DAO.Recordset
  4. Because of the Logic used implementing this Database, the constant Deleting and Appending of Records to an Intermediate Table, frequent Compacting of the Database should be performed on a regular basis.
  5. When I get a chance, I will Post the Calendar Database with the Logic Bug corrected, edsuk's significant Update, and some visual enhancements to frmCalendar. When this happens, prior Attachments will be removed.
Jan 26 '10 #204
edsuk
10
hi ADezii

1) Yes I did have to modify this line to the UK date format. Thanks for the heads up on this - would have taken me ages to figure out otherwise.
2) I do have a reference to both DAO and ADO in my Db with DAO being higher, good to know that you spotted it for for future reference.
3) OK
4) Yes, always good to perform this action periodically.
5) Significant update - I think not LOL

Again thank you and thanks to your friend/ex co-worker..
Jan 26 '10 #205
ADezii
8,834 Expert 8TB
@NeoPa
Thanks for the kind words, NeoPa.
Jan 26 '10 #206
ADezii
8,834 Expert 8TB
@edsuk
Yes I did have to modify this line to the UK date format. Thanks for the heads up on this - would have taken me ages to figure out otherwise.
Our own beloved msquared spotted this Bug awhile ago when I was at my wits end trying to determine where the problem was. Simple no peripheral vision, I guess. Thanks again Mary.
Jan 26 '10 #207
ADezii
8,834 Expert 8TB
Here is the latest Calendar Demo, with all Revisions and Enhancements, for a Date Range.
Attached Files
File Type: zip Calendar.zip (62.3 KB, 283 views)
Jan 26 '10 #208
Your calendar form looks great and is what I have been searching for. However, I don't know how to impement it in my database. Do I need to import all the queries in addition to the mods and form? What lines need to be changed to work with my table?

Table:
Training_Events

Fields:
ID
Title
Start Date
End Date
Start Time
End Time
Location
Description
Trainer
Vendor
Attachements


I am building a database to keep track of maditory State and Federal training for employees. This form would be a great way to view my scheduled training events and I wouldn't have to do double entry on my Groupwise calendar.

Any help is greatly appreciated. I am not very good at coding.
Thanks
Feb 1 '10 #209
ADezii
8,834 Expert 8TB
  1. If you can, Upload a Database consisting of only the Table Training_Events and approximately 12 Records.
  2. Let me know what Field(s) you wish to display in the Calendar for any given day.
  3. From this I'll construct a simple Demo from which you can get started.
  4. With limited coding experience, this would probably be your only option.
Feb 1 '10 #210
I would like the event title and the start time to show in the calendar.

Thanks for your help!!!!!
Attached Files
File Type: zip T_Events.zip (15.5 KB, 205 views)
Feb 1 '10 #211
ADezii
8,834 Expert 8TB
Sorry, but I am not runningt Access 2007. Can you convert this DB to Access 2003 Format? If you cannot, I'll simply duplicate the Table Structure, but this would simply prolong the process.
Feb 1 '10 #212
Here it is. I had to change the attachment feild to text type in order to get it to convert, but I don't think that should effect anything.


Thanks.
Attached Files
File Type: zip T_Events.zip (10.9 KB, 156 views)
Feb 1 '10 #213
ADezii
8,834 Expert 8TB
See how this (Attachment) works out for you:
Attached Files
File Type: zip Calendar_Training_Events.zip (66.1 KB, 389 views)
Feb 2 '10 #214
ADezii,

Wow Great Form!! Thanks for help on this! I think I have it working, I had to delete the attachemnt field from both tables in my 2007 database. the calendar form would not work or populate with the attachment field for some reason when the property was set to the new 2007 attachment property. I made sure both fields were set to the attachment property, but that didn't make a difference. Once I deleted that field, the form opened up fine. I also had found that when I tried to create a macro button to open then form in dialog mode from my main Training Event form, that the calender would open blank and I had to switch to the month from the drop down list or click the Sync Up botton. It has something to do with the dialog mode. In normal mode it opens to the correct month but I lose all my top row of buttons. I have solved this for now by copying the code from the Sync Up button and copying it to the On Load event. Now the form opens in Dialog mode and populates the calendar with the current month. I hope this is the right fix for opening the form.

Thanks for your help
Feb 2 '10 #215
ADezii
8,834 Expert 8TB
You are quite welcome. There is a Bug in the code relating to the display of the Start Date within the Events List Box at the bottom of the Calendar Form. Should an Event span multiple days, the Start Date in the List Box will reflect the actual Date selected in the Calendar itself, and not the True Start Date. I'll try to correct it this evening, then Upload the amended Database as an Attachment. I would hold off incorporating the Calendar into your DB until I get this fixed. It involves changes in a couple of Procedures, modifying at least 1 Property of the Events List Box, and adding an additional Field to the TEMP Table. Stay tuned...

P.S. - Because of the logic used in this Database, namely the constant Deletion and Appending of Records to an Intermediate Table, I would periodically Compact the DB.
Feb 2 '10 #216
ADezii

I looked at the multiple date span and how it shows is fine with me since the end date stays the same. It doesn't cause me any confusion since the dates all show in the calendar. So you don't need to worry about fixing that for me.
I do have the calendar in my database and it is working fine and I really like it.

I do have one question that I am not sure if it can be done. I set the double click property to:
DoCmd.OpenForm "Training Events Details", acNormal, , , acFormAdd, acDialog

Is there way to insert the date of the day that is double clicked into the date field as the form is opened?
Feb 2 '10 #217
ADezii
8,834 Expert 8TB
Yes there is. I am heading to work right now, but I will try to get to it this evening and Post just the additional code (Single Line) here.
Feb 2 '10 #218
ADezii
8,834 Expert 8TB
It's not exactly intuitive, but the actual Date Value of the Calendar Block (Text Box) Dbl-Clicked on can be retrieved via the Blocks’ Tag Property then passed as an Argument to the OpenForm() Method. In the Current() Event of Training Events Details, a Date Field can then be populated with this Value.
  1. In the Dbl-Click() Event of 'ALL' 42 Text Boxes, Copy-N-Paste the following Line of Code substituting each Block's Name. I'll use the 4th Text Box for an example:
    Expand|Select|Wrap|Line Numbers
    1. Private Sub txtDayBlock04_DblClick(Cancel As Integer)
    2.   DoCmd.OpenForm "Training Events Details", acNormal, , , acFormAdd, acDialog, CDate(Me![txtDayBlock04].Tag)
    3. End Sub
  2. In the Current() Event of the Training Events Details Form Copy-N-Paste the following Line of Code:
    Expand|Select|Wrap|Line Numbers
    1. Private Sub Form_Current()
    2.   If Me.NewRecord Then
    3.     Me![<Date Field Name>] = Me.OpenArgs
    4.   End If
    5. End Sub
  3. Any further questions, feel free to ask.
Feb 2 '10 #219
That worked! The only thing I need to do is figure out a good way to prevent numerous records with just a start date from building up if someone double clicks on a few different dates on the calendar and decided not to enter an event. I fixed that problem for now by running a deleted query on close that will delete all records without a title. I'm sure there is a better way but that was the only way I could figure to keep numerous unwanted records from being entered.

If I new I was the only one who was going to use this database, I wouldn't worry about it and just delete the few times I might accidentally insert an erroneous record. However, I am collaborating with the State which is interested in my project and has asked to share it with others in our State. For this reason I am trying to make it user friendly for someone who may have very little Access experience. I am just a few steps above a novice and I am very thankful for forums like this where one can find so much help!
Feb 3 '10 #220
ADezii
8,834 Expert 8TB
The only thing I need to do is figure out a good way to prevent numerous records with just a start date from building up if someone double clicks on a few different dates on the calendar and decided not to enter an event.
  1. Make one or more Fields Required - the User will not be able to Save the Record without enter Data into this/these Fields.
  2. Validation Code in the BeforeUpdate() Event of the Form, seating the Cancel Argument to True when necessary.
Feb 3 '10 #221
@ADezii
What is the code that would go in the BeforeUpdate() Event?

My Title field was origninally required but I found that it created a error message on close that made it very difficult to close the form. The error just kept looping back. Will step two prevent all the warning messages?

I turn the warnings off then back on with the delete query so that no messeges show.

Thanks
Feb 3 '10 #222
@ADezii
I found the following code on the web that seems to work on close. It gives the user the choice to go back to the form or cancel the record. I went back and set my Title field to required and this code worked fine for closing the form without saving the record.
Expand|Select|Wrap|Line Numbers
  1. If IsNull(Me![Title]) Then
  2.         If MsgBox("'Title' must contain a value." & Chr(13) & Chr(10) & _
  3.         "Press 'OK' to return and enter a value." & Chr(13) & Chr(10) & _
  4.         "Press 'Cancel' to abort the record.", _
  5.         vbOKCancel, "A Required field is Null") = vbCancel Then
  6.              DoCmd.Close
  7.              ' For Access 2.0 remove the previous line and replace with:
  8.              ' DoCmd Close
  9.         Else
  10.              Me![Title].SetFocus
  11.         End If
  12.       Else
  13.         DoCmd.Close
  14.       End If
Feb 3 '10 #223
ADezii

Thanks for all your help, I think I have everything going well with the calendar. I have just one question left, (hopefully my last dumb question). Is there a way to generate the Sync Up comand for the calendar when I close the Training Events Detail form?

After I double click a calendar date to add an event, enter the info and then close the form, I notice the calendar does not show the new date unless I click the Sync Up button. It's not a big deal to hit the sync button but I thought it would be nice it I could get the calendar to sync up when the Events Detail Form closes. I did try to put the Sync Up code on the Got_Focus and Current Events of the Calendar form, but neither of those worked.

Thanks for all your help!!!!!
Feb 3 '10 #224
ADezii
8,834 Expert 8TB
In the Close() Event of the Training Details Form:
Expand|Select|Wrap|Line Numbers
  1. Private Sub Form_Close()
  2. 'Explicitly Set Focus to the Calendar Form
  3. Forms![frmCalendar].SetFocus
  4.  
  5. 'Activate the Shortcut Key for the Sync Command Button
  6. SendKeys "%S", True
  7. End Sub
Feb 3 '10 #225
@ADezii
Perfect! Perfect! You made my day! Thanks so much for all your help!
Feb 3 '10 #226
ADezii
8,834 Expert 8TB
Youo are quite welcome. enjoy the Application.
Feb 3 '10 #227
ADezii

Is it possible to make a double click on a record that shows in the bottom LstEvent box to open my Training Events Detail to open to the record shown? I tried a typical macro to open the record by the ID but I get a function error.

I thought it would be nice to open a record that way if there was a date or other change that needed to be made.

Thanks
Feb 6 '10 #228
ADezii
8,834 Expert 8TB
In the lstEvents_DblClick() Event:
Expand|Select|Wrap|Line Numbers
  1. Private Sub lstEvents_DblClick(Cancel As Integer)
  2.   DoCmd.OpenForm "Training Events Details", acNormal, , "[ID] = " & Me![lstEvents].Column(0), acFormEdit
  3. End Sub
Feb 6 '10 #229
I'll add this on Monday when I get back to work! Thanks for the prompt reply. Your Calendar is really cool!!
Feb 6 '10 #230
@ADezii
ADezii,

How do I get the form to open in dialog mode? The form is opening in the tab behind the Calendar where I can't get to it without closing the Calendar. It is, however, finding the right record.

When I tried:
Expand|Select|Wrap|Line Numbers
  1. Cmd.OpenForm "Training Events Details", acNormal, , , , acDialog, "[ID] = " & Me![lstEvents].Column(0), acFormEdit
I recieved the error messae that says , "Wrong number of arugments or Invalid property Assignment. If I take the ", acFormEdit" off the end of the code the form will open in dialog mode but goes the the first record in the table instead of the record I clicked on. Your help is greatly appreciated.

Thanks
Feb 8 '10 #231
ADezii,

Never mind, I figured it out. I was putting AcDialog in the wrong place. This code worked:
Expand|Select|Wrap|Line Numbers
  1. DoCmd.OpenForm "Training Events Details", acNormal, , "[ID] = " & Me![lstEvents].Column(0), acFormEdit, acDialog
Thanks for such a cool calendar!!
Feb 8 '10 #232
ADezii,

I found a small bug in the Double click event for the lstEvents box. If only one record shows in the box and I accidentally click on the open space below the record, but within the box, I get a run time error that says there is a Syntax error or missing operator in the query expression ID =

If I Choose End instead of Debug on the error message, the calendar stops functioning and I have to exit. Is there a way to fix this?
Feb 9 '10 #233
Adezii,

I've kinda fixed the bug for now by adding an On Error GoTo statement so now a user will get a message to double click on the record instead of the runtime error.
Expand|Select|Wrap|Line Numbers
  1. Private Sub lstEvents_DblClick(Cancel As Integer)
  2. On Error GoTo Error_lstEvents_dblclick
  3.  DoCmd.OpenForm "Training Events Details", acNormal, , "[ID] = " & Me![lstEvents].Column(0), acFormEdit, acDialog
  4.  
  5. Exit_lstEvents_dblclick:
  6. Exit Sub
  7.  
  8. Error_lstEvents_dblclick:
  9. MsgBox "Please double click on the record.", vbInformation + vbOKOnly, "No Record Selected"
  10.  
  11. Resume Exit_lstEvents_dblclick
  12.  
  13. End Sub
Is this the best way to handle this? It works for now.

Thanks
Feb 9 '10 #234
ADezii
8,834 Expert 8TB
Expand|Select|Wrap|Line Numbers
  1. Private Sub lstEvents_DblClick(Cancel As Integer)
  2. If Not IsNull(Me![lstEvents].Column(0)) Then
  3.   DoCmd.OpenForm "Training Events Details", acNormal, , "[ID] = " & Me![lstEvents].Column(0), acFormEdit, acDialog
  4. Else
  5.   MsgBox "You must Dbl-Click on a specific Record and not on an Emply Space " & _
  6.          "in the List Box", vbExclamation, "No Record Selected"
  7. End If
  8. End Sub
Feb 10 '10 #235
That works great Thanks!
Feb 10 '10 #236
NeoPa
32,556 Expert Mod 16PB
So you shouldn't click on emply spaces then ADezii?
Feb 11 '10 #237
ADezii
8,834 Expert 8TB
@NeoPa
That would appear to be the Lesson Learned for the day, NeoPa. (LOL).
Feb 11 '10 #238
NeoPa
32,556 Expert Mod 16PB
What about empty ones then?
Feb 11 '10 #239
ADezii

My Training Events Details form can be opened from my Main Events form or the Calendar. I've added a list box on the form that show all the records that occure on the date selected in the [Start Date] field. The data for the list box is drawn from the temp table. I chose the temp table because I like how your temp table splits up a record that contains start and end dates that spands several days. The list box is meant to act like a calendar day view. The only small draw is when the form is opened from my main form instead of the calendar and records are entered. These new records will not show in the listbox because they don't exist in the temp table. Is there away to repopulate the temp table on closing my Details form while the Calendar form is not open? I tried an append query but I didn't like the way it works because I found it I could end up with duplicate records. Especially if the form was open to a specific record to change a detail. The duplicates, of course, went away once I opened the calendar.

The tempory duplicates don't bother me, but I don't want to confuse any other person who may end up using this database.

Thanks
Feb 12 '10 #240
ADezii
8,834 Expert 8TB
Append the records as normal, then Define the Row Source of the List Box as an SQL Statement using the DINSTINCT Statement since this will eliminate Duplicates.
Feb 12 '10 #241
xraive
30
Hi guys,

First of all I would like to say thank you for sharing this great calendar form. but i would like to point out that there seems to be an error when the calendar is populated with the dates. I have it up and running and the dates are set off. For example March 17, 2010 is set to tuesday instead of wednesday. April 1st, 2010 starts on monday instead of thursday. Is this a flaw or am I doing something wrong. I have downloaded multiple versions and they all seem to have the same issue.

Thank you

xraive
Mar 18 '10 #242
ADezii
8,834 Expert 8TB
Kindly Upload the Calendar that you are referring to, and I'll take a close look at it. This problem definitely should not be happening.

P.S. - What Country are you from?
Mar 18 '10 #243
xraive
30
Thanks for looking into this. I have posted a sample DB that will show the problem. But this did also happed with the sample db on post# 246.

By the way, I am from Canada.

Thank you,
Attached Files
File Type: zip calendar.zip (161.3 KB, 162 views)
Mar 18 '10 #244
ADezii
8,834 Expert 8TB
Before I attempt anything, Comment Code Line #21, and Uncomment Code Line #26 in the PopulateCalendar() Sub-Routine, exactly as depicted, then get back to me.
Expand|Select|Wrap|Line Numbers
  1. Private Sub PopulateCalendar()
  2. On Error GoTo Err_PopulateCalendar
  3. Dim strFirstOfMonth As String, bytFirstWeekdayOfMonth As Byte, bytBlockCounter As Byte
  4. Dim bytBlockDayOfMonth As Byte, lngBlockDate As Long, ctlDayBlock As control
  5. Dim bytDaysInMonth As Byte, bytEventDayOfMonth As Byte, lngFirstOfMonth As Long
  6. Dim lngLastOfMonth As Long, lngFirstOfNextMonth As Long, lngLastOfPreviousMonth As Long
  7. Dim lngEventDate As Long, bytBlankBlocksBefore As Byte, bytBlankBlocksAfter As Byte
  8. Dim astrCalendarBlocks(1 To 42) As String, db As DAO.Database, rstEvents As DAO.Recordset
  9. Dim strSelectEvents As String, strEvent As String, strPlatoons As String
  10. Dim lngSystemDate As Long  'CFB added 1-25-08
  11. Dim ctlSystemDateBlock As control, blnSystemDateIsShown As Boolean  'CFB added 1-25-08
  12. Dim strSQL As String    'Added 4/16/2008
  13. Dim blnRetVal, intNumOfRecs As Integer
  14.  
  15. lngSystemDate = Date    'CFB added 1-25-08
  16. intMonth = objCurrentDate.Month
  17. intYear = objCurrentDate.Year
  18. lstEvents.Visible = False
  19. lblEventsOnDate.Visible = False
  20. lblMonth.Caption = MonthAndYear(intMonth, intYear)
  21. 'strFirstOfMonth = Str(intMonth) & "/1/" & Str(intYear)
  22.  
  23. '*************************************************************************
  24.   'ADezii
  25.   'NOTE: Will work in the UK (United Kingdom) and other European Nations
  26.   strFirstOfMonth = "1/" & Str(intMonth) & Str(intYear)
  27. '*************************************************************************
  28.  
  29. bytFirstWeekdayOfMonth = Weekday(strFirstOfMonth)
  30. lngFirstOfMonth = DateSerial(intYear, intMonth, 1)
  31. lngFirstOfNextMonth = DateSerial(intYear, intMonth + 1, 1)
  32. lngLastOfMonth = lngFirstOfNextMonth - 1
  33. lngLastOfPreviousMonth = lngFirstOfMonth - 1
  34. bytDaysInMonth = lngFirstOfNextMonth - lngFirstOfMonth
  35. bytBlankBlocksBefore = bytFirstWeekdayOfMonth - 1
  36. bytBlankBlocksAfter = 42 - (bytBlankBlocksBefore + bytDaysInMonth)
  37. '...Balance of code intentionally omitted
Mar 18 '10 #245
xraive
30
Thank you it works like a charm. Can you explain that line.

Always appreciated ADezii
Mar 18 '10 #246
ADezii
8,834 Expert 8TB
It all has to do with how Dates are Formatted/Displayed in a particular Locale. strFirstOfMonth is a variable that will hold the First Day of the Month as a String.
Expand|Select|Wrap|Line Numbers
  1. 1/m/yyyy
will work in the UK (United Kingdom), certain European Nations, and obviously Canada, while
Expand|Select|Wrap|Line Numbers
  1. m/1/yyyy
will work in the United States.

P.S. - It took a while to figure this out, and it was our own Mary that provided the answer to this dilemma.
Mar 18 '10 #247
ADezii
8,834 Expert 8TB
Here is the latest Release of the Access Calendar with Sample Data. It is, however still going through a Revision Stage. Should you have any questions, please feel free to ask.
Attached Files
File Type: zip New Calendar.zip (43.2 KB, 304 views)
Mar 30 '10 #248
Thank you! I will work with this tonight and see what I can do about modifying it to our needs and let you know!!!

DC
Mar 30 '10 #249
NeoPa
32,556 Expert Mod 16PB
I assume that was for a new version ADezii. Clearly there would be no point in reposting it if it's the same version as the last one yes?
Mar 30 '10 #250

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

Similar topics

2
by: nh_capricorn | last post by:
Hi, I am fairly new to .NET (coming from a Java background) and I am trying to port an application that I originally wrote in Java, to .NET / C#. My problem is that I cannot find a C# analog for...
8
by: Shyguy | last post by:
Is it possible to create a calendar that shows previous input data and also allows for input of new data?
3
by: Matthew | last post by:
I currently have a form in MS Access that has certain combo boxes which specify criteria in order to run a query based on that criteria. I want to add to this, a calendar from which a user will be...
5
by: Ben | last post by:
I have a javascript code in the ASP.NET page. I want to access Calendar control that is inside ASP page and is "run at server". I try to use following code but it doesn't work. <script...
1
by: afr0ninja | last post by:
Hello all, and thank you in advance for your assistance. I'm pretty new to access and I'm trying to teach myself some VBA by using various bits of code I find here and there mixed with my own....
1
by: Robert Waggoner | last post by:
My Access 97 database is on a public network so it can be accessed by a dozen users. On my computer the Active X calendar shows the GridFont as 8 pt. On some user's computers the gridfont size is...
16
rcollins
by: rcollins | last post by:
I have a calendar on my form that inputs the date selected. Right now, the date isn't updated until I click on the date box after selecting the date. Is there a way for me to update as I click on the...
76
by: apartain | last post by:
Has anyone ever created a shared calendar within Access? It would be similar to MS Outlook, but clearly not as in-depth. I would need to use it for employees to enter their availability so managers...
1
by: Dalia Allencher | last post by:
I have to plan the work schedule. For example: The process has several steps. Steps Step 1 Step 2 Step 3 Due dates 2/5/2011 2/10/2011 2/15/2011 I want to create a calendar...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

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.