Windows 10: Restore purchases for add-ons to The Big Sudoku

Discus and support Restore purchases for add-ons to The Big Sudoku in Windows 10 Gaming to solve the problem; When I open up The Big Sudoku and go to add more, it shows my previous purchases but when I click on them to install it wants to charge me for them... Discussion in 'Windows 10 Gaming' started by Junelle, Feb 24, 2025.

  1. Junelle Win User

    Restore purchases for add-ons to The Big Sudoku


    When I open up The Big Sudoku and go to add more, it shows my previous purchases but when I click on them to install it wants to charge me for them again. How do I add them back?

    :)
     
    Junelle, Feb 24, 2025
    #1
  2. GSquadron Win User

    Java sudoku

    A friend of mine gave me a java sudoku ready, i just modified the main part but looks like it
    doesn't show up anything (used the code in neatbeans and in eclipse too):
    Code: package javaapplication2; import java.util.*; public class Main { public static void main(String args[]){} Random generator = new Random(); int[] serie = new int[9]; int[][] sudoku = new int[9][9]; int[][] select = new int[9][9]; int livello; public Main(int livello) { this.livello = livello; for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { select[j] = -1; } } for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { sudoku[j] = -1; } } for (int i=0; i<9; i++) { serie = -1; } } private void genArray() { int numCas = Math.abs(generator.nextInt(9))+1; for (int i=0; i<9;i++) { if (i==0) { serie = numCas; } else { while (serie[0] == numCas || serie[1] == numCas || serie[2] == numCas || serie[3] == numCas || serie[3] == numCas || serie[4] == numCas || serie[5] == numCas || serie[6] == numCas || serie[7] == numCas || serie[8] == numCas) { numCas = Math.abs(generator.nextInt(9))+1; } serie = numCas; } } } private void generateSudoku() { for (int i=0; i<9; i++) { if (i==0) { for (int k=0; k<9; k++) { sudoku[k] = serie[k]; } } else if (i==2) { for (int k=0; k<6; k++) { sudoku[k+3] = serie[k]; } for (int k=0; k<3; k++) { sudoku[k] = serie[k+6]; } } else if (i==1) { for (int k=0; k<3; k++) { sudoku[k+6] = serie[k]; } for (int k=0; k<6; k++) { sudoku[k] = serie[k+3]; } } else if (i==3) { for (int k=0; k<8; k++) { sudoku[k+1] = serie[k]; } for (int k=0; k<1; k++) { sudoku[k] = serie[k+8]; } } else if (i==5) { for (int k=0; k<5; k++) { sudoku[k+4] = serie[k]; } for (int k=0; k<4; k++) { sudoku[k] = serie[k+5]; } } else if (i==4) { for (int k=0; k<2; k++) { sudoku[k+7] = serie[k]; } for (int k=0; k<7; k++) { sudoku[k] = serie[k+2]; } } else if (i==6) { for (int k=0; k<7; k++) { sudoku[k+2] = serie[k]; } for (int k=0; k<2; k++) { sudoku[k] = serie[k+7]; } } else if (i==8) { for (int k=0; k<4; k++) { sudoku[k+5] = serie[k]; } for (int k=0; k<5; k++) { sudoku[k] = serie[k+4]; } } else if (i==7) { for (int k=0; k<1; k++) { sudoku[i][k+8] = serie[k]; } for (int k=0; k<8; k++) { sudoku[i][k] = serie[k+1]; } } } for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { System.out.print(sudoku[i][j] + " "); } System.out.println(""); } arrange(); for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { System.out.print(sudoku[i][j] + " "); } System.out.println(""); } } private void arrange() { int cas = Math.abs(generator.nextInt(3)); for (int i=0; i<9; i++) { if (cas == 0) { if (i == 0) { swap0(i); } else if (i == 3) { swap0(i); } else if (i == 6) { swap0(i); } } else if (cas == 1) { if (i == 0) { swap1(i); } else if (i == 3) { swap1(i); } else if (i == 6) { swap1(i); } } else if (cas == 2) { if (i == 0) { swap2(i); } else if (i == 3) { swap2(i); } else if (i == 6) { swap2(i); } } cas = Math.abs(generator.nextInt(3)); } } private void swap0(int pivot) { int aux; for (int j=0; j<9; j++) { aux = sudoku[pivot][j]; sudoku[pivot][j] = sudoku[pivot+1][j]; sudoku[pivot+1][j] = aux; aux = sudoku[pivot+1][j]; sudoku[pivot+1][j] = sudoku[pivot+2][j]; sudoku[pivot+2][j] = aux; } for (int j=0; j<9; j++) { aux = sudoku[j][pivot]; sudoku[j][pivot] = sudoku[j][pivot+2]; sudoku[j][pivot+2] = aux; } } private void swap1(int pivot) { int aux; for (int j=0; j<9; j++) { aux = sudoku[pivot][j]; sudoku[pivot][j] = sudoku[pivot+2][j]; sudoku[pivot+2][j] = aux; aux = sudoku[pivot+1][j]; sudoku[pivot+1][j] = sudoku[pivot+2][j]; sudoku[pivot+2][j] = aux; } for (int j=0; j<9; j++) { aux = sudoku[j][pivot]; sudoku[j][pivot] = sudoku[j][pivot+1]; sudoku[j][pivot+1] = aux; aux = sudoku[j][pivot+1]; sudoku[j][pivot+1] = sudoku[j][pivot+2]; sudoku[j][pivot+2] = aux; } } private void swap2(int pivot) { int aux; for (int j=0; j<9; j++) { aux = sudoku[pivot][j]; sudoku[pivot][j] = sudoku[pivot+2][j]; sudoku[pivot+2][j] = aux; } for (int j=0; j<9; j++) { aux = sudoku[j][pivot]; sudoku[j][pivot] = sudoku[j][pivot+2]; sudoku[j][pivot+2] = aux; aux = sudoku[j][pivot+1]; sudoku[j][pivot+1] = sudoku[j][pivot+2]; sudoku[j][pivot+2] = aux; } } public void select() { int numX; int numY; genArray(); generateSudoku(); if (livello == 0) { for (int i=0; i<30; i++) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); while (select[numX][numY] != -1) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); } select[numX][numY] = sudoku[numX][numY]; } } else if (livello == 1) { for (int i=0; i<20; i++) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); while (select[numX][numY] != -1) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); } select[numX][numY] = sudoku[numX][numY]; } } else if (livello == 2) { for (int i=0; i<10; i++) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); while (select[numX][numY] != -1) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); } select[numX][numY] = sudoku[numX][numY]; } } try { notifyAll(); } catch (Exception e) { } for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { System.out.print(sudoku[i][j] + " "); } System.out.println(""); } } }[/quote] Where the problem is here? It compiles perfectly! Nothing shows on the screen *Confused Restore purchases for add-ons to The Big Sudoku :confused:[/i][/i][/i][/i][/i]
     
    GSquadron, Feb 24, 2025
    #2
  3. donnylad Win User
    Killer Sudoku needed

    Sorry Bree that is plain Sudoku and I would like Killer Sudoku, also I want to download it to install, thanks for your help.
    Len
     
    donnylad, Feb 24, 2025
    #3
  4. Restore purchases for add-ons to The Big Sudoku

    Microsoft Sudoku in Windows 10

    Hi Lance,



    Thank you for posting in Microsoft Community.

    I regret the inconvenience caused to you. Let me help you.



    In order to understand the issue in a better manner, please share the details.


    • What do you mean by “I selected to install and I am the owner”?

    • Can you see MS Sudoku icon in the menu?

    • Is there any other programs or applications causing the same issue?

    • Have you completed installing MS Sudoku? Was it successful?
    I suggest you to download MS Sudoku from the Windows Store and check if it works.

    Please reply with the details and updated status of the issue. We will be happy to assist you accordingly.



    Thank you.
     
    Aswin_Anand, Feb 24, 2025
    #4
Thema:

Restore purchases for add-ons to The Big Sudoku

Loading...
  1. Restore purchases for add-ons to The Big Sudoku - Similar Threads - Restore purchases add

  2. Restore purchases for add-ons to The Big Sudoku

    in Windows 10 Software and Apps
    Restore purchases for add-ons to The Big Sudoku: When I open up The Big Sudoku and go to add more, it shows my previous purchases but when I click on them to install it wants to charge me for them again. How do I add them back?...
  3. Can't Restore Add-On Purchase

    in Windows 10 Gaming
    Can't Restore Add-On Purchase: I bought the full version lifetime option of Neat Office and used it just fine on my computer before I had to soft-reset the computer. Now it's not in the app's Add-ons/Downloadable Content and not showing up in my Microsoft Store Library, though I've checked to see that it's...
  4. ADD ONS

    in Windows 10 Gaming
    ADD ONS: I HAVE DOWNLOADED, UNZIPPED AND INSTALLED TWO ADD ONS INTO THE COMMUNITY FOLDER..THEY SHOW IN THE FOLDER BUT.....THEY SHOW IN THE CONTENT MANAGER AS NOT INSTALLED. I HAVE DELETED THEM FROM THE COMMUNITY FOLDER AND RE-INSTALLED, I HAVE TRIED ALL THINGS WITH NO LUCK.I DO HAVE...
  5. ADD ONS

    in Windows 10 Gaming
    ADD ONS: I HAVE DOWNLOADED, UNZIPPED AND INSTALLED TWO ADD ONS INTO THE COMMUNITY FOLDER..THEY SHOW IN THE FOLDER BUT.....THEY SHOW IN THE CONTENT MANAGER AS NOT INSTALLED. I HAVE DELETED THEM FROM THE COMMUNITY FOLDER AND RE-INSTALLED, I HAVE TRIED ALL THINGS WITH NO LUCK.I DO HAVE...
  6. ADD ONS

    in Windows 10 Software and Apps
    ADD ONS: I HAVE DOWNLOADED, UNZIPPED AND INSTALLED TWO ADD ONS INTO THE COMMUNITY FOLDER..THEY SHOW IN THE FOLDER BUT.....THEY SHOW IN THE CONTENT MANAGER AS NOT INSTALLED. I HAVE DELETED THEM FROM THE COMMUNITY FOLDER AND RE-INSTALLED, I HAVE TRIED ALL THINGS WITH NO LUCK.I DO HAVE...
  7. ADD ONS

    in Windows 10 Software and Apps
    ADD ONS: I HAVE DOWNLOADED, UNZIPPED AND INSTALLED TWO ADD ONS INTO THE COMMUNITY FOLDER..THEY SHOW IN THE FOLDER BUT.....THEY SHOW IN THE CONTENT MANAGER AS NOT INSTALLED. I HAVE DELETED THEM FROM THE COMMUNITY FOLDER AND RE-INSTALLED, I HAVE TRIED ALL THINGS WITH NO LUCK.I DO HAVE...
  8. MSFS2020 Add Ons

    in Windows 10 Gaming
    MSFS2020 Add Ons: I have downloaded MSFS2020 Deluxe onto my pc using Microsoft store successfully no issues, now my problem is I have bought London city and M20r as add on and I can't download them they say its in credits, although Xbox wants the same money again for the same add on which is...
  9. Firefox And Add ons

    in Browsers and Email
    Firefox And Add ons: I must admit Firefox has improved dramatically in the centuries since I last used it. However, I have installed add on FVD Speed dial (better than Vivaldi or Opera) and after a false start uninstall and reinstall, got it sorted and would like to ask now if: There is any way...
  10. what are add ons?

    in Windows 10 Customization
    what are add ons?: what are add ons? How to work with add ons? خزرشهر https://answers.microsoft.com/en-us/windows/forum/windows_10-other_settings/what-are-add-ons/175b9818-0e26-42a6-9f3d-16be762f1c92