A Dialog modal only to (a) specific InternalFrame

Is this (http://www.javaworld.com/javaworld/javatips/jw-javatip89.html) really the only ( / easiest) way (in ... 1.5?) to make a ((J)OptionPane) (J)Dialog (or (J)InternalFrame, maybe later on...) "modal" only to it's (parent) (J)InternalFrame (semimodal?) ?
(I can't read most of the found forum threads ("Error: - Thread ... could not be loaded from the database. - Please try searching using our search facility", as if I wouldn't have just done that, and I can't seem to find the appropriate feedback function!). )
Any help -> greatly appreciated!

For no apparent reason at all, started only sending messages as text messages. If I tried to send a text as an iMessage, I would get a prompt with an option to send as a text message. I went to an Apple store and found out that somehow I'd been signed out of iMessages. Try this. Go to settings > messages, then make sure you're signed in. If that's the issue, and you log in with your Apple ID, it may take a few minutes to activate.

Similar Messages

  • Dialog modality

    Hi! I'm having a problem concerning dialog modality..I'm working on a game which is run in a JFrame. In this game, I use several dialogs to request user input etc, and I want these dialogs to behave like they were modal. Unfortunately, if I actually make them modal, they are useless for me, since that blocks the thread that is running the renderer for that dialog (that is, the thread that continously updates the dialog visuals - this is a very custom dialog). It's also blocking threads that are sending input to these dialogs in addition to the user (over an network connection). My workaround so far is to make the dialog regain it's focus every time it loses it, but that's not a very nice solution; it creates flickering in the dialog, and that's something i realy would like to avoid. So does anyone have any suggestions? I would really appreciate som help here!
    Thanks!

    Thanks for the tip! I tried a demo for the project though, only to discover the same flickering in the dialogs and frames when I try to click anywhere outside the them. But I realized that was not the case for windows, so that may be the solution for me...AndI'm also going to take a closer look to the PMM-solution you suggested. Thanks!
    Edited by: lhk on Dec 7, 2008 3:10 PM:
    After a little bit of Window-research, I have found out it doesn't fit my needs, so I'm pretty much left off where I started. And I think I'm using a concept like the PMM already, as my input handler does nothing if there are any active dialogs (all components in the JFrame are custom, so they are easy to control). Therefore, the only problem is (still) that I would like to stop the JFrame from gaining focus at all, instead of just returning the focus to the dialog when it's necessary. (since that causes flickering). This is of course not a big deal, but I'm just curious if anyone has a solution to it...

  • How to set a MessageTextInput to be Read Only for a specific row?

    Hi,
    In Benefits Self Service, particularly the Update Beneficiaries page, it lists all your eligible Beneficiaries including yourself. The table has the following columns displayed for each beneficiary: Beneficiary, Relationship, Social Security Number, Primary %, Contingent %, Clear. This is the page where you allocate the Primary % and the Contingent %. The Primary % and Contingent % are MessageText Input.
    We have a requirement that we wouldn't want an employee to designate himself/herself as a beneficiary. However, the employee is being listed as a beneficiary along with all the other eligible beneficiaries. Oracle says it is an intended functionality to include the employee in the beneficiary. Is there a way thru Controller Object extension to set the Primary % and Contingent % as Read Only but only for the row corresponding to the employee to prevent the employee from accidentally allocating himself/herself as a beneficiary.
    I know there is the SPEL functionality but this requires me to add a transient attribute to the View Object corresponding to that table. But everytime I make a change to the View Object either by adding a transient attribute or some other changes, I end up getting an error on the standard Relation attribute of that view object. The error is something like "Relation set attribute failed for View Object". I cannot get pass this error and I'm not sure what's causing this. I see other people in this forum have encountered the same problem when extending view objects but no specific solution was offered nor any clear explanation of the cause.
    So I thought if there's any way this could be done thru Controller Object extension. If so, please let me know how. The challenge for me I think is finding the bean corresponding to those Message Text Input but only for a specific row in the table.
    Thanks,
    Ronaldo

    Hi,
    I also tried extending the View Object but without changing anything to the SQL so it is exactly the same as the standard view object but I still get the "Attribute set for Relation in view object BeneficiaryPeopleVO1 failed". Based from this, extending the view object whether any change has been made or not affects the standard transient Relation attribute.
    Here is the standard XML definition of the View Object if anyone is curious
    <ViewObject
    Name="BeneficiaryPeopleVO"
    BindingStyle="Oracle"
    CustomQuery="true"
    RowClass="oracle.apps.ben.selfservice.enrollment.server.BeneficiaryPeopleVORowImpl"
    ComponentClass="oracle.apps.ben.selfservice.enrollment.server.BeneficiaryPeopleVOImpl"
    MsgBundleClass="oracle.jbo.common.JboResourceBundle"
    FetchMode="FETCH_AS_NEEDED"
    FetchSize="10"
    UseGlueCode="false" >
    <SQLQuery><![CDATA[
    SELECT pcr.person_id person_id,
    pen.prtt_enrt_rslt_id prtt_enrt_rslt_id,
    con.first_name ||' '||con.last_name || ' ' || con.suffix Beneficiary,
    con.national_identifier Ssn,
    sum(decode(pbn.prmry_cntngnt_cd,'PRIMY',pbn.pct_dsgd_num,0)) primary_pct,
    sum(decode(pbn.prmry_cntngnt_cd,'CNTNGNT',pbn.pct_dsgd_num,0)) contingent_pct,
    con.person_id bnf_person_id,
    con.business_group_id,
    pen.per_in_ler_id,
    pbn.pl_bnf_id pl_bnf_id,
    pbn.object_version_number object_version_number,
    pbn.effective_start_date,
    pcr.contact_type contact_type,
    con.full_name beneficiary_full_name,
    sum(decode(pbn.prmry_cntngnt_cd,'PRIMY',pbn.pct_dsgd_num,0)) Db_Primary_pct,
    sum(decode(pbn.prmry_cntngnt_cd,'CNTNGNT',pbn.pct_dsgd_num,0)) db_contingent_pct,
    DECODE(pbn.pl_bnf_id, null, 'DeleteIconDisabled', 'DeleteIconEnabled') delete_switcher,
    pen.pl_id pl_id,
    pen.oipl_id oipl_id,
    nvl((select 'Y' from dual where (to_date(:1 , 'rrrr/mm/dd') between
              nvl(pcr.date_start,to_date(:2 , 'rrrr/mm/dd')) and
              nvl(pcr.date_end,to_date(:3 , 'rrrr/mm/dd'))) and
              (pil.lf_evt_ocrd_dt <= nvl(con.date_of_death,pil.lf_evt_ocrd_dt))), 'N') rel_exists_flag
    FROM per_people_f con,
    per_contact_relationships pcr,
    ben_pl_bnf_f pbn,
    ben_prtt_enrt_rslt_f pen,
         ben_per_in_ler pil
    WHERE pcr.personal_flag = 'Y'
    AND (pbn.pl_bnf_id is not null or
    (to_date(:4 ,'rrrr/mm/dd') between
    nvl(pcr.date_start,to_date(:5 ,'rrrr/mm/dd'))
    AND nvl(pcr.date_end,to_date(:6 ,'rrrr/mm/dd'))
              and pil.lf_evt_ocrd_dt <= nvl(con.date_of_death,pil.lf_evt_ocrd_dt)))     --Bug 4297137  
    AND pcr.contact_person_id = con.person_id
    and pen.person_id = pcr.person_id
    AND pbn.bnf_person_id (+) = con.person_id
    AND to_date(:7 ,'rrrr/mm/dd') between pbn.effective_start_date (+)
    AND pbn.effective_end_date (+)
    AND pcr.person_id = :8
    and pen.prtt_enrt_rslt_id = :9
    and to_date(:10 , 'rrrr/mm/dd') between con.effective_start_date and con.effective_end_date
    and to_date(:11 , 'rrrr/mm/dd') between pen.effective_start_date and pen.effective_end_date
    and pil.per_in_ler_id = pen.per_in_ler_id
    and pil.per_in_ler_stat_cd NOT IN('VOIDD', 'BCKDT')
    and pbn.prtt_enrt_rslt_id (+) = :12
    and ((to_date(:13 ,'rrrr/mm/dd') between
    nvl(pcr.date_start,to_date(:14 ,'rrrr/mm/dd')) and
    nvl(pcr.date_end,to_date(:15 ,'rrrr/mm/dd'))) or
    ((pcr.date_start = (select max(pcr2.date_start)
    from per_contact_relationships pcr2
    where pcr2.contact_person_id = pcr.contact_person_id
    and pcr2.person_id = pcr.person_id
    and pcr2.personal_flag = 'Y')) and
    not exists (select null
    from per_contact_relationships pcr3
    where pcr3.contact_person_id = pcr.contact_person_id
    and pcr3.person_id = pcr.person_id
    and pcr3.personal_flag = 'Y'
    and to_date(:16 ,'rrrr/mm/dd') between
    nvl(pcr3.date_start,to_date(:17 ,'rrrr/mm/dd'))
    and nvl(pcr3.date_end,to_date(:18 ,'rrrr/mm/dd')))
    and (pbn.pl_bnf_id is null or
    exists (select null from ben_per_in_ler pil2
    where pil2.per_in_ler_id = pbn.per_in_ler_id
    and pil2.per_in_ler_stat_cd not in ('VOIDD','BCKDT')))
    GROUP BY pcr.person_id,
    pen.prtt_enrt_rslt_id,
    con.last_name,con.first_name,con.suffix,
    con.full_name,
    con.national_identifier,
    pcr.contact_type,
    con.date_of_birth,
    con.person_id,
    con.business_group_id,
    pen.per_in_ler_id,
    pl_bnf_id,
    pbn.object_version_number,
    pbn.effective_start_date,
    pen.pl_id,
    pen.oipl_id,
              pcr.date_start,
              pcr.date_end,
              pil.lf_evt_ocrd_dt,
              con.date_of_death
    union
    SELECT to_number(null) person_id,
    pen.prtt_enrt_rslt_id prtt_enrt_rslt_id,
    con.first_name ||' '||con.last_name || ' ' || con.suffix Beneficiary,
    con.national_identifier Ssn,
    sum(decode(pbn.prmry_cntngnt_cd,'PRIMY',pbn.pct_dsgd_num,0)) primary_pct,
    sum(decode(pbn.prmry_cntngnt_cd,'CNTNGNT',pbn.pct_dsgd_num,0)) contingent_pct,
    con.person_id bnf_person_id,
    con.business_group_id,
    pen.per_in_ler_id,
    pbn.pl_bnf_id pl_bnf_id,
    pbn.object_version_number object_version_number,
    pbn.effective_start_date,
    'SLF' contact_type,
    con.full_name beneficiary_full_name,
    sum(decode(pbn.prmry_cntngnt_cd,'PRIMY',pbn.pct_dsgd_num,0)) Db_Primary_pct,
    sum(decode(pbn.prmry_cntngnt_cd,'CNTNGNT',pbn.pct_dsgd_num,0)) db_contingent_pct,
    DECODE(pbn.pl_bnf_id, null, 'DeleteIconDisabled', 'DeleteIconEnabled') delete_switcher,
    pen.pl_id pl_id,
    pen.oipl_id oipl_id,
    'Y' rel_exists_flag
    FROM per_people_f con,
    ben_pl_bnf_f pbn,
    ben_prtt_enrt_rslt_f pen,
         ben_per_in_ler pil
    WHERE
    pbn.bnf_person_id (+) = con.person_id
    AND to_date(:19 ,'rrrr/mm/dd') between pbn.effective_start_date (+)
    AND pbn.effective_end_date (+)
    AND con.person_id = :20
    and con.person_id = pen.person_id
    and pen.prtt_enrt_rslt_id = :21
    and to_date(:22 , 'rrrr/mm/dd') between con.effective_start_date and con.effective_end_date
    and to_date(:23 , 'rrrr/mm/dd') between pen.effective_start_date and pen.effective_end_date
    and pil.per_in_ler_id = pen.per_in_ler_id
    and pil.per_in_ler_stat_cd NOT IN('VOIDD', 'BCKDT')
    and (pbn.pl_bnf_id is not null or pil.lf_evt_ocrd_dt <= nvl(con.date_of_death,pil.lf_evt_ocrd_dt))     --Bug 4297137
    and pbn.prtt_enrt_rslt_id (+) = :24
    and (pbn.pl_bnf_id is null or
    exists (select null from ben_per_in_ler pil2
    where pil2.per_in_ler_id = pbn.per_in_ler_id
    and pil2.per_in_ler_stat_cd not in ('VOIDD','BCKDT')))
    GROUP BY pen.prtt_enrt_rslt_id,
    con.last_name,con.first_name,con.suffix,
    con.full_name,
    con.national_identifier,
    con.date_of_birth,
    con.person_id,
    con.business_group_id,
    pen.per_in_ler_id,
    pl_bnf_id,
    pbn.object_version_number,
    pbn.effective_start_date,
    pen.pl_id,
    pen.oipl_id
    ORDER BY 3,14
    ]]></SQLQuery>
    <DesignTime>
    <Attr Name="_isCodegen" Value="true" />
    <Attr Name="_version" Value="9.0.3.13.75" />
    <Attr Name="_CodeGenFlagNew" Value="36" />
    <Attr Name="_rowSuperClassName" Value="oracle.apps.fnd.framework.server.OAPlsqlViewRowImpl" />
    <Attr Name="_objectSuperClassName" Value="oracle.apps.fnd.framework.server.OAPlsqlViewObjectImpl" />
    </DesignTime>
    <ViewAttribute
    Name="PersonId"
    IsQueriable="false"
    IsPersistent="false"
    Precision="15"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="PERSON_ID"
    ColumnType="$none$"
    Expression="&#39;See the SQL...&#39;"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="PrttEnrtRsltId"
    IsQueriable="false"
    IsPersistent="false"
    Precision="15"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="PRTT_ENRT_RSLT_ID"
    ColumnType="$none$"
    Expression="&#39;See the SQL...&#39;"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="Beneficiary"
    IsQueriable="false"
    IsPersistent="false"
    Precision="332"
    Type="java.lang.String"
    AliasName="BENEFICIARY"
    ColumnType="$none$"
    Expression="&#39;See the SQL...&#39;"
    SQLType="VARCHAR" >
    </ViewAttribute>
    <ViewAttribute
    Name="Ssn"
    IsQueriable="false"
    IsPersistent="false"
    Precision="30"
    Type="java.lang.String"
    AliasName="SSN"
    ColumnType="$none$"
    Expression="&#39;See the SQL...&#39;"
    SQLType="VARCHAR" >
    </ViewAttribute>
    <ViewAttribute
    Name="PrimaryPct"
    IsQueriable="false"
    IsPersistent="false"
    Precision="15"
    Type="oracle.jbo.domain.Number"
    AliasName="PRIMARYPCT"
    ColumnType="$none$"
    Expression="&#39;See the SQL...&#39;"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="ContingentPct"
    IsQueriable="false"
    IsPersistent="false"
    Precision="15"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="CONTINGENTPCT"
    ColumnType="$none$"
    Expression="&#39;See the SQL...&#39;"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="BnfPersonId"
    IsQueriable="false"
    IsPersistent="false"
    Precision="15"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="BNFPERSONID"
    ColumnType="$none$"
    Expression="&#39;See the SQL...&#39;"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="BusinessGroupId"
    IsQueriable="false"
    IsPersistent="false"
    Precision="15"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="BUSINESSGROUPID"
    ColumnType="$none$"
    Expression="&#39;See the SQL...&#39;"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="PerInLerId"
    IsQueriable="false"
    IsPersistent="false"
    Precision="15"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="PERINLERID"
    ColumnType="$none$"
    Expression="&#39;See the SQL...&#39;"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="PlBnfId"
    IsQueriable="false"
    IsPersistent="false"
    Precision="15"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="PL_BNF_ID"
    ColumnType="$none$"
    Expression="PL_BNF_ID"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="ObjectVersionNumber"
    IsQueriable="false"
    IsPersistent="false"
    Precision="9"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="OBJECT_VERSION_NUMBER"
    ColumnType="$none$"
    Expression="OBJECT_VERSION_NUMBER"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="EffectiveStartDate"
    IsQueriable="false"
    IsPersistent="false"
    Type="oracle.jbo.domain.Date"
    AliasName="EFFECTIVE_START_DATE"
    ColumnType="$none$"
    Expression="EFFECTIVE_START_DATE"
    SQLType="DATE" >
    </ViewAttribute>
    <ViewAttribute
    Name="ContactType"
    IsQueriable="false"
    IsPersistent="false"
    IsNotNull="true"
    Precision="30"
    Type="java.lang.String"
    AliasName="CONTACT_TYPE"
    ColumnType="$none$"
    Expression="CONTACT_TYPE"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="30" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="BeneficiaryFullName"
    IsQueriable="false"
    IsPersistent="false"
    Precision="240"
    Type="java.lang.String"
    AliasName="BENEFICIARY_FULL_NAME"
    ColumnType="$none$"
    Expression="BENEFICIARY_FULL_NAME"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="240" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="DbPrimaryPct"
    IsQueriable="false"
    IsPersistent="false"
    Type="oracle.jbo.domain.Number"
    AliasName="DB_PRIMARY_PCT"
    ColumnType="$none$"
    Expression="DB_PRIMARY_PCT"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="DbContingentPct"
    IsQueriable="false"
    IsPersistent="false"
    Type="oracle.jbo.domain.Number"
    AliasName="DB_CONTINGENT_PCT"
    ColumnType="$none$"
    Expression="DB_CONTINGENT_PCT"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="Relation"
    IsQueriable="false"
    IsPersistent="false"
    Type="java.lang.String"
    AliasName="Relation"
    ColumnType="$none$"
    SQLType="VARCHAR" >
    </ViewAttribute>
    <ViewAttribute
    Name="DeleteSwitcher"
    IsPersistent="false"
    Precision="30"
    Type="java.lang.String"
    AliasName="DeleteSwitcher"
    ColumnType="VARCHAR2"
    Expression="DeleteSwitcher"
    SQLType="VARCHAR" >
    </ViewAttribute>
    <ViewAttribute
    Name="PlId"
    IsPersistent="false"
    Precision="15"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="PlId"
    ColumnType="VARCHAR2"
    Expression="PlId"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="OiplId"
    IsUpdateable="false"
    IsPersistent="false"
    Precision="15"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="OiplId"
    ColumnType="VARCHAR2"
    Expression="OiplId"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="RelExistsFlag"
    IsQueriable="false"
    IsPersistent="false"
    Precision="30"
    Type="java.lang.String"
    AliasName="REL_EXISTS_FLAG"
    ColumnType="VARCHAR2"
    Expression="REL_EXISTS_FLAG"
    SQLType="VARCHAR" >
    </ViewAttribute>
    </ViewObject>
    Thanks,
    Ronaldo

  • Interactive report gives an error only for a specific user

    An interactive report based on a very complicated select gives an error only when a specific user is logged on.
    The error is:
    ORA-00932: inconsistent datatypes: expected - got CLOB.
    For other users logging using this page it works fine.
    Authentication for this application is done using a stored function.
    The query does not use the current userid in it.
    Why does it fail for a specific user? if there is a problem, it should fail all the time.

    Hi ankur,
    By what you said the report dont have any date parameters or no date columns.
    "Query execution was not successful ORA-01843 not a valid month." This means it is related with date mask passing a invalid month into date column or argument to to_date function.Check once the session date that is 'dd-mm-yy' or anything else
    select * from nls_session_parameters where parameter = 'NLS_DATE_FORMAT'
    select to_date('01-DEC-06'),to_date('01-12-06') from dual;
    Also a general question whenever I am trying to mark any question as 'Helpful', the status is not changing. Is there anything I am missing.While you flag it 'helpful' or 'correct',it takes you to other screen where you see "Yes, the question is now answered" click the radio button and then click ok button.
    Hope its helpful.
    Best Wishes,
    Kranthi.
    Edited by: Kranthi.K on Jun 8, 2009 9:00 AM

  • ITunes 9.0.1 will only play one specific playlist

    itunes 9.0.1 will only play one specific playlist, and freezes when I try to do anything else. Had 9.0.0.7, then upgraded...said would fix the problem, but didn't. When I sync iPhone itunes freezes as well. Tried to delete podcasts...froze. Tried to delete duplicate songs...froze. Tried to...you get the picture.
    Any help?

    Problem has been resolved...had to reinstall, then go to add/remove programs and repair iTunes.

  • Suggestion: Please make the Combine Files dialog modal to the Acrobat application instance.

    I often combine files into a PDF with Acrobat (XI). It is annoying that the main Acrobat window is shown while the Combine Files dialog window is open. I often review other PDF files during the process of selection for later combination. It happens far too often, that I accidentally close the Combine Files instance main Acrobat window during the process and subsequently lose the already specified file selection. I would suggest to make the Combine Files dialog modal for the Acrobat instance so that users would have to close the Combine Files dialog first, before closing the instance. I would appreciate this in a future update. Thanks a lot.
    Acrobat installé : C:\Program Files\Adobe\Acrobat 11.0\Acrobat\Acrobat.exe
        Version : 11.0.03.37
        Date de création : 2013/05/11
        Heure de création : 12:37:32
    Cartes graphiques : NVIDIA GeForce 9600 GT
        Version : 9.18.13.2018
        Vérification : OK
    Détails d’Acrobat :
       Sandboxing : Désactivé
       Captive Reader : Non
       Lecteur multiple sur un bureau : Désactivé
    Détails de l’affichage :
       Largeur d’écran : 1920
       Hauteur d’écran : 1080
       Nombre de moniteurs : 1
       Nombre de boutons de la souris : 3
       Possède une roulette : Oui
       Possède un stylet Windows : Non
       Jeu de caractères codés sur deux octets : Non
       Possède un éditeur de méthode d’entrée : Oui
       Dans l’environnement du lecteur d’écran : Non
    Détails de la session :
       Type de démarrage : Normal
       En cours d’arrêt : Non
       Réseau : Disponible
       Dans l’environnement Citrix : Non
       Dans l’environnement VMWare : Non
       Session à distance : Non
       Contrôle à distance :  Non
    Détails du compte :
       Droits utilisateur : Standard
       Contrôle de compte d’utilisateur : Par défaut
       Intégrité du processus : Non défini
       Type de profil : Aucun
    Détails sur Windows :
       Tablet PC : Oui
       Starter Edition : Non
       Media Center Edition : Oui
       Ordinateur lent : Non
    Dossier temporaire :C:\Users\Emploi\AppData\Local\Temp\
    Dossier Windows :C:\Windows
    Fabricant du système d'exploitation :Microsoft Corporation
    Fuseau horaire :Paris, Madrid
    Mémoire physique disponible :1783552 KB
    Mémoire physique totale :3669304 KB
    Mémoire virtuelle disponible :1922544 KB
    Mémoire virtuelle totale :2097024 KB
    Messagerie par défaut :Microsoft Outlook
        mapi32.dll
        Version : 1.0.2536.0 (win7_rtm.090713-1255)
        Date de création : 2010/11/20
        Heure de création : 23:29:12
    Moniteur :
        Nom :NVIDIA GeForce 9600 GT
        Résolution :1920 x 1080 x 59
        Bits par pixel :32
    Navigateur par défaut :C:\Program Files\Internet Explorer\iexplore.exe
        Version : 10.00.9200.16521 (win8_gdr_soc_ie.130216-2100)
        Date de création : 2013/07/10
        Heure de création : 10:54:20
    Nom du système :PRIVÉ-WT
    Nom du système d'exploitation :Microsoft Windows Vista
    Nom d'utilisateur :Emploi
    Paramètres régionaux :Français (France)
    Processeur :x86 Family 16 Model 5 Stepping 3  AuthenticAMD  ~3315  Mhz
    Taille de la page :4194303 KB
    Version BIOS :A_M_I  - 9001119
    Version du système d'exploitation :6.1.7601  Service Pack 1

    All feature requests must be made via the official web page:  http://www.adobe.com/go/wish

  • Tcp_intranet channel to accept only for a specific internal IP address

    I am currently using SunOne Messaging Server v5.2:
    I would like to configure our MTA to only deliver emails to their proper mailstore if the emails are from 2 specific internal IP addresses. If emails that originated from the intranet are not from the above 2 IP addresses then I would like to re-route the emails to a particular MTA(port 25) for processing. Can this be done? And if so, what changes do I need to make to the imta.cnf file/mappings file?
    The tcp_local channel for outgoing emails should remain the same. My guess is that I have to modify the tcp_intranet channel to only accept from specific IPaddresses, Otherwise pass the emails to another channel or MTA for processing.
    Question: Can a user spoof an Email with an improper IP address. And if so, do I have to turn on reverse lookup to stop this from happening Or is reverse lookup on by default? Where is the reverse lookup setting? In the imta.cnf file?

    by default, we do examine the ip address of a mail sending partner. this is hard to spoof, and it's not based on "from" attribute.
    However, I'm not at all sure that what you're asking for is truly something achieveable by any normal means, nor if it's truly useful ..
    Perhaps you could create another channel for your specific ip addresses, and that would work. . .

  • Sync with Outlook ONLY for a specific date range

    I have a Zire 31 that I'm syncing with Outlook via latest Palm Desktop/HotSync.   I did just install the latest conduit.
    I was getting several repeating calendar entries that were not syncing with the Zire (annual birthdays, etc.) - turns out that they did not have an "end-date" specified when created in Outlook.  Creating an end-date solved the problem.
    However - I would like to know if it is possible to specify a certain date range for the device to sync (e.g., sync calendar only for years 2007 through 2050, or in other words sync from 1 year ago to 50 years in future, etc...)
    I recall specifying this once years ago, but I may have been using a third party to sync with Lotus Notes at the time.  I'm wondering if this option is also available with syncing directly with Outlook using HotSync???  I can't imagine it's not, but I can't find where you specify it.
    One more interesting note:  while my Zire 31 had issues syncing those repeating calendar entries - my much older HandSpring Visor Deluxe syncs them no problem!  Go figure.
    Thanks much -
    Post relates to: Zire 31

    I'm not actually looking to purge old items.
    Rather - I would like to ONLY sync calendar entries between a specified range of dates.  For example - ONLY sync for calendar entries between Jan 1 2007 and Jan 1, 2050.
    the problem is that I have some repeating entries (birthdays, etc.) that are set up in Outlook with no end date.  Apparently Palm/HotSync is having trouble syncing these (they don't show up at all - for any year.)
    One resolution is to apply an end-date for each repeating calendar entry.  However, this is just another step my wife needs to remember to do.  If you happen to forget to to this, then Hotsync will ignore that entry.  Fine if you realize that's happening, but if you forget and forget to check - you won't even know it didn't sync!
    The other possible resolution is to only have HotSync sync for a SPECIFIC date range - one that does not presumably go to infinity.  That is my question - how does one sync ONLY for a specific date range.  Has nothing to do with purging old entries.
    Thanks!!
    Post relates to: Zire 31

  • Managing WLAN only in a specific Ap-Group.

    Hi,
    I would like to schedule the enable or disable of a specific WLAN only in a specific AP-Group.
    Is possible to do with a Prime?
    Regards.
    Mirko Severi.

    I don't think that is possible, since the WLAN has to be enabled/disabled on the WLAN itself.  Ifyou don't see a setting on the AP Group to do this, then there is no way PI can do this also.  Here is an older doc with WCS scheduling you can still do in Classic Theme:
    https://supportforums.cisco.com/document/58081/managing-wireless-lan-status-schedules-automatic-enabledisable-feature
    Scott

  • User access only to a specific page

    I have create a page group with others pages.
    I create a user who want to have management rights only to a specific page of the portal, and anywhere else
    How can i give access only to a specific page?
    thanks

    Try this :
    1. Edit the page
    2. Click "Access" in the banner at the top of page.
    3. Under "Access Settings" select "Specify Access Settings"
    4. Enter the username into the "Grantee" text box
    5. Select "MANAGE" from the drop down box of permission levels
    6. Click "Add"
    7. Click "Apply"
    8. Click "Clear Cache" to activate the changes
    9. Click "Ok" to return to the page.

  • How to impdp data only into a specific schema

    Hello,
    How to impdp Tables and Materialized Views only into a specific schema. Also, how to exclude certain tables in particular schemas from being imported. Thank you.

    Pl Check the link
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_import.htm#i1007865
    Thanks

  • Open Posting Period only for some specific user?

    Dear all,
    does someone have any idea, how could a posting period in ucmon be opened only for several specific user?
    Is that possible?
    Many thanks.
    Hallochen
    Edited by: hallochen on Sep 22, 2011 2:45 PM

    Depending on the requirement
    May be you can open it for a specific Cons Group(assuming User has authorization for that group)  which translates back to opening it for specific user only
    If user needs to work on more than 1 cons groups & has authorization then a step by step approach  will help
    rgds
    D

  • User personal settings : dialog(modal)

    Hello,
    is it possible to change personal a parameter in settings for all users :
    in : help --> settings --> F4-help we need to set the parameter "Display" to "Dialog(modal)
    Regards
    K.

    Solved by using parameter user F4METHOD with values ActiveX or NoAcxtiveX
    attribution to user by SU01(individual or SU10(mass)
    Karim

  • When I try to work with some photos Imovie gets stuck and then it stops to work at all. It happens only with some specific photos,is there a way to repair them?I can't go on this way,help me please

    When I try to work with some photos Imovie gets stuck and then it stops to work at all. It happens only with some specific photos,is there a way to repair them?I can't go on this way,help me please

    Hi,
    The movie is probably MPEG format.
    QuickTime Pro and iMovie cannot transcode audio contained in MPEG movies.
    Try to convert with SimpleMovieX or MPEG Streamclip instead.
    http://www.aeroquartet.com/SimpleMovieX/
    http://www.squared5.com
    Regards, BJ

  • Setting the Dialog Modal

    Hey guys,
    I have a small problem here.
    I have a frame with some buttons in it. On click of the buttons I get a dialog popped up.I have to make the dialog modal to the frame from which it has been popped up.
    I have two Options here
    1) I have to call the setModal function of the JDialog and make it modal.But this will fail when the user presses alt + tab. when this is done the frame and the dialog will not appear as a pair.
    2) I have to pass the parent frame to the class which pops up the dialog and call the constructor ( JFrame frm, boolean true)
    Is there any method other than the option 2 where the modal property can also be set and at the same time the dialog and the frame( owner ) appear in pair ????
    thanx
    Nagaraj

    I don't know what happened to that one, whether I mistyped or whether the thread disappeared. There are plenty of others you can find by searching the forums. I might have done it myself and sent you another link, but not after this message:
    what happened to everybody?? wake up ! Wake Up !
    WAKE UP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    Any body to help me ???
    [ ... ]-- Scott

Maybe you are looking for

  • HP deskjet 3055A e-All-in-One printer/scanner Not scanning

    Hello I have the all in one as listed.  It has worked for ages absolutely fine and the printer both wireless and network still works.  The scanner however does not the fact have done a Scan doctor on it.  Stops at Twain Scan problem.  Despite all the

  • How do I get rid of an adobe textbox that shows up every time I open Firefox?

    Adobe  installed an update, I believe to my flashplayer and when it was  finished, every time I opened my google page(Mozilla) I got a big box that said  Adobe installer. There was no way to remove it so I went to add/delete  programs and found the i

  • SCOM Alerts Connector run as failed

    Hi I have setup the SCOM alerts connector in SCSM but after that i starts to get wernings in scom on servers there are in a difrent domain.  werning:  Description: The Health Service cannot verify the future validity of the RunAs account Domain1\SCOM

  • Page Properties - background color

    Hello, I added a background color of bright red (just so it would be very noticable) to the following webpage.  It is not showing up.  Do you know why? http://www.referafamily.com/sample/john.sample Thanks, Melanie

  • Extracting Icons from MacIntosh Forms

    Does anyone know how to extract the icons from a MacIntosh form (Forms 4.5) so that I can migrate them to an NT platform (Forms 6)?