FXML showing does not setText()

Hello world

I started playing a few days with JavaFX looks excellent! I am a beginner and got stuck on a trivial problem.
I played with two classes which extend 'Step' MainStage.java other MessageBox.java and MessageBoxOk.fxml
I'm trying to take another step the error message and display it in my MessageBox class.

PROBLEM:
-When I try to move the empty constructor error I get javafx.fxml.LoadException: java.lang.InstantiationException: org.testfx.admin.misc.MessageBox
-When I put it trough a public method in the MessageBox (as in the code below), I get no error but FXML displays earlier then the method is executed

How would pass all the data from one step to another step that it displays in FXML during initialization of the class. It seems that what I put the public method hollow is 'too late' and constructor to throw an error?

Thank you!

Method on the mainstage:
public void isDataOk() {
          if (checkFields(false)) {
               try {
                    AppDBAccess dbAccess = new AppDBAccess(tfHost.getText(), tfDbName.getText(), tfUsername.getText(), tfPassword.getText(),
                              Integer.valueOf(tfPort.getText()));
                    dbAccess.closeConnection();
                    lblStatus.setText(MyConstants.STRING_FIELD_CONNECTED);
               } catch (NumberFormatException e) {
                    e.printStackTrace();
                    MessageBox msgBox = new MessageBox(e.getMessage());
               }
OR
MessageBox msgBox = new MessageBox();
msgBox.initMessageBox(e.getMessage(), MessageBox.MESSAGE_OK, "Connection Error");
My MessageBox.java:
public class MessageBox extends Stage {
     public static final int MESSAGE_OK = 1;

     @FXML
     private Label lblMessage = new Label();

     public void initMessageBox(String message, int messageType, String messageBoxTitle) {
          Parent fxmlFile = null;
          try {
               if (messageType == MESSAGE_OK) {
                    fxmlFile = FXMLLoader.load(getClass().getResource("MessageBoxOk.fxml"));
               }
               Scene scene = new Scene(fxmlFile);
               scene.getStylesheets().add("style.css");
               this.initModality(Modality.APPLICATION_MODAL);
               this.setResizable(false);
               this.setTitle(messageBoxTitle);
               this.setScene(scene);
               lblMessage.setText(message);
               show();
          } catch (IOException e) {
               e.printStackTrace();
          }
     }
My FXML:
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.Button?>

<VBox 
     id="someBox"
     prefHeight="100" 
     prefWidth="300"
     fx:controller="org.testfx.admin.misc.MessageBox"
     xmlns:fx="http://javafx.com/fxml">
     <children>
          <Label fx:id="lblMessage"></Label>
     </children>
</VBox>
Published by: 912911 on 7 February 2012 10:01

How you use FXML is not quite the way it is expected (though I would have preferred that it is how you try to use it because it would be much more intuitive and more versatile).

When you call FXMLLoader.load (getClass () .getResource ("MessageBoxOk.fxml")) the FXML charger has actually instantiates a new instance of the "controller", which in your case is MessageBox.java. In your code you manually instantiate a plus, so you end up with 2 instances of MessageBox.java, only one is actually connected to the view and the other is referenced by your code.

To do what you're trying to do, you will have to get my hands on the controller that was instantiated by the FXML charger and not 'new' your own copy. FXMLLoader allows to do this but only if you a few stop and use the non-static version of the load method.

There are a bunch of different ways to do it, but keeping relatively faithful to your current setup, I recommend you do something as follows:

public class MessageBox
{
    public static final enum Type { ok }

    public static void showMessageBox(String message, Type type, String title)
    {
        MessageBox messageBox;
        Parent messageBoxRootNode;
        switch (type)
        {
            case ok:
                String fxmlFile = "MessageBoxOk.fxml";
                try
                {
                    InputStream fxmlStream = MessageBox.class.getResourceAsStream(fxmlFile);
                    FXMLLoader loader = new FXMLLoader();
                    loader.setBuilderFactory(new JavaFXBuilderFactory());
                    loader.setLocation(MessageBox.class.getResource(fxmlFile));
                    messageBoxRootNode = (Parent) loader.load(fxmlStream);
                    messageBox = (MessageBox) loader.getController();
                }
                catch (IOException e)
                {
                    throw new RuntimeException("Failed to load FXML file: " + fxmlFile, e);
                }
                break;
            default:
                throw new IllegalArgumentException("Unsupported message type: " + type)
        }

        messageBox.setMessage(message);

        Scene scene = new Scene(messageBoxRootNode);
        scene.getStylesheets().add("style.css");
        Stage stage = new Stage();
        stage.initModality(Modality.APPLICATION_MODAL);
        stage.setResizable(false);
        stage.setTitle(title);
        stage.setScene(scene);
        stage.show();
    }

    @FXML private Label lblMessage = new Label();

    public void setMessage(String message)
    {
        lblMessage.setText(message);
    }
}

And from your code calling (i.e. your catch clause) do like this:

MessageBox.showMessageBox(e.getMessage(), MessageBox.MESSAGE_OK, "Connection Error");

Tags: Java

Similar Questions

  • Problem with lightbox: slide show does not open when you click on the photos

    Nice day!

    I added several pages to my website with viewers.

    In a few pages, the slide show was under the footer... and in others, when I click on the thumbnail, the slide show does not open...

    Where could be the problem?

    Thanks for your help!

    Opens the slide show does not, is very odd.

    What do you mean by "beneath" ? The content of the album will always focus in the middle horizontal and vertical of the browser (not on the exact spot where you have put it on the page of Muse). Who is?

    Please publish your website online to test. Just press "Publish" and let the Muse to assign a temporary address for her. share this link with us.

  • slide show does not play in photo.only shows first photo

    Just upgraded to El Capitan.

    When I select an Album for a slide show, only the first frame appears, with the title of the album. I tried all variants of projections, but nothing works!

    I tried all variants of projections, but nothing works!

    What exactly have you tried already?

    A slideshow play project properly, if you select the photos in the album, use the command "file > new slide show?

    The problem occurs only in your existing photo library or in any library of Photos? To test with a different see the library of Photos of this help page: https://help.apple.com/photos/mac/1.0/?lang=en#/pht6d60b524

    Create a photo library

    • If the photo is open, choose Photos > Photos of quit smoking.
    • Hold down the Option key and double click on the Photos icon in the Applications folder (or click on the pictures of the Dock icon) to open the pictures.
    • In the select Library dialog box, click on create new.
    • Type a library name and choose a location to store the library.
    • Click OK.

    Switch between any libraries

    • If the photo is open, choose Photos > Photos of quit smoking.
    • Hold down the Option key and double click on the Photos icon in the Applications folder (or click on the pictures of the Dock icon) to open the pictures.
    • In the select Library dialog box, do one of the following:
      • Click the library that you want to use, then click on choose a library.
      • If the library you want does not appear in the select Library dialog box, click other library, navigate to the location of the library, select it, then click on choose a library.

    Is your photo library a library iCloud, or photos stored locally on your Mac?

    If slideshows do play not only in your existing photo library, but well play in a differnet photo library, try to repair the library as described here: https://help.apple.com/photos/mac/1.0/?lang=en#/pht6be18f93

    Important: You must back up your library before repair of your library.

    • If the photo is open, choose Photos > Photos of quit smoking.
    • Press Option-command and double-click on the Photos icon in the Applications folder (or click the Photos icon in the Dock). The library of repair window opens.
    • Click on fix to rebuild your library.
  • SEE SLIDE SHOW DOES NOT

    The 'View as slideshow' feature no longer works.  A picture back but does not go to the next image. He's not going to the next image, even when I click on the arrow to the front foot.  When I click on the down arrow I get error "drawing failed".  Recently, this feature stopped working properly.

    Hello CLEM1949,

    Thank you for your message.  First we will ensure a setting is correct.  This setting prevents slideshow of work.
    Click 'Start' > select 'My computer' > click 'Tools' > select 'Folder Options '.
    On the tab 'Général' and 'Missions', make sure that "Show common tasks in folder" is selected.
    Please let us know if it did or did not help to solve your problem.
    See you soon

    Engineer Jason Microsoft Support answers visit our Microsoft answers feedback Forum and let us know what you think.

  • Slide show does not (is empty)

    Created a simple slideshow with about 8 images and it works fine in the preview and also dreamweaver but when uploaded the slideshow does not at all just two buttons left and right?

    I'll add 'publish' site for a temp Adobe BC with Muse and then test the slide show... This helps eveyone see question and is free. easy to do.

  • slide show does not and 'error occurred while trying to change modules.

    I've been using Lightroom + module slide show for years, but suddenly it does not! When I start lightroom, whenever it says 'an error has occurred while trying to change modules' and I can't listen to extracts, to play or export slideshows. I tried computer restart, does not help. I need for a client this morning! Help please!

    Hi Jeng,

    Please visit the link below and follow the steps.

    Troubleshooting Guide for errors that can occur when you change the modules in Lightroom

    Kind regards

    Assani

  • Container not showing does not correcly in Internet Explore 11

    Hey guys!

    Hoping to get some help here because im about to pull out my hair...

    So im building a site pretty basic for a friend and I arrived at the stop and do not know how to continue. my understanding of Dreamweaver is limited but did play with it many years ago, but what I did I found one of these free patterns online and changed according to my needs and chrome, it looks exactly how I want but of course it does not show the container with my att backound all in Internet explore and everything looks messed up.

    while I have not published in fact the site but I hope for some advice from someone here :-)

    Basically, that's what I want it to look, and what it looks like in Chrome

    [url =http://postimg.org/image/ejs8hmpj9/] [img] http://s2.postimg.org/ejs8hmpj9/image.jpg [line] [/ url]

    This is what it looks like in Internet Explore 11

    [url =http://postimg.org/image/edde2g7lb/] [img] [line] http://s3.postimg.org/edde2g7lb/not_ok.jpg [URL]

    Reall appriciate help

    Here is my code

    < ! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" > ""

    " < html xmlns =" http://www.w3.org/1999/xhtml ">

    < head >

    < meta http-equiv = "Content-Type" content = text/html"; charset = iso-8859-1 "/ >"

    < title > Malmö Catering < /title >

    < link rel = "stylesheet" type = "text/css" href = "style.css" / > "

    < style type = "text/css" >

    <!--

    . Style1 {make-size: 18px}

    {.style2}

    do-size: 16px;

    color: #FFFFFF;

    }

    {.style4}

    do-size: 16px;

    make-weight: bold;

    }

    .style6 {color: #142D1A}

    ->

    < / style >

    < / head >

    < body >

    < div align = "center" id = "container" >

    < div id = "header" >

    < table width = "545" height = "203" border = "0" bgcolor = "#FFFFFF" >

    < b >

    "" < td > < div align = "" > < img src = "... / thanks MalmoCatering" alt = "" width = "503" height = "137" / > < / div > < table > "

    < /tr >

    < /table >

    < / div >

    < div id = "left" >

    < div id = "navcontainer" >

    < ul id = "navlist" >

    < id li = "active" > < a href = "index.html" > < span class = "style6" > V & licence; "" lkommen </span > < /a > < /li >

    < class li = "green" > < a href = 'Page 1.html' > < span class = "style6" > Om oss </span > < /a > < /li >

    < li > < a href = "Page 2.html" class = "style6" > < span class = "style6" > Landg & aring; Ngar </span > < /a > < /li >

    < li > < a href = "Page 3.html" > < span class = "style6" > Fisk & amp; Skaldjur Sm & ouml; RG & aring; SAR </span > < /a > < /li >

    < li > < a href = "Page 4.html" > < span class = "style6" > K & ouml; TT Sm & ouml; RG & aring; SAR </span > < /a > < /li >

    < li > < a href = "Page 5.html" > < span class = "style6" > Kallskuret </span > < /a > < /li >

    < li > < a href = "Page 6.html" > < span class = "style6" > Sm & ouml; RG & aring; St & aring; lrco </span > < /a > < /li >

    < li > < a href = "Page 7.html" > < span class = "style6" > Sallader </span > < /a > < /li >

    < li > < a href = "Page-8.html" > < span class = "style6" > Ciabatta & amp; Beading </span > < /a > < /li >

    < li > < a href = "Page 9.html" > < span class = "style6" > Buffe & amp; Annat gott </span > < /a > < /li >

    < li > < a href = "Page 10.html" > < span class = "style6" > Snittar </span > < /a > < /li >

    < li > < a href = "Page 11.html" > < span class = "style6" > Hitta hit </span > < /a > < /li >

    < /ul >

    < / div >

    < h4 align = "left" class = "style6" > < / h4 >

    < h4 > < / h4 >

    < / div >

    < div id = "right" >

    < blockquote >

    < table width = "401" height = "49" border = "0" >

    < b >

    < td > < div align = "center" >

    < class = "style4" p > V & licence; lkommen < /p >

    < class p = "style4" > _ < /p >

    < / div > < table >

    < /tr >

    < /table >

    < p align = "center" class = "style1" > Det och det mesta b & licence; STA inom Matt Kell... < br / >

    Best Ingen & licence; llning & licence; f r & ouml; stor eller f r & ouml; r sv & aring; r! < br / >

    V & licence; LJ din favorit och njut... < /p >

    < p > < / p >

    < p > < / p >

    < p align = "center" class = "style1" > & Ouml; ppettider < /p >

    < p align = "center" class = "style1" > m & aring; nofonofo - fredag 08.00 - 18.00 < /p >

    < p align = "center" class = "style1" > l & ouml; rdag 08.00 - 17.00 < /p >

    < p align = "center" class = "style1" > s & ouml; nofonofo 09 - 14.00 < /p >

    < class p = "name" > < / p >

    < / blockquote >

    < table width = "520" height = "38" border = "1" align = "center" bgcolor = "#142D1A" >

    < b >

    < td > < div align = "center" > < span class = "style2" > Malm & ouml; Catering Lantmannagatan 11 Malm & ouml; Telephone 040-97 00 05 < / span > < / div > < table >

    < /tr >

    < /table >

    < p > < / p >

    < p > < / p >

    < / div >

    < / div >

    < / body >

    < / html >

    98% of the rendering problems are related code.

    Use the W3C validation service and fix the errors reported.

    The W3C Markup Validation Service

    I see a few problems.

    #1 you use a strict doc type.  Transitional provision might work better.

    #2 Align is invalid code. Use CSS.

    #3 table height is invalid code.

    Nancy O.

  • Slide show does not let me drag to scroll down on an ipad.

    We have built the site Adobe Muse CC 2014 and have created a mobile version, but not a version of the tablet. When we discovered the site on a Tablet is great but when you try to hit to swipe to scroll down, and your finger is in the middle of the banner slide show, it does not move. You can use the scrollbar on the side (which is invisible on the ipad), but a lot of people can't do that.

    Site Web is currently here for you to try: Taste Ayrshire - home

    Are there solutions? I HAV tried other forums and found nothing that helps.

    Appointed to the Muse CC 2014 and used a composition called presentation instead of a slideshow.

    Uncheck 'Activate the blow' and 'scroll effects' tab uncheck motion as shown above in the image (highlighted in red).

    It seems to work how I wanted it.

  • Slide show does not not on Firefox. Other browsers ok. (Muse CC)

    Hello. I had a site which worked perfectly, and now that I have installed Muse CC homepage slideshow does not work in Firefox. I tested it in Safari and Googl Chrome and it works very well on these, just not Firefox. I also tried to export the site in my browser (Firefox) and it works fine there too. It's just at the point where I'll live with it. I tried to download all the files to new cae too something become corrupt. No success yet. Any help would be great. Thank you.

    This page and slide show work well for me on Firefox. I can have you try to do a 'hard' on the page reload? To do this, you can press Ctrl/Cmd + Shift + R. This will force your browser to dispel all the resources that have been cached and redownload everything from the server. See if that helps.

    If that doesn't help, can you describe what exactly you see, and what version of Firefox you have?

  • Beginner problems: the Images not appearing and slide show does not

    I'll eventually add iframes so that I can have images displayed during audio playback. In the meantime, I have a problem just get the images to show (it works fine in Safari, but nothing else). Even if when I validated the page and am told there is no problem, even the image as part of the screen is broken. This is problem no. 1. The other problem has to do with the show, which does not work, but instead displays all images one after the other.

    Any help will be greatly appreciated; I am a beginner and I have the impression that the answer to these problems - especially No. 1 - are incredibly simple. Here is a link to an example page that shows these problems.

    Thanks in advance for any help you can provide!

    None of your include files are present on your server:

    Spry-UI-1.7/css/SpryImageSlideShow.css"rel ="stylesheet"type ="text/css"/ >

    Check the filelinks and also the files / folders are case sensitive on most of the servers.

  • slide show does not work when published

    I published my first site of Muse and it's great & works perfectly, except the custom slide show a shot.

    I downloaded, and then reuploaded my files of script and it still does not work. Its hosted on a non - BC server.

    Any ideas?

    Please refer to the suggestions in the following topic:

    My site does not work when I download on my Web host, but it's good in the preview. How can I fix it?

    http://forums.Adobe.com/message/4300529#4300529

    If you are sure that your files are uploaded properly and in the correct locations, it is likely a problem of permissions that relate to your scripts directory/files (suggestion #2).

  • EPS boxes white showing does not Up INDD CS5

    It's sort of lame, but I'm still curious...

    I have a file in Illustrator eps (CS4) had black and white forms, text, etc. (very simple), however when I placed the eps file in InDesign (CS5), white box showed no upward. There is a black outline around the box that appears, however, the white does not appear. I went back and drew a new box white, re-mix, it and new white box appeared. No idea why the original file would not have uttered by correctly?

    (PS... I am using Windows)

    Thank you!

    Most likely, you drew a filled black frame filling was created for overprinting. Then you changed the filling to white, but did not fill to no overprint.

    (edit - Bob beat me to it.)

  • M1217nfw: m1217nfw showing does not like scanner on win 8.1

    Hello!

    I have the HP LaserJet Pro1217nfw. It is installed on my desktop PC which runs on Windows 7 and is part of a network of wirelness. I have no problem to access all the features on the desktop to make it work perfectly well there.

    The problem is with my tablet, the Surface Pro 2. It is connected to the printer via the network and has installed on it to update printer drivers. Its operating system is 64-bit Windows of 8.1. It can connect to the printer and print documents very well, however, he fails to recognize is as a scanner. No program, even not the HP all-in-One or HP scanning and Capture apps, don't recognize the functions scanner. All of them see a printer, but nothing more. It is not also recognize it as a fax device, but I do not use Fax if it is less of a problem. I mention only that she could be part of the question, but I'm only interested in scanning.

    There is another parameter, the configuration or step I'm missing? Or is there a compatibility issue that I'm not aware of (and somehow affects only the scanner/fax)?

    Again, I want to emphasize that it prints from the Tablet without problem. But my Tablet does not recognize it as a scan.

    I apologize if a problem like this has been posted before. I spent the last hour trying to Google answers both on WIndows and HP but have not found anything that really addressed this type of issue

    Thank you for your time and help!

    Thanks for providing this information verenthis .

    I see that you have just problems with scanning and faxing being recognized on the Surface Pro 2. The office is very well.
    I'd love to help you.

    Download and run the Print and Scan doctor. It will diagnose the problem and could solve it automatically. http://www.hp.com/go/tools > using HP diagnostic tools for printers under Windows HP.

    What were the results when you ran the Print and Scan Doctor? (she print or scan, error messages)

    If you need help, let me know.
    Please enter it in detail if you still have questions, so I can help you better.

    Have a great day!
    Thank you.

  • Windows 7 wallpaper slide show does not not at startup

    Hi guys, I have a problem with my desktop background is no longer automatically using the slide show.

    It works fine if I go in customize / wallpaper slide show / re select all UN ticked the box in the image - save money-changers. Then, after a re boot, all photos are once more a tic tac fact & the slide show function not working anymore... until of course I repeat part 1...
    I tried to go to C:\Users\***my account * removed \AppData\Roaming\Microsoft\Windows\Themes and slideshow.ini and the TranscodedWallpaper.jpg. Closing the computer and restart but that did not help.
    I also tried this
    Type modify power management in the Search box, and then click change power management.
    Click change advanced power settings.
    Select Settings wallpaper available in -> slide show.

    Any help on this issue.
    It is a desktop PC computer, not a laptop so I was skeptical about working in the 1st place. Help please anyone?

    I found the problem, it was a programe called 3rd party Windows App wallpaper, which I must have acidently let it install on my OS... things pretty darn sneaky

  • Windows Media Player duplicate songs shows, does not show album titles or art of Seagate NAS Media Server

    I just bought a Seagate BlackArmor NAS 110, copied my music to her collection (a big bunch of WMA and MP3 files) and activated the press service that would allow my music to be listened traveled with other DLNA devices.

    I then pulled up to my Windows 7 laptop and opened Windows Media Player. The NAS media appeared immediately. I clicked on "The Album->" under the name of server. Here is what I get:

    -All photos are displayed in the list

    -No album art

    -L' artist album appears usually (but), instead of the title of the album

    -Some albums are displayed with duplicates (2 or even 3 copies) of each track

    What happens here? Is there a problem with the Seagate DLNA implementation? Windows Media Player is getting confused somehow?

    Reference:

    http://www.Seagate.com/www/products/external/BlackArmor/blackarmor_nas_110

    Hello

    ·        Have you tried to connect the Seagate BlackArmor NAS (Network Attached Storage) 110 on another computer and checked display it music files?

    To delete duplicate entries, click on another tab of feature in the Player (for example the current playback), then library.

    If this does not remove duplicates from your library, you can add it to the library of the computer search dialog box to analyze a file on your computer the entries double invalid pointing. The player will remove invalid entries in your library that point to files that no longer exist in the folder.
     
    Method 1:

    To use the Add to library dialog box search for computers.

    1. start Windows Media Player.

    2. press F3 on your keyboard to open Add to the library of the computer search dialog box.

    3. click on the Browse button to locate the file on your computer so that your library contains invalid entries. Specify the location of the folder in the box look in.

    If you are not sure what duplicate in your library entry is not valid, you can add a path column to display in your library.

    4. specify the folder on your computer that matches the path invalid file displayed in your library.
    Click on the Search button.

    The player will search for digital media files and playlists in the folder that you specify and remove invalid entries in your library that point to files that no longer exist in the folder. If not valid in double entries point to other folders on your computer, repeat this procedure, specify a different folder every time.
     
    If only a small number of duplicate entries exist, you can delete those invalid manually by double-clicking the invalid entry and then clicking on delete.
     
    If you have a large number of entries in doubles in your library (or if your library is duplicated), it might be better to create a new library.

    See the article mentioned below.

    Getting started-Windows Media Player

    http://Windows.Microsoft.com/en-us/Windows7/getting-started-with-Windows-Media-Player

    Method 2:

    You can delete the Windows Media Player databaseand check.

    1. exit Windows Media Player.

    2. for Windows 7: click Start, run, %LOCALAPPDATA%\Microsoft\Media Player and then click on OK.

    3. Select all the files in the folder, and then click delete on the file menu.

    Note: You don't have to remove the folders that are in this folder.

    4. restart Windows Media Player.

    Note Windows Media Player automatically rebuilds the database.

    Method 3:

    Erase Windows Media Player database cache filesand see if that solves the problem.

    1. exit Windows Media Player.

    2. If you are running Windows 7, click Start, run, % LOCALAPPDATA%\Microsoft, and then click OK.

    3 select the folder Media Player , and then click delete on the file menu.

    4. restart Windows Media Player.

    Note: Windows Media Player automatically rebuilds the database.

    For more information, see the article mentioned below.

    Windows Media Player library: frequently asked questions

    http://Windows.Microsoft.com/en-us/Windows-Vista/Windows-Media-Player-library-frequently-asked-questions

    Method 4:

    How can I prevent double or invalid entries to be added to my library when I play music files?

    When you move digital media files on your computer, the file name and file path information remain unchanged in your library. Then when you select a file to play to its new location, a new entry is created in your library if you select the option automatically added to your library when played. As a result, your library can quickly contain a large number of entries, duplicate or invalid.

    To prevent it be automatically added to your library of music files

    1. in Windows Media Player, click the Tools menu, Options.

    2. on the Player tab, clear music to add to the library when played check box.

    Thanks and regards.

    Thahaseena M
    Microsoft Answers Support Engineer.
    Visit our Microsoft answers feedback Forum and let us know what you think.

Maybe you are looking for

  • BitDefender 2012 guard remove firefox.exe like a virus.

    I downloaded the latest Firefox almost ten times, but each time, he is trying to install, I get a notification that firefox.exe has been removed because it has "Gen.Trojan.Heur.JP.xu2@aaS1JFfi". Even when I disable security during the download and ma

  • M9X68AV - HP ENVY 17 t-n100: My Mute button light Don't Come On... but Mute function work

    I see other people are having this same problem.  Me you can point you in the right direction to solve this problem. I had a problem with "display driver stopped responding and has recovered.  Display driver Intel HD Graphics Drivers for Windows 8 (R

  • Do not synchronize contacts

    Hello I have a problem to sync contacts from my iPhone, I have more than 500 contacts but in iCloud.com, I see that the less than 100, can someone help me with this problem? Thank you very much felipebm

  • ERazer X 700-problem start

    I have an Erazer X 700. On startup, I get 3 long beeps, 1 short beep, 3 long beeps and 1 short beep. Nothing happens. It is not make every start, but it becomes more common. Any ideas on what is the problem? Mod edit: System model added to the front

  • How can I get rid of the 'AVG' security search whenever I go on the net?

    I made a schoolboy error today and now whenever I go to the net, instead of my usual start page I now get security search 'AVG', which I don't want. I deleted all the progs but it still keeps appearing I I want to get rid of it but am at a loss as ho