Questions tagged [appointment]

295 questions
2
votes
0 answers

Check if date is within the range

I am implementing appointment booking functionality using jqxSchedule. I am creating one API using .net MVC where i need to check whether or not given date is within the range of dates with recurrence. How can i check whether given date falls…
Developer
  • 141
  • 2
  • 11
2
votes
1 answer

CRM 2013 : How can I Schedule Concurrent Appointments (using Appointment & RecurringAppointmentMaster entities)?

We have a plugin that uses the BookRequest & RescheduleRequest Methods to schedule Appointment & RecurringAppointmentMaster entities. Recently I was tasked with implementing the ability to schedule multiple appts in a given timeslot. So in…
2
votes
1 answer

600 + rows of Excel data to create Outlook Appointment...but only creates a single appointment

Background: I have a task tracking spread sheet and would like to create a calendar "appointment" everytime a new row is added to the table. There are many instances of different versions of this code floating around out there, so I pieced this…
kroy2008
  • 175
  • 1
  • 11
2
votes
0 answers

c# / exchange: Recurrence with interruption

I want to create a weekly recurring series of appointments for one year in Exchange with c#. Every 7 or 8 weeks holidays will interrupt that series one or two times. I have a List holidays with all my holidays in it. The easiest way seems…
zacktell
  • 21
  • 2
2
votes
1 answer

PHP Appointment Booking Available Time Slots

I'm developing an online booking system for a client where I need to find available appointment times that their customers can choose from to book their next appointment. I'll try to explain the current database setup: Table name: appointments -…
Guy Murray
  • 41
  • 1
  • 6
2
votes
3 answers

How to get a list of available time slots from calendar database

I have a event/calendar MySQL table where each user have multiple appointments/events throughout the day. If one user can't make that appointment/event "because he/she are running behind on other appointment" I need to be able to re-assign this…
Jaylen
  • 39,043
  • 40
  • 128
  • 221
2
votes
1 answer

How to calculate available times in a 15 Minutes Interval from 8:00 am to 8:00 pm?

I'd like to develop an iOS Application, which gives you available times for an appointment in a 15 Minutes Interval from 8:00 am to 8:00 pm with the condition that your appointment will have an 1h 30min duration. The App will download this times and…
Kitzng
  • 105
  • 1
  • 9
2
votes
2 answers

Best practice for PHP/MySQL Appointment/Booking system

I need some people to battle a "best practice" for a PHP/MySQL appointment system for a hairdresser I'm currently working on. Hopefully, together we can clear some things up to avoid having to re-do the system afterwards. I've been looking at SO and…
Joshua - Pendo
  • 4,331
  • 6
  • 37
  • 51
2
votes
1 answer

Outlook VSTO - how to show the "Invite attendees" textbox when I call appointment.Display()?

I have the following code to popup an outlook apptitem. It works great except i can't see the actual attendees textbox on the popup unless i click "Invite Attendees". When i click on that button on the appt item it does show the list of people…
leora
  • 188,729
  • 360
  • 878
  • 1,366
2
votes
0 answers

Find deleted appointment in Outlook from Delphi

I am attempting to integrate our program with outlook and my test code below (sort of works) but have the following issues. In testing I was able to add the appointment. Then manually moved the appointment to another date/time and re-ran the test…
samanne
  • 309
  • 1
  • 3
  • 8
2
votes
2 answers

How to disable the booked time slots from a list of business hour time slots

Friends, I' working Appointment booking Project, Details are as follows: Business hour starts from 9:00 to 7:00 with default duration of 30mins. So, Slots start like (9:00, 9:30, 10:00.... 7:00). Here, to show the available slots, I'm using the…
Haavali
  • 221
  • 1
  • 4
  • 15
2
votes
0 answers

Outlook ICS / iCalendar: No Field ("To:") for further Attendees when Organizer is set?

My goal: (Step 1) Open ICS file in Outlook, so the user can send a generated meeting/appointment to recipients of his or her choice. Therefore I use the PUBLISH method. It is pretty much what is explained here:…
1
vote
1 answer

Send a list with appointments through WCF

I would like to send a list of Appointments through WCF. My Interface looks like this: [ServiceContract] public interface IServices { [OperationContract] string addAppointments(List appointmentList); } If I…
andreaspfr
  • 2,298
  • 5
  • 42
  • 51
1
vote
0 answers

appointment booking -jquery

I am building a mobile website using jquery/ html5 and need a appointment booking functionality so customers can make an appointment booking. The customer selects the service they want then selects the practioner and then it checks the availability…
user1236815
  • 29
  • 1
  • 3
1
vote
1 answer

c# Exchange Webservices delete appointment in public folder

I trying to delete an appointment in an public calendar. ExchangeService Exchange = new ExchangeService(); Uri tempuri = new Uri(@"\\192.168.55.138"); Exchange.Url = tempuri; Exchange.AutodiscoverUrl("tp@mailserver.de"); string appointmentID =…
1 2
3
19 20