Users do not select as long multi lists

Users hate long multi selection lists so I will try to find a simple solution to keep them happy. My users would rather type in a free text field that scroll a long list. I tried without success to use two solutions, I found posted on the web site of Dene Kubickek ApEx Solutions.

The first is "how to use tables V said. It looks like a great solution, but I can't understand how to implement it on a form. The example uses a SQL report. I would like my users to type comma-delimited names in a text box then onblur and onclick calls a function to validate the names that they typed in. I also intend using a contextual list they can use as a reference to check the spelling of the name of someones or possibly copy and paste from. I have seen the example on how to create a custom box pop up, but I can't understand how to use for multiselects. And yet once my users may not like having to select from a long list. I don't think I need a pop-up list of names in both cases be available as a reference.

The alternative which would be really slick is the use of "AJAX Auto Complete". Yet once the example is not configured to manage several items typed in the box. In my case, that would be the commas to names like Bob Smith, Jane Jackson, Jack Black. I would like to use this solution. Is it possible to modify the code to manage several items?

Thank you very much this forum, he saved me more than once. Elizabeth

One last thing, I really like how the popular tags on the bottom of this page to work. Is there a post of this code anywhere?

Hello

For AutoComplete, take a look at this thread-

Yahoo! AutoComplete widget

(there are quite a few other threads discuss Autocomplete here too).

Regarding labelling, look at Carl Backstroms sample application here-

http://Apex.Oracle.com/pls/OTN/f?p=11933:136

Hope this helps,

John.
--------------------------------------------
Blog: http://jes.blogs.shellprompt.net
Work: http://www.apex-evangelists.com
Author of Pro Application Express: http://tinyurl.com/3gu7cd

Tags: Database

Similar Questions

  • Script to check if the user selected item from downdown list or not

    I have a script that runs when the form user leaves a drop-down list object after you make a selection. I don't want the script runs if the drop-down list object is empty (the user does not have a selection). I need to create an if statement to test if the user makes a selection in the drop-down list. All the items in the drop-down list are 4 digits.  I prefer the stated case is in the Exit event. The following script is correct?

    If (dropdown1.isNull | dropdown1.rawValue.length! = 4) {}

    xfa.host.messageBox ("you must make a selection, the drop-down list name");

    }

    else {}

    set the script to execute here

    }

    It seems that your script is generally good, but you try to do something more in the message box? Did you mean to carry the name of the drop-down list in the title or as part of the message?

    If you are not allowing the custom entry, you only need the null control. Of course, we only talk about one millisecond, or to check the length of your string. So, you are not asking all devices to perform intense processing.

    If I were asked to do, this is what my script would look like.

    If you allow custom entries, you must specify what the problem is for the user.

  • Tabbed pages not changed during the selection of the TAB LIST

    Hi all

    I have a form that contains 15 tabs, 1 10 Tabs are dynamic (enabled with the new instance of the form depending on the configuration) and 11 to 15 are static tabs visible for all.

    My problem is when I am clicking on tabs iam able to switch tabs, but when I select the tab in the tab list , I don't go to the selected TAB.

    Ex: when I am in 1 TAB and select TAB15 on tab list my form remains in TAB1 and don't move not TAB 15

    Please give me a Solution.


    WHEN the PAGE of TABS CHANGE my code is

    DECLARE
    l_curr_rec NUMBER;
    BEGIN
    l_curr_rec: =: SYSTEM. CURSOR_RECORD;

    -Get the Page tabs at the top of the default page to the form
    SHOW_VIEW ('HDR_CANVAS_FIXED');
    : global p:System.NET.HttpWebResponse.headers: = GET_CANVAS_PROPERTY ('TAB_CANVAS', topmost_tab_page);

    IF(:GLOBAL.) HEADERS = "AS_REC_IMAGE") THEN


    SHOW_VIEW ('AS_REC_IMAGE');
    SET_VIEW_PROPERTY ('AS_REC_IMAGE', VISIBLE, PROPERTY_TRUE);

    SET_TAB_PAGE_PROPERTY ('AS_REC_IMAGE', ENABLED, PROPERTY_TRUE);

    GO_BLOCK ('AS_REC');

    -Hide the other canvases except the canvas price


    ELSIF(:GLOBAL.) HEADERS = "TRIM_REC_IMAGE") THEN


    SHOW_VIEW ('TRIM_REC_IMAGE');
    SET_VIEW_PROPERTY ('TRIM_REC_IMAGE', VISIBLE, PROPERTY_TRUE);

    SET_TAB_PAGE_PROPERTY ('TRIM_REC_IMAGE', ENABLED, PROPERTY_TRUE);

    GO_BLOCK ('TRIM_REC');

    -Hide the other canvases except the canvas price

    ELSIF(:GLOBAL.) HEADERS = "AS_SHIP_IMAGE") THEN

    SHOW_VIEW ('AS_SHIP_IMAGE');
    SET_VIEW_PROPERTY ('AS_SHIP_IMAGE', VISIBLE, PROPERTY_TRUE);

    SET_TAB_PAGE_PROPERTY ('AS_SHIP_IMAGE', ENABLED, PROPERTY_TRUE);
    GO_BLOCK ('AS_SHIP');

    -Hide the other canvases except the canvas price

    ELSIF(:GLOBAL.) HEADERS = "TRIM_SHIP_IMAGE") THEN

    SHOW_VIEW ('TRIM_SHIP_IMAGE');
    SET_VIEW_PROPERTY ('TRIM_SHIP_IMAGE', VISIBLE, PROPERTY_TRUE);

    SET_TAB_PAGE_PROPERTY ('TRIM_SHIP_IMAGE', ENABLED, PROPERTY_TRUE);

    GO_BLOCK ('TRIM_SHIP');

    -Hide the other canvases except the canvas price


    ELSIF(:GLOBAL.) HEADERS = 'EXTRA') THEN
    -Show export Web-


    SHOW_VIEW ('EXTRA');
    SET_VIEW_PROPERTY ('EXTRA', VISIBLE, PROPERTY_TRUE);

    SET_TAB_PAGE_PROPERTY ('EXTRA', ENABLED, PROPERTY_TRUE);
    GO_BLOCK ('EXTRA');

    -Hide the other canvases except the canvas price



    ON THE OTHER - DYNAMIC TABS
    -Hide all the other static canvases


    IF (: OVERALL.) HEADERS = "TC01") THEN
    GO_BLOCK ('TC01');

    ELSIF (: OVERALL.) HEADERS = "CT02") THEN
    GO_BLOCK ('CT02');

    ELSIF (: OVERALL.) HEADERS = "CT03") THEN
    GO_BLOCK ('CT03');

    ELSIF (: OVERALL.) HEADERS = "CT04") THEN
    GO_BLOCK ('CT04');

    ELSIF (: OVERALL.) HEADERS = "CT05") THEN
    GO_BLOCK ('CT05');

    ELSIF (: OVERALL.) HEADERS = "CT06") THEN
    GO_BLOCK ('CT06');

    ELSIF (: OVERALL.) HEADERS = "CT07") THEN
    GO_BLOCK ('CT07');

    ELSIF (: OVERALL.) HEADERS = "CT08") THEN
    GO_BLOCK ('CT08');

    ELSIF (: OVERALL.) HEADERS = "CT09") THEN
    GO_BLOCK ('CT09');

    ELSE - ELSIF (: OVERALL.) HEADERS = "TM10") THEN
    GO_BLOCK ('TM10');

    END IF;

    END IF;
    END;



    Thank you
    Durga Srinivas.

    Published by: DurgaSrinivas_886836 on December 3, 2012 20:12

    In your trigger, you do a SHOW_VIEW ("HDR_CANVAS_FIXED"); before selecting the: GLOBAL. Headers information. I don't know what is HDR_CANVAS_FIXED, but I wonder if it is what you ruin. What happens if you either comment out:

    DECLARE
      l_curr_rec     NUMBER;
    BEGIN
      l_curr_rec := :SYSTEM.CURSOR_RECORD;
    
      --Get the Top Default Tab Page for the Form
      --SHOW_VIEW ('HDR_CANVAS_FIXED'); /* <-------------------------------------------------------Comment it out */
      :global.headers := GET_CANVAS_PROPERTY ('TAB_CANVAS', topmost_tab_page);
    
      IF (:GLOBAL.HEADERS = 'AS_REC_IMAGE') THEN
        SHOW_VIEW ('AS_REC_IMAGE');
        .
        .
        .
    

    or if you have to move after the: GLOBAL. HEADERS:

    DECLARE
      l_curr_rec     NUMBER;
    BEGIN
      l_curr_rec := :SYSTEM.CURSOR_RECORD;
    
      --Get the Top Default Tab Page for the Form
      :global.headers := GET_CANVAS_PROPERTY ('TAB_CANVAS', topmost_tab_page);
      SHOW_VIEW ('HDR_CANVAS_FIXED'); /* <------------------------------------ Swap it with :global.headers */
    
      IF (:GLOBAL.HEADERS = 'AS_REC_IMAGE') THEN
        SHOW_VIEW ('AS_REC_IMAGE');
        SET_VIEW_PROPERTY ('AS_REC_IMAGE', VISIBLE, PROPERTY_TRUE);
        SET_TAB_PAGE_PROPERTY ('AS_REC_IMAGE', ENABLED, PROPERTY_TRUE);
        GO_BLOCK ('AS_REC');
      --Hide the other canvases except the Pricing Canvas
      ELSIF (:GLOBAL.HEADERS = 'TRIM_REC_IMAGE') THEN
        SHOW_VIEW ('TRIM_REC_IMAGE');
        .
        .
        .
    
  • The feature "Display list of web app points submitted by a user" is not available in the free trial version?

    The feature "Display list of web app points submitted by a user" is not available in the free trial version? I can see it in the tutorials but its not available when I am connected.

    It is just named differently now. You should be able to add the {module_webappscustomer} module through the Toolbox Modules in the web page editor window, as shown below. Please note that the webapps function is available only for sites webCommerce. Learn more about the available modules and usage in detail here - http://kb.worldsecuresystems.com/134/bc_1345.html?bc-partner#main_Web_App_Modules

    Thank you

    Vinayak

  • Questions not selectable answers in quiz slide for some users

    We have a training SCORM Captivate content published on our LMS (SAP Learning Solutions). Some users are unable to answer questions about the content. For these users, the answers are locked and can not be selected. In addition, don't seem not buttons validate and clear.

    The problem about 10% of our users.

    This training contains content and quiz slides slides.

    problem_quiz_not_functionnal.jpg

    The content is published in SCORM 1.2 (SWF + HTML) with Adobe Captivate 5.5. We had the same problem for some users with the previous version of this training content with Captivate 4.

    All users have the same settings:

    Flash Player 10.3.183.11

    Internet Explorer 6

    Microsoft Windows XP

    Place a button on the first or second slide you need the user to click to go forward with the course.  I've usually place it on a slide that gives an overview of what the module will be about.  Once the user has finished with the slide, they need to click on this button to continue in the content.  The user is not aware that this button has a fixed score and the FACT that it has a score means that Captivate believes that it is part of the questionnaire, which means the scope quiz begins at this time, the first question of the quiz.

    Yes, you click the button, go to properties > reports and select the check box to include in the questionnaire.

  • After you turn off the root of the directory utility user, I went back to the main screen and all other user accounts showed is no longer at the start, as they were before you enable the root user.  Help.  Please, I beg you.

    I have activated the user 'root '.  It was an attempt (for the sake of granddaughter age) to check its history since I am the administrator.  Realizing that this method was much more complicated than what I am capable of managing, I returned the utility program directory and disabled the user 'root '.  I thought that everything was ok, as I did not made anything while connected as user 'root '.  Instead, restart the computer, all users, including myself were no longer at the start.  The only point was a blank user name and password.  No picture.  No guest.  No user.  How to return those and I did something to cause this?

    Else you being logged in as root?

    Activation and deactivation, then root should not have caused that.

    Also, having allowed root is one of the ways you get a login screen showing only the name and the password.

    You should be able to type in your user name and password to connect.

    One time connected, check users & groups system prefs, Connection Options and make sure he's on the list of users. You will have to click on the padlock at the bottom to make changes.

  • Why all the users do not appear on the start screen?

    Our MacBook Pro has two users with administrator privileges. At the start, that a user is displayed. How the other user is on the device without going through the first users of connection and disconnection?

    If only a user will appear, how to change the user who first appears?

    You have activated the automatic connection?

    «System preferences > users and groups, select the "connection options" in the list on the left.»

    Unlock the control panel and disable the automatic connection if you want to start on the screen that allows you to choose a user to connect as.

    It is better for safety if you disable the automatic connection. I would also say that you do not work as an admin for 'everyday' tasks if you can help it.

  • Error message: the user profile service has no logon. Profile of user was not found.

    Just after that Microsoft updates yesterday we received the following message: the user profile service has no logon.  Profile of user was not found.

    The user is locked.  I tried the system restore, but the computer does not. I don't have a disk of Vista to re - install.  Peux-I re - install online?  I have the product key.

    Thank you

    Joe R.

    ·                        http://www.Vistax64.com/tutorials/130095-user-profile-service-failed-logon-user-profile-cannot-loaded.html

    See if the information in the above tutorial will help you.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://windowshelp.Microsoft.com/Windows/en-AU/help/769495bf-035C-4764-A538-c9b05c22001e1033.mspx

    Difficulty of a corrupted user profile

    After creating the profile, you can copy the files from the existing profile. You must have at least three user accounts on the computer to perform these operations, including the new account that you created.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://support.Microsoft.com/kb/947242

    A temporary profile is loaded after you connect to a Windows Vista-based system

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Vista recovery media obtain and/or use the Partition Recovery Vista on your computer to the factory settings .

    There is no Vista free download legal available.

    Contact your computer manufacturer and ask them to send a recovery disk/s Vista set.

    Normally, they do this for a cost of $ small.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    In addition, ask them if you have a recovery Partition on your computer/laptop to restore it to factory settings.

    See if a manual provided with the computer or go to the manufacturer's website, email or you can call for information on how to make a recovery.

    Normally, you have to press F10 or F11 at startup to start the recovery process...

    Another way I've seen on some models is press F8 and go to a list of startup options, and launch a recovery of standards of plant with it, by selecting the repair option.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Also ask them if it is possible to do the recovery disk/s since the Partition of recovery in case of hard drive failure or System Crash, when you are running correctly.

    They will tell you how to do this.

    Every computer manufacturer has their own way of making recovery disk/s.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Or borrow a good Microsoft Vista DVD (not Dell, HP, Acer, recovery disk/s etc).
    A good Vista DVD contains all versions of Vista.
    The product key determines which version of Vista is installed.

    There are 2 disks of Vista: one for 32-bit operating system, and one for 64-bit operating system.

    If install a cleaning is required with a good DVD of Vista (not HP, Dell recovery disks):

    At the startup/power on you should see at the bottom of the screen either F2 or DELETE, go to Setup/Bios or F12 for the Boot Menu

    Go to your Bios/Setup, or the Boot Menu at startup and change the Boot order to make the DVD/CD drive 1st in the boot order, then reboot with the disk in the drive.

    http://support.Microsoft.com/default.aspx/KB/918884

    MS advice on the conduct of clean install.

    http://www.theeldergeekvista.com/vista_clean_installation.htm

    A tutorial on the use of a clean install

    http://www.winsupersite.com/showcase/winvista_install_03.asp

    Super Guide Windows Vista Installation

    After installation > go to the website of the manufacturer of your computer/notebook > drivers and downloads Section > key in your model number > get latest Vista drivers for it > download/install them.

    Save all data, because it will be lost during a clean installation.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://support.Microsoft.com/default.aspx/KB/326246

    'How to replace Microsoft software or hardware, order service packs and upgrades, and replace product manuals'

    See you soon.

    Mick Murphy - Microsoft partner

  • IPM. The weblogic user does not exist in the policy store

    We cannot connect to the MPI with the error: the weblogic user does not exist in the policy store.

    I updated COE field to add the Capture and Imaging.

    We have 11.1.1.8 patched with more late installed environment

    Related to the AD and SSO configured (kerberos)

    Providers are:

    SSO - provider WebLogic negotiate identity Assertion

    OrangeAD - provider that performs LDAP authentication

    DefaultAuthenticator - WebLogic authentication provider

    DefaultIdentityAsserter - provider of assertion of identity WebLogic

    Control for OrangeAD and DefaultAuthenticator flag is SUFFICIENT

    There is no problem with Capture (include SSO)

    Refreshment of the IPM security not solved the problem

    In the discussion that I found said that weblogic user must be added to the provider (AD in my case):

    https://community.Oracle.com/thread/2615536

    Should I do this?

    Is that it can be cause of problems for rest UCM, Capture, Admin servers?

    Thank you

    Leon

    Let me explain here:

    The link that you pointed out only responds by me

    Connection IPM problems

    By default, the WebCenter JpsProvider calls / user role API to retrieve a list of roles that a user is a member. API/user role Gets a list of roles from the leading provider of authentication and ignores other authentication providers.

    The Weblogic jps can be configured so that the user/role API goes against all configured authentication providers. This by adding a property, virtualize and it's true

    From the Enterprise Manager domain

    1. in a browser, go to the page of Weblogic Enterprise Manager

    The URL will usually be something like: http://YourDomainSystem:7001 / em

    2 expand Weblogic domain

    3 right-click the field, and then select security--> security provider Configuration

    4. click on the box to extend the identity store provider.

    5. click on the button set up

    6. in the custom properties, click the Add button.

    7. in the name of property filed enter: virtualize

    8. in the value field, enter: true

    9. click on the OK button

    10 restart the Weblogic Admin Server and the server managed by WCC

    Please find below the Agency's response all risks

    http://www.Ateam-Oracle.com/WebCenter-content-imaging-and-multiple-identity-providers-the-virtualization-issue/

    Thank you

    Ranjan

  • Not possible to export a list of virtual machines that are created in the past 7, 30, 120 and 180 days since an imported csv file containing the date of creation of virtual machine

    Not possible to export a list of virtual machines that are created in the past 7, 30, 120 and 180 days since an imported csv file containing the date of creation of virtual machine. My questions is the correct statement to the variable: $VmCreated7DaysAgo: $_CreatedOn "-lt" $CDate7.

    # #SCRIPT_START

    $file = "C:\Users\Admin\Documents\WindowsPowerShell\08-18-2014\VM-Repo.csv".

    $Import = import-csv $file

    $VMCreatedLast7RDayRepoFile = "C:\Users\Admin\Documents\WindowsPowerShell\08-18-2014\Last7Days.csv".

    $start7 = (get-Date). AddMonths(-1)

    $CDate7 = $start7. ToString('MM/dd/yyyy')

    $VmCreated7DaysAgo = $Import | Select-object - property name, Powerstate, vCenter, VMHost, Cluster, file, Application, CreatedBy, CreatedOn, NumCpu, MemoryGB | Where-Object {$_.} CreatedOn - lt $CDate7} | Sort-Object CreatedOn

    $TotalVmCreated7DaysAgo = $VmCreated7DaysAgo.count

    $VmCreated7DaysAgo | Export-Csv-path $VMCreatedLast7RDayRepoFile - NoTypeInformation - UseCulture

    Write-Host "$TotalVmCreated7DaysAgo VMs created in 7 days" - BackgroundColor Magenta

    Invoke-Item $VMCreatedLast7RDayRepoFile

    # #SCRIPT_END

    You can use the New-Timespan cmdlet in the Where clause, it returns the time difference between 2 DateTime objects.

    An example of this cmdley

    New-TimeSpan-start (Get-Date). AddDays(-7)-end (Get-Date). Select days - ExpandProperty

    In your case, you could do

    Where {(New Timespan-démarrer ([DateTime] $_.))} CreatedOn) - end $start7). {7 days - gt}

    But beware of negative numbers.

  • Do not select the in drop-down fields, JS pls duplicate entries. ?

    Hello

    I have 3 fall to the low fields in my_sub_form, say, my_country_1, my_country_2 and my_country_3. All the field list drop-down boxes are filled with 10 names of countries, say, United States, Canada, Spain, Germany, France...

    Say user selected U.S. my_country_1 drop down field, new user TRYING to select same entry of the United States in the field of the my_country_2 = > here at this point, as soon as the user has selected United States in my_country_2 droppped to the bottom of the Inbox list = > immediately, I need to start the warning message to the user and make the my_country_2 as "" VACUUM.

    Basically, my form does not allow the user to select the duplicate in these 3 fields drop-down entries, all 3 should be SEPARATE.

    If I write JS in the event of my_sub_form, his works well, but not easy to use, this kind of delay.

    So we want to have an INSTANT user alert as SOON AS the user selects an entry duplicated in any field drop-down list

    I tried to put some JS in case of CHANGE of my_country_1 and my_country_2, but does not

    Pls provide me with a few JS and the name of the event, the name of the object

    Thank you

    you could put in the output of the list of my_country_1 event:

    If (this.rawValue == my_country_2.rawValue | this.rawValue == my_country_3.rawValue)

    {

    xfa.host.messageBox ("you can't choose the same country");

    this.rawValue = «»

    }

    then put the same thing in the other menus but change the names.

  • If the user does not have their e-mail address defined

    Hello

    If some users don't have their email address in the fnd_user table, then will goto the user notification work? What should I do to ensure that the workflow is not raise an error in such a situation and always send a notification to this user?

    Thank you

    Kumar

    Kumar,

    Notifications are assigned to users regardless of the email address they have. If a notification is the target of a user so the user will be able to see it in the list of tasks of notification, as long as the notification is open. Now, if the user turns out to have a valid e-mail address and sender of workflow works correctly then the user will also be sent an e-mail with the content of the notification.

    There is an error or warning if a user does not have an e-mail address; the notification will be always accessible from the task list.

    Kind regards

    Alejandro

  • When I opened a new tab navigation bar is not selected. How can I fix?

    I looked at other issues, but I couldn't find a solution for this. When I opened a new tab, the navigation/URL bar is not selected, and I can't just type to search or enter a URL. I have to move my mouse and select it. This is quite annoying because I use Firefox for years and he was always selected by default. Also, I have problems with my default browser. It seems to have opted for Google, Yahoo, and I could not change it back. (I'll post another question for this shortly after searching the answer more).

    Thanks for the help in advance.

    Hello
    You can check if this problem appears when you start firefox in safe mode, questions to troubleshoot Firefox in Safe Mode if everything works properly in safe mode which means that the problem occurred due to some extensions or themes.
    You can try to reset Firefox Firefox Refresh - reset the settings and Add-ons but be sure to reset firefox will remove your extensions and themes, preferences of site specific, search engines, download history, DOM Storage, security settings, download actions, configuration of the plugin, toolbar customizations, user and social features styles

  • Not selectable in LabVIEW DAQ card

    I installed a PXI-6122 card. The device is listed as "Device is working properly" Max:

    Now, I want to select the device to a constant of the device in LabVIEW 2010, but is not listed there:

    I guess it has to do with how MAX recognizes the PXI card, see previous announcement.

    Does anyone have an idea how I could make this card works and selectable in LV?

    The problem has been resolved by the NI DAQmx developers:

    http://forums.NI.com/T5/Multifunction-DAQ/DAQ-cards-not-selectable-although-listed-in-Max/m-p/124778...

    Thank you very much!

  • Windows mail. When sending a new email, I want to use the BCC field, that I can not select because it is not on the new Message. __How make CCB to come when I create a new message? This something __Is I can add tools please?

    Windows mail. When sending a new email, I want to use the BCC field, that I can not select because it is not on the new Message.
    How can I get the future BCC when I create a new message?
    Can I add tools please?

    Thanks for the reply Bruce Hagen. I am very grateful.

    Dave.

    In a new message window: view | All the headers. Check it out. Or, simply click on the button to easily add to your contacts list to: To, CC, or BCC.

    Bruce Hagen ~ MS - MVP [Mail]

Maybe you are looking for

  • Skype crashes when I try to make a call (phone or Skype)

    Windows 7 Skype 6.20.0.104 (took place with other recent versions) Skype crashes during an initial connection attempt. For Skype calls, it usually happens before the start of the video. -System

  • Why my iphone 6s don't will stay off while that I load it?

    Hi all, I am very new to the family of the iphone and I wonder why when I turn off my phone to charge, whenever I plug it turns back on, is this normal? I can load it all by being on? is this correct?

  • Vista freezes after inactivity

    After my computer is slow it freezes and nothing works (mouse, keyboard, etc.).  The screen is gray in color with the circle of task while turning.  I put the power of never sleeping options. I also updated my screen saver 'white '.  I checked to see

  • Can not get my email for over a week now

    Since last Sunday, I was not able to get on my Windows mail... When I go to my email, that's what I get Account: 'mail.mchsi.com', server: 'mail.mchsi.com', Protocol: POP3, server response: '-ERR cannot establish SSL with POP server 68.66.77.34:995,

  • Has child table data values

    HelloI use ProvisioningService to access the data of children on behalf of the user, but I'm not able to find these values in the returned data. This is my code:ProvisioningService provSrv = (ProvisioningService.class) Platform.getService;String user