private void AddNewProfile(int gameID, bool isUsed)
        {
            AddProfileForm addProfileForm = new AddProfileForm();

            addProfileForm.ShowDialog();

            SqlDataReader sqlDataReader = DatabaseManager.ExecuteDataReader(String.Format(
                                                                                @"SELECT GameSaveLocation
                FROM Games 
                WHERE GameID={0}",
                                                                                gameID));

            string gameSaveLocation = "";

            while (sqlDataReader.Read())
            {
                gameSaveLocation = sqlDataReader.GetValue(0).ToString().TrimEnd(' ');
            }
            string profileSaveLocation = gameSaveLocation + "_" + addProfileForm.GetProfileName;

            sqlDataReader.Close();

            string command = String.Format(
                "INSERT INTO Profiles (ProfileName, GameID, ProfileSaveLocation, IsUsed) VALUES (\'{0}\', {1}, \'{2}\', {3})",
                addProfileForm.GetProfileName,
                gameID,
                profileSaveLocation,
                (isUsed ? 1 : 0));

            DatabaseManager.AddToDatabase(command);

            FSManager.DirectoryCopy(gameSaveLocation, profileSaveLocation, true);
            RefreshProfiles();
        }