Problem with apex_item.checkbox

Dear friends,

I m create a checkbox in interactive report through the query below.

Select apex_item.checkbox(1,EMPNO,'UNCHECKED') "', ENAME from EMP '"

But the result is < input type = "checkbox" name = "f01" value "7369" UNCHECKED = / > instead of the check box.

I use apex 4.1 with oracle 10g, considering that this query works perfectly in the apex 3.2

Can any1 please help me about this?

Concerning
Kamran

Hello

Go change your report and then change this column. Change ' display as ', 'report type Column.

Kind regards
Jari

http://dbswh.webhop.NET/dbswh/f?p=blog:Home:0

Tags: Database

Similar Questions

  • Problem with the checkbox and 'if' statement 'else if '.

    Hi, I had something like this:

    if (this.rawValue=="0" ){
      app.alert("0");
      this.resolveNode("Circle1").presence = "hidden";
      this.resolveNode("cross").presence = "visible";
     }  
    
    
    else if (this.rawValue=="1"){
      app.alert("1");
      this.resolveNode("Circle1").presence = "visible";
      this.resolveNode("cross").presence = "hidden";
      }
    
    else{
      app.alert("2");
       this.resolveNode("Circle1").presence = "hidden";
      this.resolveNode("cross").presence = "hidden";
     }
    

    I put a default position on the neutral State. The values are default: on = 1, off = 0, neutral = 2.

    When I'm clicking my button to check it works only 'market' (1) and (2) State "neutral." 'off' State does not work and I do not know why.

    Please help me with this.

    Hello

    Here is the form to the you: https://acrobat.com/#d=qiBnkcpRnPWxA5hokFXvQw.

    I shook the script, but it wasn't the main problem. The issue was that the box is on the Master Page and had a default value of the neutral. Some objects on the Master Page, as with the values by defect and buttons, checkboxes can behave badly when the form is reparqué (layout: ready event).

    If you take a look at the form, you will see the objects on the design Page behave as expected. However, similar objects on the Master Page by default returns every time that the layout event: loan fires. It has already been noted with Adobe.

    I recommend that you move the objects in a design Page or perhaps use a drop-down list instead of the check box.

    Niall

  • Add lines to the slot table with apex_item.checkbox form?

    Hello

    I created a data manipulation process to add a line in a tabular presentation. The problem is that I have a few boxes and when I click on the button to call the procedure for adding line is not
    create one of the only text fields. Is anyway for me to create the checkboxes in this way?

    Thanks in advance!

    Hello

    Take a look on Re: Add a line in the detail table when the checkbox is enabled on a table of master report clone an entire line so it should include check boxes. Just make sure that ypu run updateInputs() or something similar to make sure that all the boxes have unique attributes "name".

    Andy

  • Problem with the checkbox

    I created a form in Acrobat. There are two checkboxes next to each other. When you check one, the other also automatically checks. They are supposed to be either / or options.

    How can I change this?

    Thank you

    totallockout

    Make sure they have the different export value.

  • problem of apex_item. CheckBox

    Hi all:

    I have a problem to add a checkbox control to my report, I use the api apex_item.checkbox. I've seen many examples of how do and I tried different ways, but when I run the report does not display the box, it seems * < input type = "checkbox" name = "f01" value = "1" / > *.

    I think I'm doing something wrong, but I can't see it.


    The SQL I use is this:
    SELECT     apex_item.checkbox(1,ca.cod_caso) checkbox,
               ca.cod_caso,
               ca.codigo_alterno,
               ca.descripcion desc_caso,
               cl.nombres_apellidos cliente,
               SUM (aca.duracion / 60) duracion,
               SUM (aca.valor) valor
        FROM   act_caso ca, act_nombre_cliente cl, act_actividad_caso aca
       WHERE       ca.cod_cliente = cl.cod_cliente
               AND ca.cod_caso = aca.cod_caso
               AND aca.fecha >= '01-MAY-2011'
               AND aca.cod_prefactura IS NULL
    GROUP BY   apex_item.checkbox(1,ca.cod_caso),
               ca.cod_caso,
               ca.codigo_alterno,
               ca.descripcion,
               cl.nombres_apellidos
    I m using Apex 4.0.2.00.08 and Oracle XE 11 g.

    concerning


    Gerard

    In the attributes of the report, change the column definition. Change the Type of display to Standard report column.

  • Problem with the value of the checkbox and app.settings.getSetting)

    Hello everyone.

    I have a problem with is settings saved for checkbox.

    Saved settings does not apply on the value of the checkbox.

    It's strange, but it always 'true '.

    Here is piece of code:

    checkMe = 11;    //any value for the first time running
    
    
    if (app.settings.haveSetting("savea", "chck")) {                            
                          checkMe = app.settings.getSetting("savea", "chck");  // get saved value, else 11
                          alert("checkMe = "+checkMe)
                            }
                        if(checkMe == 11){
                            checkMe= false;   //if there is no saved settings, checkbox value will be false/ unchecked
                            alert("You run this script first time, so manual value will be 'false'")
                            }else{
                                checkMe = app.settings.getSetting("savea", "chck");     // if saved settings exist, get true or false
                            }
         alert("Yes, checkMe will = "+checkMe)        
        
        
    win.checkPanel.chkOne.value = checkMe;  /// checkbox value will equal saved checkMe
    
    var fff = win.checkPanel.chkOne.value;  // string for alert
     alert("aha! but checkbox value is  = " +fff+ "\n Why so?")     // here we`ve got always "true"
    
    
    
    
    win.checkPanel.chkOne.onClick  = function () {
            
        var path11 = win.checkPanel.chkOne.value;  //  checkbox value to variable
        app.settings.saveSetting("savea", "chck", path11);  //saving checkbox value
        alert("Saved this value - " + app.settings.getSetting("savea", "chck"))
              }
    
    

    win.checkPanel.chkOne.value is always true.

    Can anyone exmplain why and how to get rid of this static value?

    P.S. just in case, here's the complete code:

    function mainFun() 
    {
    
    
        this.windowRef = null;
    }
    
    
    
    
    mainFun.prototype.run = function()
    {
        
        /*----- UI -----*/
              var retval = true;
              var win = new Window("palette", "Check option", [150, 150, 460, 455]);
              this.windowRef = win;
    
    
        
              win.checkPanel = win.add("panel", [25, 150, 285, 265], "Checkbox");
              win.checkPanel.chkOne = win.checkPanel.add("checkbox", [10, 15, 125, 35], "Checkbox One");
              //win.checkPanel.chkTxtOne = win.checkPanel.add('edittext', [140, 15, 230, 35], '');
    
    
         win.quitBtn = win.add("button", [110,275,200,295], "Close");
    
    
    checkMe = 11;    //any value for the first time running
    
    
    if (app.settings.haveSetting("savea", "chck")) {                            
                          checkMe = app.settings.getSetting("savea", "chck");  // get saved value, else 11
                          alert("checkMe = "+checkMe)
                            }
                        if(checkMe == 11){
                            checkMe= false;   //if there is no saved settings, checkbox value will be false/ unchecked
                            alert("You run this script first time, so manual value will be 'false'")
                            }else{
                                checkMe = app.settings.getSetting("savea", "chck");     // if saved settings exist, get true or false
                            }
         alert("Yes, checkMe will = "+checkMe)        
        
        
    win.checkPanel.chkOne.value = checkMe;  /// checkbox value will equal saved checkMe
    
    var fff = win.checkPanel.chkOne.value;  // string for alert
     alert("aha! but checkbox value is  = " +fff+ "\n Why so?")     // here we`ve got always "true"
    
    
    
    
    win.checkPanel.chkOne.onClick  = function () {
            
        var path11 = win.checkPanel.chkOne.value;  //  checkbox value to variable
        app.settings.saveSetting("savea", "chck", path11);  //saving checkbox value
        alert("Saved this value - " + app.settings.getSetting("savea", "chck"))
              }
    
    
    
    
    
    
              win.quitBtn.onClick = function() { 
                  win.close(); 
              }
    
    
        win.center();
              win.show();
    
    
              return retval;
      
    }
    
    
    if(typeof(mainFun_unitTest) == "undefined") {
        new mainFun().run();
    }
    
    

    A quick glance, I'd say it's because when the pref that is saved as a string, so after having read it you must control if (checkMe == 'true') rather than check it out as a Boolean value.

  • problem with checkbox custom when you use the loadVariablesNum

    I have several cutomized box that he can select or deselect and I have a button to determine which of the boxes is selected and through this button, I spent the variable to loadVariablesNum corresponding to which of the boxes is selected.

    ==================================================

    the code in the button to determine which of the boxes is selected:

    ==================================================

    If (chk1.mark1._visible = true) {}
    trace ("31");
    loadVariablesNum ("http://url?uid=" + _root.uid + "& years = 31", 2);
    }
    If (chk2.mark2._visible = true) {}
    trace ("32");
    loadVariablesNum ("http://url?uid=" + _root.uid + "& years = 32", 2);
    }
    If (chk3.mark3._visible = true) {}
    trace ("33");
    loadVariablesNum ("http://url?uid=" + _root.uid + "& years = 33", 2);
    }
    If (chk4.mark4._visible = true) {}
    trace ("34");
    loadVariablesNum ("http://url?uid=" + _root.uid + "& years = 34", 2);
    }
    If (chk5.mark5._visible = true) {}
    trace ("35");
    loadVariablesNum ("http://url?uid=" + _root.uid + "& years = 35", 2);
    }

    I'm assuming that you have a problem with it not working.  A problem with it is that when you make the comparison conditionals, you use == to see if things are equal, not =

    In addition, not a mistake, but to less treatment works... you must use "elsewhere" so that once the program finds a match it does not all the remaining conditions, which would make you currently.

    If (true chk1.mark1._visible == ) {}
    trace ("31");
    loadVariablesNum ("http://url?uid="+ _root.uid +"& years = 31", 2);
    } Else if (chk2.mark2._visible == true) {}
    trace ("32");
    loadVariablesNum ("http://url?uid="+ _root.uid +"& years = 32", 2);
    } ElseIf...

    In addition, the solution of the error can be simplified in your case because you are using Boolean values (true/false).  When a conditional tests something that he's just looking to see if the value it evaluates as true or false, so your conditional statements have not even the 'is true ".

    If {(chk1.mark1._visible)
    trace ("31");
    loadVariablesNum ("http://url?uid="+ _root.uid +"& years = 31", 2);
    } Else if (chk2.mark2._visible) {}
    trace ("32");
    loadVariablesNum ("http://url?uid="+ _root.uid +"& years = 32", 2);
    } ElseIf...

    One last thing... it seems that you have created unnecessarily box different symbols where you might have used the same as that for all of them.  I say this because to see how you have different brand # for each of them.   Just assign the same name to a different instance...

    If {(chk1.mark._visible)
    trace ("31");
    loadVariablesNum ("http://url?uid="+ _root.uid +"& years = 31", 2);
    } Else if (chk2.mark._visible) {}
    trace ("32");

    This example is used to emphasize the difference between symbols and instances.  The same symbol (such as a radio button or your craft boxes) can be reused multiple times by using the names of different instances for each instance.  You can then assign unique values to the properties of each instance

  • Problem with APEX_APPLICATION. G_F02 (i)...

    Hello

    I'm having problems with my report. I put an extra column with checkboxes in my report. The meaning of these checkboxes must send an e-mail to all employees who are activated. And it works. He sends me emails on the right. But I put data in my email that comes from the report itself. I also have a column with a list of selection based on a lov with the language of the employee.

    APEX_ITEM. SELECT_LIST_FROM_LOV (4, "TBL_WERKNEMERS". "LANGUAGEID", "lov_taalkeuze") 'LANGUAGE' "

    In the report, the employee's language is automatically selected in the select list and it works too. (I need a select list so that the user can change the language, if necessary, otherwise I could get it to my database). But when I want to my value to determine the language to use, it is not always fair. When I select all ranks, it works. But when I check for example that the first and the fifth line, then the first language is correct, but for the fifth line, it takes the value of the second row in my report (which has not been verified).
    That is how I call these values

    BECAUSE me in 1.APEX_APPLICATION. G_F01. COUNTING LOOP
    SELECT v_emailid FROM TBL_EMAIL where report = 'Test' and taalid = APEX_APPLICATION emailid. G_F04 (i);
    END LOOP;

    So I think that the values in my APEX_APPLICATION. G_F01 are right, because I get emails on the right. But the APEX_APPLICATION values. G_F02, APEX_APPLICATION. G_F03, APEX_APPLICATION. G_F04,... are not because I think that all the values are stored when I loop through them the value according to the variable 'i' is returned.
    Someone know how I can get the right value?

    Any help would be greatly appreciated.

    Bram.

    Hello

    The only way I can see that this work is have hidden instances of the EMPNO (or whatever the column that contains the user ID) and check these against the elements checked - the value of the check boxes would also EMPNO.

    For example: [http://apex.oracle.com/pls/otn/f?p=267:97]

    The SQL code for this is:

    SELECT EMPNO,
    ENAME,
    APEX_ITEM.HIDDEN(1, EMPNO) || APEX_ITEM.HIDDEN(2, ENAME) || APEX_ITEM.CHECKBOX(3, EMPNO) TEST
    FROM V_EMP
    

    ENAME and EMPNO are hidden as I want to use in the code in the process.

    and the code of the process is:

    DECLARE
     vSELECTED VARCHAR2(1000);
    BEGIN
     vSELECTED := ':';
     FOR x IN 1..APEX_APPLICATION.G_F03.COUNT
     LOOP
      FOR y IN 1..APEX_APPLICATION.G_F01.COUNT
      LOOP
       IF APEX_APPLICATION.G_F03(x) = APEX_APPLICATION.G_F01(y) THEN
        vSELECTED := vSELECTED || APEX_APPLICATION.G_F02(y) || ':';
       END IF;
      END LOOP;
     END LOOP;
     :P97_SELECTED := vSELECTED;
    END;
    

    P97_SELECTED shows just the ENAME values for checked items. The code loops through the checkboxes and then loops through the hidden elements of EMPNO - when it finds a match, it creates a string of the values of ENAME.

    Andy

  • problems with the built-in spellchecker to ff 23

    I find and have checked through these forums, that the text boxes on web sites that are a single line are ignored by the spell checker. I'm working on a Web site, no I don't administer it, which has an input field which is a single line. This field is the only one I have problems with because it does not check the spelling. Anyone know of a way to adjust or replace the spellchecker, so he'll see this area as well. Thanks in advance.

    Have you attempted to set the pref 2?

    That should give you a checkbox "Check spelling" and a menu of languages in the context menu for a single line entry field.

  • Problems with latest updates Windows (KB) do not install & repeated notifications via the taskbar icon

    Hello everyone,

    In my view, there are many people who seem to have a similar problem to mine, although I was unable to find an answer to one of my questions in this post.

    Description of the problem:

    Although my Windows Update is defined on download & install updates during the night hours every day, the latest updates, KB26333880, KB2572073and KB2518864 are not be installed.  I went to the Windows Update site to check my editing history.  He showed the green/white checkmarks next to all 3 updates.  The record also showed that updates have been tempted 3 times during the night.  After clicking on the button "Express" on the Home Page, the results show 3 above updates, but show "0 bytes', then '0 download time. '

    To me, this indicates that there is no update to download, despite the yellow Shield of Notification of update continues to appear in the taskbar.

    Corrective measures attempted:

    1. I tried to download / install twice unsuccessfully using IE8 and FF (including restarting the computer).

    2. download & run the program MS Fixitattempted, but received a message which read, "an unexpected error has occurred, please try again later." No. error code has seen with this message.  (I could RECORD the program on my desktop... just couldn't run the establishment).

    3 tried to search for the presence of these updates using start > run > %windir%KB###.log (where the # is the individual number of update KB).  Every time - a message appears indicating that the file is not found.

    4 looked at the Add/Remove Programs list (with the Show updates checkbox checked).  No updates KB mentioned above could be found.

    5 with SAS, MBAMand Outpost Security Suite Pro scans revealed no malware/security issues.  (SAS and MBAM are used only as scanners on request).

    This problem with the updates does not download & repeated notifications being indicated in the taskbar has occurred many times before.  On this occasion, I called Microsoft several times before finally, my computer remotely accessible support person and spent about 50 minutes to fix the problem.

    (Also, it is noted that almost every support person I spoke with has always tried to tell me that MS is not help with the problem of this type.)  I had to be rather several in my reply... tell the person that MS IS in fact provide assistance free security-related Windows updates.  They now provide free assistance is unknown). Besides... I have more a phone number for States anyway.

    My questions to the community:

    1. is it possible to download & install these 3 updates?

    2 is there an explanation as to why MS Fixit program will not be installed, and if so, are there certain corrective measures I can take which will allow me to download & run this program?

    System Specs:

    Desktop Dell Dimension 3000 Tower;  WIN XP Pro SP3.  2 GB OF RAM;  3.00 gHz CPU;  Outpost Security Suite Pro.  MBAM Pro (on request only).  SAS (on request only);  SpywareBlaster;  IE8 & FF

    Thank you for your time and help, review!

    Pete C.

    See the RESPONSE message in this thread-online http://answers.microsoft.com/en-us/windows/forum/windows_xp-windows_update/security-updates-kb2633880-kb2633870-are-not-being/49ed2fe1-6782-4498-814a-ccfa6ec1dfc9

  • Why can't I save a file changed due to problems with the properties?

    Vista Home Premium 64-bit

    I sent myself a JPG file, taken by a camera in the email.

    I backed up, & then tried to turn it using Windows Photo Gallery.

    He says: 'cannot save this image due to a problem with the properties of the file.'.

    Sometimes (once, so far), it then says 'Changes to the labels, legend, side, or date taken could not be saved in this file.'.

    When I try the same thing in Windows Explorer, it says "you cannot rotate this image.  The file may be used or open in another program or file or folder can be read-onlly. ».

    Properties file shows the file read-only.

    Unchecking that and apply or OK has no effect.

    Ditto for the folder.

    But looking around, I see that (sometimes (?)) other records are also marked read-only, but are not their files.

    When I produce-> properties-> details-> ' properties delete and personal information "->" create a copy with all deleted properties ", he says: 'an error occurred when writing the property 'Altitude' in the file <....>.'.

    I can't find another way to try to remove all the ((maybe) offend them) properties.

    Hello PMH232!

    Thanks for the return of the response.  Below, I have included a few steps to try.  When you fill out these test in Windows Explorer and see if you can rotate the images.

    1. click on the start menu.
    2. click on computer.
    3. right click on the drive that gives you trouble.
    4. Select Properties.
    5. click on the Security tab.
    6. click on the Edit button where it says "to change permissions, click on change."
    7. in the "group or user names", click on the user you want to change.

    8. in the area 'Permissions for the users', click the checkbox to allow full control.
    9. click on ok.

    Please let us know status.

  • Problem with the playback of an audio .asx file in Windows Media Player.

    Hello

    I'm not able to play an audio .asx file in Windows Media Player on the Windows Vista-based computer.

    I get the following in a pop-up error message:

    Windows Media Player cannot play the file because the specified protocol is not supported. If you typed a URL in the open URL dialog box, try using a different transport protocol (for example, "http:" or "rtsp:").

    Help, please.

    My email address is * address email is removed from the privacy *

    Thank you.

    -HimAlandi

    Hello

     
    1. facing this problem with the .asx format?
    2. you remember to make changes to the system?
    3. where is the file?
     
    Error message: "Windows Media Player cannot play the file because the specified protocol is not supported. If you typed a URL in the open URL dialog box, try using a different transport protocol (for example, "http:" or "rtsp:"). »
    Windows Media Player cannot play the file because the specified protocol is not supported by the player or not supported by the server.
    If you encountered this error by clicking a link on a Web page, the link isn't valid.
    If you encountered this error by typing a URL in the open URL dialog, try opening the file using a different transport protocol (for example, "http:" or "rtsp:").
    The following is a list of protocols supported by the player and the correct URL syntax examples:

    (a) MMS://serveur/nom_fichier (for example, a file with a .wma, .wmv, .asf, or .mp3 extension)
    (b) http://server/filename
    (c) rtsp://server/filename
    (d) mms://server/sami.asf? SAMI = http://server/sami/sami_demo.smi (SAMI file)
    If the Player supports the protocol you used in the URL and you can't always read the content, check that the drive is configured to use all of its supported protocols.
     
    To configure the protocol settings
    (a) in the Player Windows Media, on the Tools menu, click Options.
    (b) in the Options dialog box, on the tab of network in the Streaming protocols area, select all the checkboxes (Multicast, UDP, TCP, and HTTP) Protocol, so that a check mark appears in each.
    (c) note that the supported protocols can be used only to distribute digital media files. Windows Media Player cannot be used as a browser.
    If the fixes above don't work, you can rename the folder of information network for the drive so that it can rebuild its information network files after restarting it.
     
    To rename the folder of information networking of player.

    (a) close Windows Media Player. (To do this, on the file menu, click on exit).
    (b) to make the changes that you will be able to see the hidden files and folders
    Show hidden files.
    http://Windows.Microsoft.com/en-us/Windows-Vista/Show-hidden-files
    (c) click Start, and then click computer.
    (d) open the disc drive Local (c :)), open to users.
    (d) open your user account.
    (e) open %APPDATA%\microsoft\windows\sendto and open Local.
    (f) open Microsoft and open Windows Media.
    (g) click on the file and rename it.
    (h) if the file is name12.0, edit as file name as old 12.
    (i) restart the computer and check
  • Problem with the volume of a new 7 Slate

    I'll put up a new slate of 7 and I have a problem with the sound.  I have all the sliders to the max value, but any video or app plays at a very low volume on the builtin speakers. A trial has been with FIOS app that allows me to stream TV shows. I have to hold the Tablet so the speakers are right next to my ear to make the same concersations on the show and it's barely...

    Am I missing something?

    How to make your slate with audio files simply by using the application to play music?  And have you tried to play a trailer of the game of Google?  Type right on a movie title and play the trailer by typing on the > arrow.

    What if you use headphones?

    Do you have ear system sounds?  Go to settings > sounds > Touch seems to be there where there is a checkbox on the right whether Touch sounds are on or off.

    Speakers of slate are not all that, but they do not produce a sound that is strong enough to listen to the TV shows and movies.  If you can not enough volume of them with other applications such as the music plays, there may be a hardware problem.

    A few other suggestions... try to restart it.  And back to headphones, try inserting a headphone plug in all the way and disconnected.

    _
    As a contributor of top of page on the Forums of media consumer, HP, HP gives me access to the slate of 7 free of charge so I can better answer questions on the Forum.

  • Problem with the PC Backup on the external DRIVE on the network drive home.

    I made backups of my laptop wirelessly through my router to my connecting external hard drive attached to my desktop, when I used Microsoft OneCare. Since then, OneCare is being abandoned, I decided to go to the basics of Microsoft (MS). Unfortunately, Ms Essentials doesn't have the features of OneCare. I try to perform a backup using the backup and Restore Center, however, I get an error message when I put backup settings to location network - error code: 0 x 80070534, no mapping between account names and security IDS was done... the results. Is there a KB or a fix for this problem? I've looked everywhere for answers and keep looking, however, I have found no solid solution (especially scams, i.e. pc scanners and fixers of registry error). How is it that I could make a backup without problem with OneCare (that I have no more:{{class=fontblue}} {.}) Now I try to do through the Center backup and restore, the backup does not work! It makes no sense at all!  I have Windows OS: Vista Home Premium 32-bit 2 Gb RAM SP2; HARD drive external: Maxtor 3200 (320Gb) hdd personal

    Thanks, I found the problem. I had to uncheck the ReadOnly property on the folder that I traced to use for my backup location on my HARD drive. In truth, the property read-only (checkbox) is not checked, it is filled (designates the system setting) with a green square in the box (on my Windows XP desktop). I'm sure that others have missed this little nuisance. It's cheating. I don't know how many times I looked at the folder that I use for my backups, forget to realize that the ReadOnly is the default setting for the file. I no longer get the error message: 0 x 80070534, no mapping between account names and security IDS was done. I can't believe it's just as simple as that! My backups work fine.

    Karena, R, thank you for your time and help in any way.

  • A problem with the accuracy of recall of synchronized calendar from my laptop to my windows phone 8 and vice versa.

    I just got a new laptop windows 8 and windows phone 8, hoping that what they say on the timing of them is true, and I'm so glad it's true, but there is a problem, and it is, whenever I have an entry in the calendar of my windows laptop 8, kit will be able to sync with my phone , but the other time and date. I even tried vice versa, but it still does not work.

    Hello

    Looks like there could be a problem with Microsoft you use, Account

    I suggest to log on another computer of Windows 8 using your Microsoft Account and make sure that you synchronize all the parameters. Once the settings are synchronized, you can create a new calendar event and check the problem in Windows phone. If you are faced with the same question, we can confirm that the problem is caused by Microsoft Account you use.

    You can run the Microsoft Account troubleshooting utility and check the results.

    http://go.Microsoft.com/fwlink/p/?LinkId=268424

    If the settings of date and time synced properly into the other computer, it might be due to the settings of date and time of your laptop or your Windows phone. You can synchronize the clock of your computer with a time server Internet. This means that your computer's clock is updated to match the clock on the time server, which can help ensure that your computer's clock is accurate. Your clock is usually updated once a week and must be connected to the Internet during synchronization to occur.

    a. start Panel.

    b. Select clock, language and region and then clicking on the Date and time.

    c. click on the Internet time tab and then click change settings. If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

    d. Select the checkbox next to the synchronize with a time server Internet, select a time server, and then click OK.

    Also check that you have set the same locale in the cell phone as well as location.

    Hope this information helps. Response with status so that we can help you.

Maybe you are looking for

  • All my modules do not work! Help, please!

    Today I turned on my computer and after FireFox starts, I realized that all my modules don't work at all! When I tried to check all have been properly installed and implemented market, but anyway, I didn't see their options in the Tools menu or the c

  • G7 notebook pc Pavilion: ram ungrading

    Hello there, my laptop has 4 GB of ram. I play mainly games on it and I want to upgrade to 8 GB ram, I checked that 4 GB of RAM split up to 1333 mhz 1600 and 1800. Should what I buy for better games but does not harm my computer? My laptop has 1333.

  • QOSMIO F10: works slowly--> upgrade RAM?

    Hello I have a qosmio f10 My laptop works generally slow. What do you think? I think that to put the ram from 512 to 1 GB or 2 GB. Do you know what is the price of the additional Rams? Thans all

  • Upgrade processor 550 HP

    Hi wondering if I can't upgrade my CPU on my laptop HP 550 Specifications of the computer: HP 550 Intel Celeron 530 @ 1.73 Ghz, 1 MB L2 Cache, 533 Mhz FSB speed. Socket 479 mPGA (according to CPU - Z) Windows XP Professional 1 GB OF RAM Intel GL960 C

  • Add to MT 9010 DVD burner with Blu - Ray burner as a second burner

    I am looking for a MT 9010 with a Blu - Ray combo burner. I also want to add a DVD burner as a second burner. Sales said that the system cannot be bought like that. Is it just the way they are sold, or it's physically impossible to add a second burne