private void displayInitialLoggedInUserScreen()
        {
            pictureBox_profilePicture.LoadAsync(m_LoggedInUser.PictureLargeURL);
            pictureBox_profilePicture.SizeMode = PictureBoxSizeMode.StretchImage;
            label_userName.Text = getUserFullName();

            foreach (Album album in m_LoggedInUser.Albums)
            {
                AlbumCover albumCover = new AlbumCover(album.Name, album.PictureAlbumURL, album.Id);
                flowLayout_albumPhotos.Controls.Add(albumCover);
                albumCover.LoadImage();
                albumCover.Click += new EventHandler(albumCoverSelected);
            }

            enableLoginButton(false);
        }