How come I'm getting 0 address entries when I have many people in my contacts list already?

VB Code:
  1. Private Function EMail_Test() As Long
  2.  
  3.     Dim Outlook As Object
  4.     Dim MAPI As Object
  5.     Dim Entries As Object
  6.     Dim Address_Lists() As String
  7.     Dim Number_Of_Address_Lists As Long
  8.     Dim Current_Address_List As Long
  9.     Dim Number_Of_Entries As Long
  10.    
  11.     Set Outlook = CreateObject("Outlook.Application")
  12.    
  13.     Set MAPI = Outlook.GetNameSpace("MAPI")
  14.    
  15.     Number_Of_Address_Lists = MAPI.AddressLists.Count
  16.    
  17.     For Current_Address_List = 1 To Number_Of_Address_Lists
  18.    
  19.         ReDim Preserve Address_Lists(Current_Address_List) As String
  20.            
  21.         Address_Lists(Current_Address_List) = MAPI.AddressLists(Current_Address_List)
  22.        
  23.         Set Entries = MAPI.AddressLists(Current_Address_List)
  24.  
  25.         Number_Of_Entries = Entries.AddressEntries.Count
  26.        
  27.         MsgBox Number_Of_Entries
  28.    
  29.     Next Current_Address_List
  30.    
  31. End Function