Questions tagged [appointment]

295 questions
0
votes
1 answer

Specify the name for a .ics file created

I am using the implementation provided in the link below to create a ics file as an outlook appointment reminder. It seems to be working fine, but I am not able to specify the name of the file that is attached. vCalendar Implementation Any help will…
OBL
  • 1,347
  • 10
  • 24
  • 45
0
votes
1 answer

dhtmlx scheduler with conflicting appointment

I'm using dthtml scheduler calender,(with mvc 3) In this demo tutorial , http://carrental-app.scheduler-net.com/ It is not allowing to book the same car for same timing period for different customers. (for example: If I book Dodge Caliber from 1:00…
gs11111
  • 649
  • 2
  • 17
  • 49
0
votes
1 answer

Creating Lotus Notes Appointment with Java

I was trying to generate a Lotus Notes Appointment using the Domino Java API DOMINGO. The appointment is created successfully in my local mail database and I was able to open it. But unfortunally there are no required attendees listet in the…
user2240265
  • 43
  • 1
  • 4
0
votes
1 answer

Minimize Outlook Appointment Item

I'm creating a new Outlook ribbon with the ability to create new meeting/appointment invites. The customer is requesting the ability to minimize the new appointment window, but the button is currently disabled and the focus cannot be moved from the…
junkyard
  • 1
  • 2
0
votes
1 answer

prevent outlook from deleting recurring event

I have a plugin which syncs read-only shared calendars in Outlook with our collaboration system. I need to make sure the user cannot delete any appointments in these read-only calendars. It's possible to attach an event handler to any appointment in…
Alex
  • 2,469
  • 3
  • 28
  • 61
0
votes
1 answer

Why can't I save my AppointmentsSearchEventArgs to variable?

I have a rather simple problem (I bealive). I have this method: void appointments_SearchCompleted(object sender, AppointmentsSearchEventArgs e) { if (e.Results.Count() == 0) { results = "no events for the selected…
a_dzik
  • 927
  • 2
  • 11
  • 24
0
votes
2 answers

Retrieve billing information for Appointment using EWS Java API

I have information in billing information and I want to retrieve using EWS Java API . Here is what I had so far public List findAppointments() throws Exception { SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); …
0
votes
2 answers

Macro fails to create appointments based on worksheet data

I have an Excel macro that I run, which takes activity names, dates and times from the spreadsheet and places them into the Outlook calendar. This works fine when Outlook is running, but when it is not, the macro does not make the appointments. I…
codingNightmares
  • 313
  • 2
  • 9
  • 19
0
votes
2 answers

how to add a new calendar events in windows phone application

I guess appointment class for Windows Phone is read only class. Can any one suggest me on how to create a calender event in Windows Phone 7 application. Is there any API available for the same. Thanks, Harlborn
Harlborn
  • 63
  • 6
-1
votes
2 answers

Create IPM.OLE.CLASS Exception item in Outlook

I need to create an exception IPM.OLE.CLASS item in Outlook So need to delete or change one appointment instance of a recurring appointment Maybe I could not do it correctly, all have IPM.Note class :( How to make it? Created a recurring appointment…
-1
votes
1 answer

Using C# - Can I have help changing this code so my appointment update shows 15min Appointment reminder alerts before each appointment for the day

// Check for upcoming appointments ``` foreach (DataRow row in dtblAppointments.Rows) { DateTime eventDT = DateTime.Parse(row["Start"].ToString()); if(eventDT > DateTime.Now && eventDT.AddMinutes(15)…
-1
votes
1 answer

Use calendar appointment in outlook to trigger VBA macro

How do you setup a appointment in Outlook to make it trigger a VBA macro by the appointment reminder? In my case I want the outlook to be scheduled to open a excel file at a certain time. There's are some examples but none that fits my requirements…
Wizhi
  • 6,424
  • 4
  • 25
  • 47
-1
votes
1 answer

Find gap between multiple dates in C#

I'm currently programming an appointment finder that automatically syncs with MS Exchange Server. The program should lookup multiple users' calendar when they are available. I have coded some demo data with multiple users and their appointments. The…
Steven2105
  • 540
  • 5
  • 20
-1
votes
1 answer

How to obtain two most recent encounter dates?

I have used this expression in Cognos [Encounter Date]=maximum([Encounter Date] for [Patient Account Number]) to obtain the most recent visit. Does anyone know a command for two most recent visits?
-1
votes
1 answer

How to populate rooms in outlook appointments dynamically via Outlook plugins?

I'm developing an Outlook plugin (VS2013/CSharp/Outlook 2010 AddIn Project) and I need to set programatically the room list that appears when you try to create an appointment. As far as I know, those rooms are loaded from the active directory, but I…
avenet
  • 2,894
  • 1
  • 19
  • 26
1 2 3
19
20