The question of outLook folders often come in this forum. SO just thought of adding my small contribution here. This may not be the only way to do it.. nor this is an end..
Copy the code below as a Olook.PRG and run it. If you use Outlook 2000, this will work. I prepared this in just as little a time as it will take to type in the code, the real thinking will be put a little later and I will add that as a FAQ.
*********************************************************
** Author : Ramani (Subramanian.G)
** FoxAcc Software / Winners Software
** ramani_g@yahoo.com
** Type : Freeware with reservation to Copyrights
** Warranty : Nothing implied or explicit
** Created : 17 January, 2003
*********************************************************
** How to Run..
** 1. Save the following code as oLook.PRG
** 2. From within the command window ...
** DO oLook
*********************************************************
** PROCEDURE OLOOK.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 cmdExit AS commandbutton WITH ;
Top = 360, ;
Left = 504, ;
Height = 27, ;
Width = 84, ;
Caption = "E\<xit", ;
Name = "CmdExit"
ADD OBJECT cmdCalendar AS commandbutton WITH ;
Top = 360, ;
Left = 12, ;
Height = 27, ;
Width = 84, ;
Caption = "\<Calendar", ;
Name = "CmdCalendar"
ADD OBJECT cmdInBox AS commandbutton WITH ;
Top = 360, ;
Left = 108, ;
Height = 27, ;
Width = 84, ;
Caption = "\<In Box", ;
Name = "CmdInBox"
ADD OBJECT cmdSent AS commandbutton WITH ;
Top = 360, ;
Left = 204, ;
Height = 27, ;
Width = 84, ;
Caption = "\<Sent Mail", ;
Name = "CmdSent"
ADD OBJECT cmdContact AS commandbutton WITH ;
Top = 360, ;
Left = 300, ;
Height = 27, ;
Width = 84, ;
Caption = "\<AddressBook", ;
Name = "CmdContact"
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 cmdCalendar.Click
ThisForm.OleControl1.Folder = "CALENDAR"
ThisForm.Caption = "OutLook Calendar"
ThisForm.Refresh()
ENDPROC
PROCEDURE cmdInBox.Click
ThisForm.OleControl1.Folder = "INBOX"
ThisForm.Caption = "OutLook InBox"
ThisForm.Refresh()
ENDPROC
PROCEDURE cmdSent.Click
ThisForm.OleControl1.Folder = "SENT ITEMS"
ThisForm.Caption = "OutLook Sent Items"
ThisForm.Refresh()
ENDPROC
PROCEDURE cmdContact.Click
ThisForm.OleControl1.Folder = "CONTACTS"
ThisForm.Caption = "OutLook Address Book"
ThisForm.Refresh()
ENDPROC
PROCEDURE olecontrol1.Init
This.Folder = "InBox"
ENDPROC
ENDDEFINE
* EndDefine: form1
*********************************************************
* EOF
*********************************************************
ramani 
(Subramanian.G),FoxAcc, ramani_g@yahoo.com
Copy the code below as a Olook.PRG and run it. If you use Outlook 2000, this will work. I prepared this in just as little a time as it will take to type in the code, the real thinking will be put a little later and I will add that as a FAQ.
*********************************************************
** Author : Ramani (Subramanian.G)
** FoxAcc Software / Winners Software
** ramani_g@yahoo.com
** Type : Freeware with reservation to Copyrights
** Warranty : Nothing implied or explicit
** Created : 17 January, 2003
*********************************************************
** How to Run..
** 1. Save the following code as oLook.PRG
** 2. From within the command window ...
** DO oLook
*********************************************************
** PROCEDURE OLOOK.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 cmdExit AS commandbutton WITH ;
Top = 360, ;
Left = 504, ;
Height = 27, ;
Width = 84, ;
Caption = "E\<xit", ;
Name = "CmdExit"
ADD OBJECT cmdCalendar AS commandbutton WITH ;
Top = 360, ;
Left = 12, ;
Height = 27, ;
Width = 84, ;
Caption = "\<Calendar", ;
Name = "CmdCalendar"
ADD OBJECT cmdInBox AS commandbutton WITH ;
Top = 360, ;
Left = 108, ;
Height = 27, ;
Width = 84, ;
Caption = "\<In Box", ;
Name = "CmdInBox"
ADD OBJECT cmdSent AS commandbutton WITH ;
Top = 360, ;
Left = 204, ;
Height = 27, ;
Width = 84, ;
Caption = "\<Sent Mail", ;
Name = "CmdSent"
ADD OBJECT cmdContact AS commandbutton WITH ;
Top = 360, ;
Left = 300, ;
Height = 27, ;
Width = 84, ;
Caption = "\<AddressBook", ;
Name = "CmdContact"
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 cmdCalendar.Click
ThisForm.OleControl1.Folder = "CALENDAR"
ThisForm.Caption = "OutLook Calendar"
ThisForm.Refresh()
ENDPROC
PROCEDURE cmdInBox.Click
ThisForm.OleControl1.Folder = "INBOX"
ThisForm.Caption = "OutLook InBox"
ThisForm.Refresh()
ENDPROC
PROCEDURE cmdSent.Click
ThisForm.OleControl1.Folder = "SENT ITEMS"
ThisForm.Caption = "OutLook Sent Items"
ThisForm.Refresh()
ENDPROC
PROCEDURE cmdContact.Click
ThisForm.OleControl1.Folder = "CONTACTS"
ThisForm.Caption = "OutLook Address Book"
ThisForm.Refresh()
ENDPROC
PROCEDURE olecontrol1.Init
This.Folder = "InBox"
ENDPROC
ENDDEFINE
* EndDefine: form1
*********************************************************
* EOF
*********************************************************
(Subramanian.G),FoxAcc, ramani_g@yahoo.com