Questions tagged [appointment]

295 questions
1
vote
1 answer

Add appointment to a non-default calendar

I know there's additional stuff in the Declarations, it's for other macros I've written. I've several calendars. I've a spreadsheet where I paste information about a site, and I've buttons that generate appointments and emails. I've code to set an…
Nordekai
  • 11
  • 4
1
vote
2 answers

How to select only available time and date for doctor appointment booking system in PHP

I have only one table named appointment_master in MySQL in which I store the booking date and time entered by the patient. Appointment time is fixed means patient can book an appointment every 10 minutes means if one patient has booked appointment…
1
vote
1 answer

Created an appointment in CRM Dynamics 365 using C#, But that is Not Coming into Outlook Calendar

I am following this link Book An Appointment In CRM Dynamics Using C# and am able to create the appointment in CRM Dynamics Calendar, which in turn returns the GUID and it's visible in Dynamics Calendar too. Also, I was able to change the…
1
vote
1 answer

Unable to remove Dynamics 365 Appointment's regardingobjectid value using Web API

I'm trying to remove value of field regardingobjectid from a appointment entity using Microsoft Dynamics 365 Web API. Not able to but it shows the below error: { "error": { "code": "", "message": "The property 'regardingobjectid' does not…
1
vote
1 answer

Create Outlook appointment on specific account with command line

I have 2 accounts in my outlook configured, one is for example foo.bar@test.com. When I try to create an appointment via commandline OUTLOOK.EXE /c ipm.appointment, the appointment dialog appears, but its not assigend one of my accounts. I…
jerik
  • 5,714
  • 8
  • 41
  • 80
1
vote
1 answer

onActivityResult showing error when back from the Calendar

I am using the following code to open the calendar app: class Appointments : AppCompatActivity() { lateinit var tv:TextView override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) …
Damandroid
  • 756
  • 9
  • 31
1
vote
1 answer

UWP C# Windows IoT Create Appointment

I have an earlier post UWP C# Windows 10 IoT Alarm Clock which I am currently switching to use Appointment. I have a dialog to add appointment. When I run on rasp pi it doesn't seem to save the appointment & trigger it. Please advise. I also hope…
mylim
  • 313
  • 4
  • 16
1
vote
1 answer

How to Compare two party lists in CRM 2016

I have two Party Lists from required person in Appointment. One from PreEntity and one from PostEntity and i want to compare them in order to find the changes in the person but doesn't work altough the two lists have many common person. var…
1
vote
2 answers

SQL Statement/ Codeigniter appointment booking

I am working on a booking software with a daily calendar. I have four tables as follows: Services: ID | EmployeeID| ServiceID| RoomID| StartDate | EndDate 1 | 1 | 1 | 2 | 2017-06-18 01:00 |2017-06-18 02:00 2 | 2 |…
1
vote
1 answer

Send an AppointmentIthem with python win32com library

I'm developing a Python scripts to create a simple AppointmentItem and send it to some recipients using win32com library. I found all the documentation and some VBA examples in this link: https://msdn.microsoft.com‎ and everything seems to be clear…
CLeo-Dev
  • 196
  • 12
1
vote
1 answer

XtraScheduler create appointment programmatically

I am (trying) to use the DevExpress XtraScheduler to - (don't ask why) to create an appointment without actually using the scheduler control in the form i have attempted to do that like this... conn = new SqlConnection("connectionstring"); …
nat
  • 2,185
  • 5
  • 32
  • 64
1
vote
1 answer

How to add custom 'Add Appointment' page for telerik scheduler?

I am trying to create a custom add page for appointments for telerik scheduler. I want my page to be displayed rather than the add appointment template built in the scheduler. I looked at the Advanced Insert Template but I don't think it allows…
Prateek
  • 2,375
  • 19
  • 23
1
vote
1 answer

How to cancel Outlook meeting using vcalendar?

I found this link Cancel outlook meeting requests via MailMessage in C# and I tried as it suggests, it sends the cancel outlook meeting request but when I do 'Remove from Calendar' on outlook, it doesn't remove the meeting. Please share any work…
ZeeProgrammer
  • 195
  • 1
  • 13
1
vote
1 answer

How to delete an appointment on someone else outlook calendar and sending a cancellation notice in c#

I'm building a scheduler interview management app, and when a new appointment is inserted in the scheduler, I set the new appointment both to the person who is sending it and to the person who is receiving it, the first part is that I'm sending the…
Mr.Toxy
  • 357
  • 4
  • 19
1
vote
1 answer

Display outlook appointment calendar

I have a C# app which creates an appointment (oAppoint) and moves it to a different calendar (an exchange one, not mine). When I use the func() display(), it displays the oAppoint object that is in my calendar. How do I display the appointment on…