Windows 10: displayproblem

Discus and support displayproblem in Windows 10 Drivers and Hardware to solve the problem; i had purchased dell vostro from online .while it delivered and i opened it and set up all the things .After that it showing the flickeing lines under... Discussion in 'Windows 10 Drivers and Hardware' started by pavankumar2002, Nov 7, 2020.

  1. displayproblem


    i had purchased dell vostro from online .while it delivered and i opened it and set up all the things .After that it showing the flickeing lines under the taskbar.so ,please help me to fix it..!!

    :)
     
    pavankumar2002, Nov 7, 2020
    #1
  2. mpem Win User

    Nokia 5800 screen problems!!!!!

    For your information: I had the same displayproblem and just got my 5800 back from nokia service with new filters, display etc. I took a month. On top op that the displayproblem is still there! They just can't fix it. Returning the phone today at getting
    a new one - and keeping clear of this model.



    best regards
     
    mpem, Nov 7, 2020
    #2
  3. ITam5506 Win User
    No Refresh/re-rendering on parts of a program window

    Displayproblem is solved. But after the update BSODs are the problem.

    On Tue 11.04.2017 13:16:02 GMT your computer crashed

    crash dump file: C:\Windows\Minidump\041117-3781-01.dmp

    This was probably caused by the following module: ntoskrnl.exe (nt+0x16BFD0)

    Bugcheck code: 0xC8 (0x20000, 0x0, 0x0, 0x0)

    Error: IRQL_UNEXPECTED_VALUE

    file path: C:\Windows\system32\ntoskrnl.exe

    product: Microsoft® Windows® Operating System

    company: Microsoft Corporation

    description: NT Kernel & System

    Bug check description: This indicates that the processor's IRQL is not what it should be at this time.

    This appears to be a typical software driver bug and is not likely to be caused by a hardware problem.

    The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.

    M$?! ****!!!
     
    ITam5506, Nov 7, 2020
    #3
  4. displayproblem

    Rhino's "I need Java help" thread

    edit: solved! just had to run Integer.parseInt on userInput.getText() and it works like a charm.

    ok, applet is almost done. i just need to figure out a way to get the number which is input into the textfield to be equal to my class variable user_answer. the problem is i cant grab that entered number and put it into a int variable.

    this doesnt work

    Code: user_answer = userInput.getText(); //set what the user enters into the textfield as the user answer[/quote] Code: import java.awt.Color; import java.awt.Container; import java.awt.Font; import java.awt.GridLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.BorderFactory; import javax.swing.JApplet; import javax.swing.JButton; import javax.swing.JPanel; import javax.swing.JTextArea; import javax.swing.JTextField; import javax.swing.border.Border; public class TeachArithmetic extends JApplet implements ActionListener { public int num1, num2, num3, num4; public int user_answer, correct_answer; private JPanel mathProblem = new JPanel(); private JPanel enterAnswer = new JPanel(); private JPanel gradeAnswer = new JPanel(); private JPanel clickButton = new JPanel(); private JPanel mainPanel = new JPanel(); private JTextArea problem = new JTextArea(1, 3); private JTextField userInput = new JTextField(3); private JTextArea printResult = new JTextArea(1, 3); private JButton ok, next; private Border blueline1 = BorderFactory.createLineBorder(Color.blue); public void init() { ok = new JButton("OK"); ok.addActionListener(this); ok.setFont(new Font("Comic Sans MS", Font.BOLD,25)); ok.setForeground(Color.blue); ok.setBackground(Color.white); next = new JButton("NEXT"); next.addActionListener(this); next.setFont(new Font("Comic Sans MS", Font.BOLD,25)); next.setForeground(Color.blue); next.setBackground(Color.white); mathProblem.setBackground(Color.white); mathProblem.setForeground(Color.green); mathProblem.add(problem); enterAnswer.setBackground(Color.white); enterAnswer.add(userInput); userInput.setFont(new Font("Comic Sans MS", Font.BOLD,22)); gradeAnswer.setBackground(Color.white); gradeAnswer.setFont(new Font("Comic Sans MS", Font.BOLD,22)); gradeAnswer.setForeground(Color.red); gradeAnswer.add(printResult); clickButton.setBackground(Color.white); clickButton.add(ok); clickButton.add(next); mainPanel.setBackground(Color.white); mainPanel.setLayout(new GridLayout(5, 1)); mainPanel.add(mathProblem); mainPanel.add(enterAnswer); mainPanel.add(gradeAnswer); mainPanel.add(clickButton); mainPanel.setBorder(blueline1); Container pane = getContentPane(); pane.add(mainPanel); } public void actionPerformed(ActionEvent e) { if(e.getSource() == ok) { if(user_answer == correct_answer) { printResult.setText("You Got It Right!"); printResult.setFont(new Font("Comic Sans MS", Font.BOLD,18)); printResult.setForeground(Color.green); } else { printResult.setText("I'm Sorry But That Is Incorrect."); printResult.setFont(new Font("Comic Sans MS", Font.BOLD,18)); printResult.setForeground(Color.red); } } if(e.getSource() == next) { randomNumber(); //generate random int displayProblem(); //generate new math problem printResult.setText(""); //clear screen userInput.setText(""); //clear textfield } } public void randomNumber() { num1 = (int) (Math.random() * 10); num2 = (int) (Math.random() * 10); num3 = (int) (Math.random() * 10); num4 = (int) (Math.random() * 10); } public void displayProblem() { problem.setText("Your Math Problem is: " + num1 + " + " + num2); problem.setFont(new Font("Comic Sans MS", Font.BOLD,20)); problem.setForeground(Color.black); user_answer = userInput.getText(); //set what the user enters into the textfield as the user answer correct_answer = num1 + num2; //set the correct answer to whatever num1 + num2 equals. } }//end of class[/quote] edit: solved! just had to run Integer.parseInt on userInput.getText() and it works like a charm.
     
    Easy Rhino, Nov 7, 2020
    #4
Thema:

displayproblem