473,804 Members | 3,481 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

newly created meeting request from javascript has no recipient data

16 New Member
Hi all,

I have looked through MSDN on this one and can't seem to find the answer anywhere.

I have created a JavaScript that will launch a meeting request for an address selected from a list. The problem that is occurring is that when the meeting request opens, and I look at the availability grid, any recipient I put in from the code shows "no information" for availability.

The weird thing is that if I delete something like a middle initial and hit enter, the user's data appears because it forced outlook to poll Exchange for the data.

Does anyone know of a way to fix this, perhaps I can force outlook to poll for user data when the window opens?


Thanks

Jeremy
Nov 30 '07
13 5036
acoder
16,027 Recognized Expert Moderator MVP
Hi Guys,

I want a javascript function which shows Public Shared Calendar(opens a window) when I click a link from the webpage. Please help me.

Ex. /Public Folders/All Public Folders/Photography

Thanks in Advance.
Is this from the server-side or the client-side? If from the client-side, that's not really possible with JavaScript, though you may use ActiveX for IE. If from the server-side, use a server-side language.
Feb 15 '08 #11
berg612
2 New Member
Hi,

I am using your JavaScript code for initiating a new meeting request in Outlook and passing the To, Subject, Start Date, and End Date fields. I was just wondering if you knew how or if it's possible to also automatically populate the Location and Resource (versus the To field) fields?

Thanks,
Eric

My code:
Expand|Select|Wrap|Line Numbers
  1. //Open Meeting Request
  2. function ResMtg(cal,start,end){
  3. //alert(cal+' - '+start+' - '+end);
  4. //Inbox = 6
  5. //Calendar = 9
  6. var mailFolder = ns.getDefaultFolder(9);
  7. var mailItem = mailFolder.Items.Add("IPM.Appointment.ConfRmReq"); 
  8. mailItem.MeetingStatus = 1;
  9. mailItem.Subject = "**Meeting Subject**"; 
  10. mailItem.Start = start;
  11. mailItem.End = end;
  12. var recipient = mailItem.Recipients.Add(cal);//attendees list
  13. recipient.Resolve;
  14. if(recipient.Resolved){mailItem.Display();}
  15. else{alert('Unable to resolve this calendar: '+cal);}
  16. }
  17.  
Mar 18 '08 #12
acoder
16,027 Recognized Expert Moderator MVP
I wouldn't be sure, you'd have to check the documentation, but I'd guess mailItem.Locati on and mailItem.Resour ce.
Mar 19 '08 #13
berg612
2 New Member
I have tested and verified that the following code works for the Location field.

Expand|Select|Wrap|Line Numbers
  1. mailItem.Location = 'my conference room';
  2.  
However, I am still testing the Resource functionality. I will try to search through Microsoft's support web site.

Thanks,
Eric
Mar 25 '08 #14

Sign in to post your reply or Sign up for a free account.

Similar topics

0
1738
by: Betty Harvey | last post by:
The next meeting of the XML Users Group will be held on Wednesday, November 19, 2003 at the American Geophysical Union (AGU) at 2000 Florida Avenue, N.W., Washington, DC 20009-1277. The meeting starts at 7:00 p.m. and usually last approximately 2 hours. If attending the meeting by Metro, get off the Dupont Circle stop and walk north to Florida Avenue...turn right. There is no cost associated with attending but if you are planning on...
0
506
by: Betty Harvey | last post by:
Happy 2004! I hope everyone had a great holiday and will have a good new year. The next meeting of the XML Users Group will be held on Wednesday, January 21, 2004 at the American Geophysical Union (AGU) at 2000 Florida Avenue, N.W., Washington, DC 20009-1277. The meeting starts at 7:00 p.m. and usually last approximately 2 hours. If attending the meeting by Metro, get off the Dupont Circle stop and walk north to Florida Avenue...turn...
0
1095
by: info | last post by:
The next meeting of the Philadelphia XML User Group will be on Wednesday, March 9th at 6:00 p.m. The meeting is hosted by Elsevier, in the Curtis Center on Independence Mall in Philadelphia. A map and directions can be found at our website: http://www.xmlphilly.org/calendar.htm. This month's speaker will be Joe Gangemi, addressing "The XML/SGML Conundrum".
7
7004
by: Lau Lei Cheong | last post by:
Hello, I'm using javascript's insertAdjacentHtml() to insert images to the webform at runtime. This runs fine(image successfully displayed at the browser) but when I tried to access the control's src using FindControl() function in the code-behind, it seems that the control doesn't even exist. I know that I can add controls on the server-side, but then a postback will be needed which is the thing I want to avoid. Does anyone have idea...
6
6654
by: Amit Maheshwari | last post by:
I have my aspx page on which i am creating <input type=text> on client side using javascript. Now when i submit my page i need to access these controls to get the value entered by the user. the code is like <script language="javascript"> <!-- //to count no of file upload controls var intRowCount = 2; function AddApp()
6
11296
by: Rushwire | last post by:
Does anybody know how to send a meeting request using an ics/vcs (VCalendar) attachment from an asp.net page. I don't want my users to have to double click on the attachment but rather that it is simply recognised automatically as a meeting request. The article below shows an example of very close to what I am trying to do. The difference being that I want the email to be sent as a meeting request not as an attached ics file.
1
6165
by: GraemeC | last post by:
I have a database that is used to book venues and assign people to those venues. The person doing the booking can send an appointment request from Access to an individuals Outlook calendar. This part of the system works fine. I can also send a cancelled appointment request from Access to the same individual for the same appointment but for some reason Outlook is not recognising the cancel request as being for the original appointment so when...
10
6097
by: mofmans2ndcoming | last post by:
I have a script for my companies internal network that I am developing to ease the transition away from out old conference room scheduling system to outlook. (this is a stop gap until we can get developer time to do a proper server side solution) The users are use to a web interface and the conference rooms AD names are not human friendly so I decided to use some ActiveX to create a sort of meeting request link on a web page so when you click...
2
2546
ddtpmyra
by: ddtpmyra | last post by:
Hi, Can you send meeting request invitation thru PHP code and automatic update recipient Microsoft Calendar? Anybody who did similar development? thanks, DM
0
9589
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10593
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10329
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7626
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6858
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5663
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4304
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3830
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3000
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.