Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
 
  HOME    TRACKER    Visual Basic




Open Other Outlook Profile And Export Calendar


Hi all

I have developed a new system which uses information from a number of different people's outlook calendars. At the moment I am having to go into each profile and manually export their calendars into an individual excel spreadsheet for each of them.

This works fine apart from the fact that there are now 75 people taking part in this system which means a lot of manual opening and closing of different people's mailboxes. I have set up a profile for each person on my computer, so what I need if possible is the following:

A macro that will go into a new person's profile and export their calendar to excel, then close the profile.

Does anyone have any starting points for me on this one. I believe I can work through the calendar export but I am struggling with the code for opening different profiles and closing them again.

Any help would be much appreciated.

Brokovich




View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread
Export Outlook Calendar To CSV
Hi

I'm new to these forums as I'm not often involved in VB. However, I find myself in a situation where I think it can help and I'm confident in my programming skills to learn a bit of VB to attempt this task.

I run Outlook 2000. I also have a self-written website which includes a diary of my appointments. My customers can login to the website and view their appointments. Currently I have to manually update the web calendar by going through Outlook. This can take quite some time so I intend to use Outlook's export capability to create a CSV which I can then upload and write a script to synchronise the 2.

What I'd like to know is, is it possible to create a VB script which will perform the export so that I don't need to go through the questions about file type, file name, import/export action etc. every time ?

Ideally, I'd like to click a button in Outlook (or on my desktop!) which creates the new file with a predefined name.

Looking forward to your responses.


Rich

Export Outlook Calendar Into Excel
Hi all

I am looking for some assistance with the export feature on outlook. I will soon have to export 65 calendars into excel files to link up with some excel code I have written.

This process it quite time consuming when done manually for 65 people, so I was wondering if anyone knew of some VB code I can write into outlook to perform this function for me.

I can then amend this for the other 64 calendars and run a macro to automatically export all 65.

Does anyone have any clues as to where I should start with this one? I am pretty new to VB and need some help!

Thanks all.

Brokovich.

VBA Export Outlook Calendar Recurring Meetings
Hi All,

I have been asked to come up with a way to print out multiple calendars in our public folders. All calendars need to be on the one printout, side by side... If someone has come across some software to do this I am happy to hear.

Anyway I have written some VBA to export out the info from the public calendar but when I have a recurring appointment or meeting the info doesnt exist. My thought was to export the information to Excel and then manipulate the info from there.

I am not that familiar with VBA code in Outlook and I have seen a getrecurrancepattern but am not sure how to access this information or what information is within it.

Please find code already written below (still in construction)... if that helps.

Thanks in advance

Sub cmdExport_Click()

Dim objWord
Dim objExcelApp
Dim objExcelBook
Dim objExcelSheets
Dim objExcelSheet
Dim objExcelRange
Dim strRange
Dim lngASC
Dim strASCII
Dim i
Dim lngCount
Dim nms
Dim objFolder
Dim objItems
Dim objItem

On Error GoTo ErrorHandler

'Pick up Excel default folder from Registry, using Word System object
Set objWord = CreateObject("Word.Application")
strTemplateDir = objWord.System.PrivateProfileString("", "HKEY_CURRENT_USERSoftwareMicrosoftOffice8.0ExcelMicrosoft Excel", "DefaultPath") & ""
strSheet = "Calendar.xls"
strSheet = strTemplateDir & strSheet
'MsgBox "Opening Excel workbook: " & strSheet

'Adjust the following number to be 1 less than the row number of the
'first body row
i = 3

'Initialize column letters with 64, so the first letter used will be A
lngASCII = 64

Set objExcelApp = CreateObject("Excel.Application")
strSheet = "h:calander.xls"

objExcelApp.Workbooks.Open (strSheet)
Set objExcelBook = objExcelApp.ActiveWorkbook
Set objExcelSheets = objExcelBook.Worksheets

objExcelApp.Application.Visible = True


'MsgBox Now()


TheDate = InputBox(" Please enter the date of Calander appointments you wish to view - Format should be dd/mm/yyyy")
'Msg = "Days from today: " & DateDiff("d", Now, TheDate)
'MsgBox Msg


'Set reference to default Calendar folder



Set nms = Application.GetNamespace("MAPI")
Set fld = nms.GetDefaultFolder(olPublicFoldersAllPublicFolders) '(9)
Set flds = fld.Folders("Wangaratta").Folders("Meeting Rooms")

x = 1

Do While x < 4

Set diary = Nothing

objExcelSheets.Add
test = objExcelSheets.Count
sheetname = ""
sheetname = "Sheet" & test
objExcelSheets(sheetname).Select

Select Case x

Case 1
MySheet = "Board Room - Video Conf"
objExcelSheets(sheetname).Name = MySheet
Set objExcelSheet = objExcelBook.Sheets(MySheet)
objExcelSheet.Activate
Set diary = flds.Folders("Board Room - Video Conf")

Case 2
Exit Do
objExcelSheets(sheetname).Name = "Computer Training Room - 8"
Set diary = flds.Folders("Computer Training Room - 8")

Case 3
objExcelSheets(sheetname).Name = "Board Room - Video Conf"
Set diary = flds.Folders("ED Shed Class Room")

Case Else

Exit Do

End Select


Set itms = diary.Items
lngCount = itms.Count

If lngCount = 0 Then
x = x + 1
GoTo My_End

'MsgBox "No Calendar items to export"
Exit Sub
Else
'MsgBox lngCount & " Calendar items to export"
End If

'Iterate through items in Calendar folder, and export a few fields
'from each item to a row in the Calendar worksheet

For Each itm In itms
i = i + 1

StartD = ""

StartD = itm.Start

If StartD <> "" Then
daysdif = DateDiff("d", StartD, TheDate)
Else
daysdif = ""
End If


'If daysdif = 0 Then

lngASCII = lngASCII + 1
strASCII = Chr(lngASCII)
strRange = strASCII & CStr(i)
Set objRange = objExcelSheet.Range(strRange)
If itm.Start <> "" Then objRange.Value = itm.Start

lngASCII = lngASCII + 1
strASCII = Chr(lngASCII)
strRange = strASCII & CStr(i)
Set objRange = objExcelSheet.Range(strRange)
If itm.End <> "" Then objRange.Value = itm.End

lngASCII = lngASCII + 1
strASCII = Chr(lngASCII)
strRange = strASCII & CStr(i)
Set objRange = objExcelSheet.Range(strRange)
If itm.CreationTime <> "" Then objRange.Value = itm.CreationTime

lngASCII = lngASCII + 1
strASCII = Chr(lngASCII)
strRange = strASCII & CStr(i)
Set objRange = objExcelSheet.Range(strRange)
If itm.Subject <> "" Then objRange.Value = itm.Subject

lngASCII = lngASCII + 1
strASCII = Chr(lngASCII)
strRange = strASCII & CStr(i)
Set objRange = objExcelSheet.Range(strRange)
If itm.Location <> "" Then objRange.Value = itm.Location

lngASCII = lngASCII + 1
strASCII = Chr(lngASCII)
strRange = strASCII & CStr(i)
Set objRange = objExcelSheet.Range(strRange)
If itm.Categories <> "" Then objRange.Value = itm.Categories

lngASCII = lngASCII + 1
strASCII = Chr(lngASCII)
strRange = strASCII & CStr(i)
Set objRange = objExcelSheet.Range(strRange)
If itm.IsRecurring <> "" Then objRange.Value = itm.IsRecurring

lngASCII = 64

'End If


Next

x = x + 1

My_End:

Loop

Exit Sub ' Exit to avoid handler.

ErrorHandler: ' Error-handling routine.

Select Case Err.Number ' Evaluate error number.
Case 438 ' "File already open" error.
' Close #1 ' Close open file.
Case Else
mess = Err.Number & vbCrLf & Err.Description

MsgBox mess

End Select
Resume Next ' Resume execution at same line
' that caused the error.


End Sub

Howto Export The Outlook Calendar Of Another User
Howto export the outlook calendar of another user ...?

Excel VBA - Export Outlook Calendar With Date Range
Dear all

I had used the excel VBA to grap all the data by from MS outlook calendar to a excel file. Now i want to limited the date range (Eg. data between 01 - 10 May 2006), is there anywhere i can supply the date range parameter to my existing VBA code?

Thanks

Jack C

How Do I Open The Outlook Calendar On A Specific Date (day)?
Hello readers,

I'm looking for a way to open the calendar in Outlook on a specific day.
This is the code I use so far.

Function OLShowOtherCalendar(UserName As String) As Boolean
Dim ol As Outlook.Application
Dim olns As Outlook.NameSpace
Dim olFld As MAPIFolder
Dim olRecipient As Outlook.Recipient
' Automation code example.

    Set ol = New Outlook.Application
    Set olns = ol.GetNamespace("MAPI")
    Set olRecipient = olns.CreateRecipient(UserName)
    olRecipient.Resolve
    If olRecipient.Resolved Then
        Set olFld = olns.GetSharedDefaultFolder(olRecipient, olFolderCalendar)
        olFld.Display
        
        OLShowOtherCalendar = True
    Else
        LShowOtherCalendar = False
    End If
End Function


Does anyone have some suggestions?
THX in advance.

Problems Linking Outlook Calendar To Microsoft Calendar Control In Vb.
Hi,
For a while now I've been trying to find a way to link my outlook calendar to the microsoft calendar control in visual basic. When I click on the calendar in my program, I want it to show the appointment subject in a text box and the appointment body in a Richtext box. I'd appreciate any help?
Thanks.

MS Outlook - Which Profile Is Active?
Hi,

is it possible to determine which Outlook profile is currently active?
I know the reg key for default profile but i want to react on special profiles if selected...

thx

Stefan

Logon New Profile In Outlook
Send Email with changing Outlook Profiles:

I use MAPI.Session object and MAPI.Message object in order to send email with the option to change the from field by changing outlook profile.
In order to change Outlook Profile, I log with new profile. This operation is been done by MAPI.Session.logon function. This function receive ProfileName, ProfilePassword and ShowDialog parameters.
If ShowDialog is true, the user must enter profile name and profile password regardless ProfileName, ProfilePassword define in the logon function.
If ShowDialog is false, the logon been done by ProfileName, ProfilePassword.
In win32, there is a defect. The profilePassword parameter is ignored on all Win32 platforms.

I want to know if there is away to log to new profile without using ShowDialog=True in objSession.logon function. (I develop automatic application, without user interference)

example: objSession.Logon ProfileName:=name, ProfilePassword:=pass, ShowDialog:=False, NewSession:=True, nomail:=True

Note: I can't create smtp protocol, our company policy is : use written things (outlook), don't invent existing functionalty.

Outlook Profile Password
Greetings!

I have a problem with Outlook profile password. I have a PC with Outlook 2000 install on it and configure with different profile (already configure). I also use that PC to run scheduled process in the morning and want it to send me an email confirming the process.

I have the code that sent the email to work fine with one email account but because I use multiple profile, it ask me for the password.

This is my code:


Private Sub SendMail()
Dim objOutlook As Outlook.Application
Dim objOutlookName As Outlook.NameSpace
Dim objOutlookMsg As Outlook.MailItem
Dim objOutlookRecip As Outlook.Recipient
Dim CallDescription As String

Set objOutlook = CreateObject("Outlook.Application")
Set objOutlookName = objOutlook.GetNamespace("MAPI")
objOutlookName.Logoff
objOutlookName.Logon "user1", "user1", False, True

Set objOutlookMsg = objOutlook.CreateItem(olMailItem)


With objOutlookMsg
Set objOutlookRecip = .Recipients.Add("user2@company.com")
objOutlookRecip.Type = olTo

.Subject = "Updating completed successfully!"
.Body = "Great job. "
objOutlookRecip.Resolve
.Display
.Send
End With
objOutlookName.Logoff
Set objOutlook = Nothing
End Sub

With the ShowDisplay set to false I get this error message:

"Run-time error '-2044706811 (86204005)':
Cannot create e-mail message because a location to send and receive messages could not be found. To add a location, click the Tools menu, click Services, and then click the Delivery tab."

but if I set the ShowDisplay and enter the password manually, it works fine. I have also tried MAPI.

Does anyone have any ideal on how to fix this.

Your help is greatly appreciated.

Thanks,

Husky.

Retrieve Outlook Profile Name
I need to be able to get the name of the current profile name in
use by Outlook. For example if I have one profile called
"ProfileWork" and another called "ProfilePersonal" and I log into
Outlook using the "ProfilePersonal" profile, in one of my programs
I need to read a file which is created by the profile and named
from the profile name.

So if I dont know which profile (in case there are more than one
profiles for the user) is currently being used, I won't know which
file to open and my program data will be irrelevalent to the user's
profile.

I know its a long shot that someone may know, but it will really
help me.

Thanks in advance for any help or direction.

Setting Up Outlook Profile
Hello,
We are in the process of upgraded 10000 users from NT4 to W2k. Most of the user setup has been scripted for the techs. However, they still must configure Outlook manually for each user. Although it only takes a minute, x10000 users it is an added pain. It seems the profile info is stored in a .pip file which can't be accessed directly. I'm wondering if anyone knows a way to use maybe the MS dlls to modify the pip file. Thanks!
-C

Creating Outlook 97/98 Profile Thru VB?
How can I create a new Outlook 97/98 profile via VB. These computers have Outlook installed, may or may not have a profile already. I need to create a new profile. I will have the username, full name etc... I need it to be generic in the creation process. Thanks for any help

How To Get All The Profile Name From Microsoft Outlook?
Dear Members

In our project i have to get & show all the microsoft outlook profile names.
How to get all the profile name from Microsoft Outlook?

Thanks in advance
Rajesh

Outlook User Profile
Does anyone know What API I could use so that I could create an Outlook User profile
Programmaticly.

Any suggestions would be greatly appreciated.
tcompe

Adding A .pst File To An Outlook Profile
Does anyone know how to use VB or VBScript to add a .pst file to an Outlook profile? We are migrating thousands of users to a different Exchange system and I have most of what we need figured out but I haven't found a good way to tell Outlook where the .pst file is located. Has anyone ever done this sucessfully? I was hoping there would be a nice, neat registry entry but there doesn't seem to be.

Thanks,

Ken Franklin

Read/configure Outlook Profile
I think this question's been asked many a time before, but here goes...

We have Exchange Server 2000 and multiple Win 2K Pro PC's that access it. When I log into my computer I set up my Outlook's Microsoft Exchange Server profile through Control Panel/Mail, and when I start Outlook it goes right in. When someone else logs into my computer, they get the Setup wizard and they have to choose "Microsoft Exchange Server" and enter the server name.

Is there a way to write a program in VB that could execute with the NT login script, that would set up the user's profile? Thanks!

Selecting An Outlook User Profile
Hello World!

How can I programmaticaly select, a specific user profile when opening Outlook with automation, if the user has more than one?


Alternatice Outlook Profile Email From Excel
Hi Friends

I am using Microsoft Outlook 2000. I have SMTP Microsoft Exchange Server.

In my pc there are two profile has been created. One is belongs to me that is User1 and password test1, other one is common news letter that is User2 and password is test2. I want to send a mail at a particular time using user2 profile.
When I am sending mail in test time its asking a window to(a) start up profile and (b) asking to connect, offline or cancel. Then I say connect.. (c) it is asking password. so there are three steps are going.

Is there anyway to control the default setup through macro. Kindly help me in detail that I could use your knowledge..

thanks in advance..

MAPI Send Mail .. Outlook Profile
Is there a way to make outlook use the default profile for outlook? RIght now i have it sending email using outlook but it prompts for a profile?

HELP


please email shaffer224@yahoo.com


thanks

How To Read Exchange Or Microsoft Outlook 97 Profile
Hi,

How could i read Microsoft Outlook Profile Names in a vb application .

Thanx
natraj

Retrieving A Users Name From His Exchange Or Outlook Profile???????????
Is there a mapi call or api call I can use to retrieve the users name.

Selecting Outlook Profile From Access Database
Hello there,

In my project, I need to generate reports from an access database and send
the emails by attaching the generated report.
To do this, I'm using docmd.sendobject method.

But, the outlook is prompting me to select the profile for each and every
email. I would like to select the profile for the first email and
subsequent emails should use the same profile. Can someone help me in this
regard?

Regards,
Krishnamohan

Creating An Outlook 97 User Profile Programmaticly
Can someone tell me how I could go about creating a Outlook User profile on a machine that has had Outlook just installed.

My objective is to place code in a vb logon script which would detected if a users has had outlook installed and indicate whether or not the Outlook user profile has been setup. I understand how to check for the existence of Outlook what I am looking for is what MAPI's are being called so that I can create the users profile programmaticly???


Any suggestions would be greatly appreciated

tcompe

Outlook Promts For Profile Over And Over And Won't Send Mail CODE &gt;&gt;&gt;&gt;
Outlook prompts me for the profile to use to send this simple email like it's looping or something.... can someone take a gander at this code and help me out please?

THANKS,

JUSTIN

Private Sub SendMail(strTo As String, strSub As String, strMsg As String)
       
    Dim olApp As Outlook.Application
    Dim olNS As NameSpace
    Dim olMessage As MailItem
     
    Set olApp = CreateObject("Outlook.Application")
    Set olNS = olApp.GetNamespace("MAPI")
      
    Set olMessage = olApp.CreateItem(olMailItem)
    olMessage.To = strTo
    olMessage.Subject = strSub
    olMessage.Body = strMsg
    olMessage.Send
      
    olApp.Quit
      
    Set olApp = Nothing
    Set olNS = Nothing
    Set olMessage = Nothing
     
    Dim strSendTo As String
    Dim strSubject As String
    Dim strMessage As String

strSendTo = "xtremewireless@cox.net" '<=CHANGE TO NEEDED ADDRESS
strSubject = "This is the subject line" '<=CHANGE AS NEEDED

'Construct the message you want to send, append the text in the text box to the end of a string, add a new line...
strMessage = "Reference Number: " & Text1.Text & vbNewLine
'add some more text to the message
strMessage = strMessage & "This is the rest of the message..." & vbNewLine

Call SendMail(strSendTo, strSubject, strMessage)
      
End Sub

Private Sub Command1_Click()
Call SendMail("xtremewireless@cox.net", "Test mail", "Test mail from VB using SendMail procedure")
End Sub

Outlook Automation, Profile/pst Problem I Think - TOTALLY Desperate
I am new to Visual Basic programming and in writing an application I have included an Outlook automation subroutine that updates the contacts folder with data from a VB form. How can I identify the user profile to which I want to save the contact, instead of always saving to the profile of the user currently logged on?

Any help with this would be greatly appreciated
Thanks

HIGH TECH HOMER.

Sending Mail Thro' Exchange Server ( Without Outlook Profile)
Hi,

I have written a client-server application. Now i am planning to include email functionality in my
application. I was asked to add the functionality in the server side and the client should invoke a
function in the server to send the mail.

I thought i can do it with MAPI or CDO lib. But it seems both requires exchange server profile configured
in the server machine. All the sample codes written using MAPI/CDO uses a local profile to connect to
exchange server ( which is running in another machine ). SMTP is not secured. So, I cant use CDONTS
or SMTP or WINSOCK to send mails.

Is there a way to directly connect to the exchange server to send mail ( I was given a generic userid/password,
exchange server host name )? If you know a C++ or VB code which does this, please let me know.

Thanks,
Poochi..

Outlook VBA: Creating Custom Views In Outlook Calendar
Hello All:

I am currently running Office XP, and have become tired of using the filter command to change which category of appointments show on my calendar at a given time.

Thus I am wondering if anyone has ever written a general VBA marco that will allow a user to switch between views.

I have programmed in VBA for Excel before, but am a virgin to the Outlook world, so any assistance would be of great help.

Thanks.

Outlook Meeting Request To Public Outlook Calendar
Recently I obtained some code (thx JordanChris) which sends a Microsoft Outlook Meeting Request (Appointment Item).

Is there any way to post post an appointment to an Outlook 2000 public Calendar? It would have to be forced to accept appointment.

VB Or VBA In Outlook Calendar
Don't know if anyone outhere can help me here.

What I want to do is to create a button that automatically copies the first 20 charachters of text from the large txt box in a calendar event and paste it into the "subject" field.

VB To Outlook Calendar
I have popup menus for the user to enter time and date and such for a calendar reminder...

How do i open up Outlook, Enter the Task on the Calendar, than just minimize the program?

Thanks

Anyone know a good book for Office Integration to VB?

Outlook Calendar
Hi,
I want to set an appointment for a contact i have from my visual basic application. The user would choose the contact, date and time from my VB application and at the click of a button the info goes into outlook calendar, i can do this.Also if i select the same date and time for another contact, it just keeps adding appointment to the already taken up date and time. How do i prevent multiple appointments at the same time and date (because i would not be viewing the calendar as such but rather set up appointments from my VB application). So basically how do i check before setting an appointment that the time and date is not already taken up (unavailable).

thanks
Surya

Outlook Calendar
Hey, is there anyway to read an Outlook Calendar from another user in Exchange? I have no problem reading from my own Calendar from my machine, but I'm trying to read other users' Calendars as well.

Ocx For MS Outlook Calendar
Hello,

I'm looking for a visual basic ocx that delivers a calendar with the look and feel of the microsoft outlook calendar.
(Day-week-month-year view & visualisation of the events within the calendar itself)

Can somebody please help me out?
Thanks

Dries

VB 6.0, Outlook, And Calendar....
Code:
Dim myOlApp As Object

On Error Resume Next
Set myOlApp = GetObject(, "Outlook.Application")

If Err.Number <> 0 Then

Set myOlApp = CreateObject("Outlook.Application")

End If

Set myItem = myOlApp.CreateItem(olAppontmentItem)

myItem.MeetingStatus = olMeeting
myItem.Subject = "Testing"
myItem.Start = "08/30/2007 05:00"
myItem.Duration = 30

... Set Addresses ...

myItem.Send


If I have Outlook Open already, the send is fine.

If I have to open Outlook, then I get:

"-2147467259 The operation failed."

Don't understand it....

The OutLook Calendar
I want to oen the outlook calendar from my app.
Can anyone help?

Outlook Calendar
I wan to open an outlook calendar from my application. also, i want to give defualt values to subject, date, categories n few more fields.

how can i acheive it??

Thanx

Outlook Calendar
i have an app that fills the calendar of outlook
how can i check if the appointment already exists?

Outlook Calendar
I would like to copy AppointmentItems from an Exchange Public Folder to the personal calendar.

I'm using this code :


VB Code:
'Function to get the folder.. returns a MAPIFolder  Set folCedule = GetFolder("Cédule des vendeurs")     Set folCalendrier = m_otlApp.Session.GetDefaultFolder(olFolderCalendar)      For i = 1 To folCedule.Items.Count    Set itmCedule = folCedule.Items.Item(i)    Set itmCalendar = folCalendrier.Items.Add          itmCalendar = itmCedule.Copy          Call itmCalendar.Save  NextEnd Sub


The problem with this code is that it make a copy of the current item in the Public Folder each time I use copy on one of his item so the count of folCedule is always increasing which cause infinite loop and a lot of duplicate records!!!

How can I correct it ?

Outlook Calendar
My application loads MS Outlook with my program, but i have found out that when it opens it goes straight to the inbox. How can i code it in my program to go straight into the calendar. I would like to do this without changing anything in outlook.

Please provide code. Thanks

Outlook Calendar
hello !
i just created an appointment in outlook with VB using outlook 9 object library.
And now i want to know what are the dates that the Appointment is taking place .

is there any method in outlook that will show me that ?

10x

MS Outlook Calendar
I am trying to create a calendar like the one used in MS outlook. I want to create the piece that looks like the FlexGrid. I would appreciate any help I could get. Right now I am trying to use a flexgrid, but I am having a lot of trouble and any help would be greatly appreciated.

Thanks in advance,

Calendar Like In Outlook
Hi

Does anyone know or have some source code that will enable me to either do or learn from to do a calendar like in outlook.

I am creating a application where I want the users to be able to add an event to a calendar database by simply selecting a start date and dragging to the finish date. On Mouse up they would be prompted to enter a description and any notes for the event.

Any help would be appreciated.


Thanks in advance.

Outlook&#039;s Calendar???
Does anyone know how to use Outlook's Calendar in VB?

Calendar Of The Outlook
Hello to all,
somebody knows like adding an entrance to the calendar of the OutLook from
an application in visual BASIC. I need to make an application that remembers
to the user the pending tasks that it has and as all have installed the
OutLook, I want to take advantage of this.
Thanks.

Outlook Calendar
It is possible to add an entry to the calender in outlook.

To be even more precise a network calender?

Thanks

In advance

Outlook Calendar
I've written some code to pull events from an outlook calendar and stick it in a database.
It works, but slow, so I decided to create a progress bar.
The problem is when I use Code:item.count after I find the events, it returns something like 2,000,000 events.
The count returned is the same no matter how many events are in the calendar.

Why isn't it returning the proper number of events

thanks

Using Outlook Calendar In VB
Hi all,

I have come up with an idea to bring up the outlook calendar in my VB app allowing the user to select different days etc. Is this possible in VB please.

I basically want a user to select a day then have the facility to transfer info from a recordset into that calendar day. Like selecting a job and various details and put it in to his calendar as things to do. Or would it be possible to simply allow a date/time entry and post the info through?????? ???? to there folder/schedule!!!

Dont even no where to start with this one or if its possible.

I know that if it is someone on here will reply so thanx very much in advance.

Cheers

Jiggy!!!!!

Outlook Calendar
Hi,

I'm new to programming and i was ask to do a programming using Visual basic to extract out Microsoft Outlook calendar free time slot (meaning those time slot without event or appointment) without the use of microsoft exchange server.

That is because by doing so, it will let people or ownself to know it's own free time so to inform others that he or she is available during time to time which i believe is quite useful.

Kindly Please Help...
Thanks in advance

Best Regards,
ClaudeX

Copyright © 2005-08 www.BigResource.com, All rights reserved