Hi
It may or maynot work based on the MSOutLook/MSOffice installed in your computer. (i.e. the OLECLASS specified).
Copy the following code as a PRG and un it from your command window.
** myCalendar/OutLook Diary
**************************************************
** PROCEDURE OLCalendar.PRG
PUBLIC oform1
oform1=NEWOBJECT("form1"

oform1.Show
RETURN
**************************************************
DEFINE CLASS form1 AS form
Height = 400
Width = 620
DoCreate = .T.
Caption = "Form1"
Name = "Form1"
ADD OBJECT command1 AS commandbutton WITH ;
Top = 360, ;
Left = 504, ;
Height = 27, ;
Width = 84, ;
Caption = "E\<xit", ;
Name = "CmdExit"
ADD OBJECT olecontrol1 AS olecontrol WITH ;
Top = 12, ;
Left = 12, ;
Height = 336, ;
Width = 588, ;
Name = "Olecontrol1", ;
OleClass = "OVCtl.OVCtl.1"
PROCEDURE cmdExit.Click
ThisForm.Release()
ENDPROC
PROCEDURE olecontrol1.Init
This.Folder = "Calendar"
ENDPROC
ENDDEFINE
* EndDefine: form1
**************************************************
ramani

(Subramanian.G),FoxAcc, ramani_g@yahoo.com