Windows 10: Sudoku Premium does not work on my new computer.

Discus and support Sudoku Premium does not work on my new computer. in Windows 10 Gaming to solve the problem; In the 'solitaire collection' of MS, I used to play Sudoku present level = 182. Very recently I bought a new computer Windows 10 and since then, it is... Discussion in 'Windows 10 Gaming' started by francisdeckers, Feb 3, 2021.

  1. Sudoku Premium does not work on my new computer.


    In the 'solitaire collection' of MS, I used to play Sudoku present level = 182. Very recently I bought a new computer Windows 10 and since then, it is no longer possible to play any of the games of 'solitaire collection'. My name as a player 'Keybooch553175' appears on the screen, but every game except Freecell is blocked. I'm clearly recognised by the application but do not have acces to the majority of the games. ??? What can be done ?

    :)
     
    francisdeckers, Feb 3, 2021
    #1

  2. Premium Edition Sudoku

    Hi

    How do I upgrade Sudoku to Premium Edition to remove the ads?
     
    Eliza BennettAus, Feb 3, 2021
    #2
  3. Microsoft Sudoku performance issue on Windows 10 computer.

    Original Title: Repeated loss of solved history problems

    Running Microsoft Sudoku in Windows 10 for several months without problems. Last week started having problems of loading Sudoku, and then when it sometimes loads my history of previous months, weeks and days is missing - even after solving all 3 daily games
    and getting the bonus, returning later the games show as not having been played. I sometimes get the message that Sudoku couldn't connect to the internet and to check my internet is working. It is, (Fibre broadband) without problems. Every bit of my computer
    has the latest drivers installed. Internet connection troubleshooted without problems. Deleted and reloaded Sudoku several times.

    Can anyone suggest what I might have missed or what steps I might take next?
     
    ChrisBrockbankZM, Feb 3, 2021
    #3
  4. GSquadron Win User

    Sudoku Premium does not work on my new computer.

    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 Sudoku Premium does not work on my new computer. :confused:[/i][/i][/i][/i][/i]
     
    GSquadron, Feb 3, 2021
    #4
Thema:

Sudoku Premium does not work on my new computer.

Loading...
  1. Sudoku Premium does not work on my new computer. - Similar Threads - Sudoku Premium does

  2. how do I reinstall Premium Sudoku?

    in Microsoft Windows 10 Store
    how do I reinstall Premium Sudoku?: I uninstalled it because it was stuck on the load screen and no matter what I tried, it would not complete the download. Really unhappy about paying for a premium subscription that I am unable to play. I just paid to renew my subscription in June of this year....
  3. how do I reinstall Premium Sudoku?

    in Windows 10 Gaming
    how do I reinstall Premium Sudoku?: I uninstalled it because it was stuck on the load screen and no matter what I tried, it would not complete the download. Really unhappy about paying for a premium subscription that I am unable to play. I just paid to renew my subscription in June of this year....
  4. how do I reinstall Premium Sudoku?

    in Windows 10 Software and Apps
    how do I reinstall Premium Sudoku?: I uninstalled it because it was stuck on the load screen and no matter what I tried, it would not complete the download. Really unhappy about paying for a premium subscription that I am unable to play. I just paid to renew my subscription in June of this year....
  5. sudoku not working

    in Windows 10 Software and Apps
    sudoku not working: I can't get Microsoft Sudoku to load. The window opens and it just sits there with the initial splash screen. I've already uninstalled and reinstalled twice...didn't help. Peggy...
  6. New Microsoft Sudoku

    in Windows 10 Gaming
    New Microsoft Sudoku: When opening the new version of Microsoft Sudoku I get the pop up box stating that "August is over, click to continue". This resets the daily challenge to zero and so all challenges already done disappear and my score returns to zero. Also all my settings revert to the...
  7. New Sudoku

    in Windows 10 Gaming
    New Sudoku: Ive installed the new version of Sudoku on my PC and Tablet but they arent linking. What do I need to do? https://answers.microsoft.com/en-us/windows/forum/all/new-sudoku/bb1763d3-6a07-4bb2-a673-5c2b4fe19f9f
  8. New Microsoft Sudoku

    in Microsoft Windows 10 Store
    New Microsoft Sudoku: The new Microsoft Sudoku game has just been installed on my PC and Linx 10 tablet. I am able to play the game on my PC but when I try on the tablet, I get the message 'Resize the screen to continue'. The usual ways of resizing the screen do not work and the screen seems to...
  9. Microsoft Jigsaw Premium does not work

    in Windows 10 Gaming
    Microsoft Jigsaw Premium does not work: I purchased the Premium version of Microsoft Jigsaw to turn off ads. Unfortunately, when I click on the button to turn off ads, it says that I already own Premium and the ads are still there. I tried reinstalling Microsoft Jigsaw and rebooting - it does not work. There is...
  10. Premium Edition Sudoku

    in Windows 10 Installation and Upgrade
    Premium Edition Sudoku: Hi How do I upgrade Sudoku to Premium Edition to remove the ads? https://answers.microsoft.com/en-us/windows/forum/all/premium-edition-sudoku/97dc419a-68f8-4e4c-8ed1-a7ae43ead4df