Treatment options for form (use the value of a form field to select a shared list or a web redirect page)

Hello

I tried something with the processing of the forms which doesn't seem to work. I wonder if the function really works or if I'm doing something wrong.

Here is an example of what I do: I have a form that I want to use. I add "Web Page redirection" processing step to my form. When I click on the processing step to set up, under "General settings" there is an option that says "Choose how the launch of destination page is selected." In this drop-down menu, there are three options: always redirect to the same landing page, use a drop-down list to select the landing page and the value of a form field allows you to select the destination page. I have a hidden field on the form that contains the URL of the web page to which I would like to redirect. When I select 'Use the value of a form field to select the landing page', I select the hidden field to the field that contains the URL of the web page to which I want to redirect. It's my setup. However, when I submit the form, nothing happens, I do not redirect to the URL contained in the hidden field... This function still works? I'm doing something wrong? I can't seem to get the function "Use a drop-down list to select the destination page" to work either. The same thing happens when I try to use the "Add Contact to shared the list" processing step. I add the name of the list that is shared in the field hidden, but the contact does not appear in the shared list... These functions still work? If yes how do I configure them?

Thank you!

Well, I understood the problem of the shared list... You must add the ID of the list shared in the hidden field. I had to use Firebug to see the real ID of the shared list. Once you have the ID, use you it as a static value in the field. If the HTML code of the form will look something like this:

If you do not use the lookup data ID. You use the ID real asset on the shared list. You must use something like Firebug to find.

I'm glad everything is working.

Tags: Marketers

Similar Questions

  • Defining the new path for the data files for restoring using the VALUE of NEWNAME FOR DATABASE

    Version: 11.2.0.3 Linux

    Today, I had to do a restore RMAN to a new server and I came across the post following RTO on the VALUE of NEWNAME FOR DATABASE

    ALTER database open resetlogs upgraded;         error to throw

    So, I thought to use it to indicate the new location of the data files to restore.

    That's what I did
    ===================

    Restore the control file and catalog items to backup using the command of CATALOGUE START WITH. Then I started the restoration
    $ rman target / cmdfile=restore.txt
    
    Recovery Manager: Release 11.2.0.3.0 - Production on Thu Jul 26 04:40:41 2012
    
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    
    connected to target database: SPIKEY (DBID=2576163333, not open)
    
    RMAN> run
    2>  {
    3>  SET NEWNAME FOR DATABASE TO '/fnup/hwrc/oradata/spikey';
    4>  restore database  ;
    5>  }
    6>
    7>
    8>
    executing command: SET NEWNAME
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of set command at 07/26/2012 04:40:43
    RMAN-06970: NEWNAME '/fnup/hwrc/oradata/spikey' for database must include %f or %U format
    
    Recovery Manager complete.
    Don't know how it worked for Levi without %f or %U. So, I added %f
     $ vi restore.txt
     $ cat restore.txt
    run
     {
     SET NEWNAME FOR DATABASE TO '/fnup/hwrc/oradata/spikey/%f';
     restore database  ;
     }
    
    
     $ rman target / cmdfile=restore.txt
    
    Recovery Manager: Release 11.2.0.3.0 - Production on Thu Jul 26 04:45:45 2012
    
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    
    connected to target database: SPIKEY (DBID=2576163333, not open)
    
    RMAN> run
    2>  {
    3>  SET NEWNAME FOR DATABASE TO '/fnup/hwrc/oradata/spikey/%f';
    4>  restore database  ;
    5>  }
    6>
    7>
    8>
    executing command: SET NEWNAME
    
    Starting restore at 26-JUL-12
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=19 device type=DISK
    
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00001 to /fnup/hwrc/oradata/spikey/1
    channel ORA_DISK_1: restoring datafile 00002 to /fnup/hwrc/oradata/spikey/2
    channel ORA_DISK_1: restoring datafile 00003 to /fnup/hwrc/oradata/spikey/3
    channel ORA_DISK_1: restoring datafile 00004 to /fnup/hwrc/oradata/spikey/4
    channel ORA_DISK_1: restoring datafile 00005 to /fnup/hwrc/oradata/spikey/5
    channel ORA_DISK_1: restoring datafile 00006 to /fnup/hwrc/oradata/spikey/6
    channel ORA_DISK_1: restoring datafile 00007 to /fnup/hwrc/oradata/spikey/7
    channel ORA_DISK_1: restoring datafile 00008 to /fnup/hwrc/oradata/spikey/8
    channel ORA_DISK_1: restoring datafile 00009 to /fnup/hwrc/oradata/spikey/9
    channel ORA_DISK_1: reading from backup piece /u07/bkpfolder/SPIKEY_full_01nh0028_1_1_20120725.rmbk
    channel ORA_DISK_1: errors found reading piece handle=/u07/bkpfolder/SPIKEY_full_01nh0028_1_1_20120725.rmbk
    channel ORA_DISK_1: failover to piece handle=/u07/dump/bkpfolder/SPIKEY_full_01nh0028_1_1_20120725.rmbk tag=SPIKEY_FULL
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:01:56
    Finished restore at 26-JUL-12
    
    Recovery Manager complete.
    As you can see, RMAN restore data files to the desired location. But the data file names ended up as
    1
    2
    3
    .
    .      
    .
    9
    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -----------| Holy Cow |-----------------------------


    So I had to rename each file as below
    $ mv 1 /fnup/hwrc/oradata/spikey/system01.dbf
    $ mv 2 /fnup/hwrc/oradata/spikey/sysaux01.dbf
    $ mv 3 /fnup/hwrc/oradata/spikey/undotbs01.dbf
    I would have been better in execution of the order for each data below file
    SET NEWNAME FOR DATAFILE
    Now, I think, there is no advantage in using NEWNAME SET of DATABASE to. Only the disadvantages. I did anything wrong above?

    Martin;

    On the issue of the VALUE of NEWNAME FOR DATABASE, you must specify at least one of the first three of the following substitution variables to avoid collisions of names: %b f % U. see semantic entry for TO 'filename' for a description of the possible substitution variables.

    You use %f

    %b
    
    Specifies the filename without the fully qualified directory path. For example, the datafile name /oradata/prod/financial.dbf is transformed to financial.dbf. This variable enables you to preserve the names of the datafiles while you move them to different directory. During backup, it can be used for the creation of image copies. The variable cannot be used for OMF datafiles or backup sets.
    
    %f
    
    Specifies the absolute file number of the datafile for which the new name is generated. For example, if datafile 2 is duplicated, then %f generates the value 2.
    
    %U
    
    Specifies a system-generated unique filename. The name is in the following format: data-D-%d_id-%I_TS-%N_FNO-%f. The %d variable specifies the database name. For example, a possible name might be data-D-prod_id-22398754_TS-users_FNO-7.
    

    Source - E10643-01

    Backup and recovery reference

    http://docs.Oracle.com/CD/E14072_01/backup.112/e10643/rcmsynta2014.htm

    I see CKPT and I agree on that!

    Best regards

    mseberg

  • I've created a form that uses the value field text to fill the text of another field.  Does not take into account changes

    I've created a form that uses the value field text to fill the text of another field.  However, if I need to change the text, the second field does not update this change.  Instead of reset the form each time, is the Javascript code to update the fields if they have been modified?

    For example I Text1 and Text2.

    When I type in Hello in Text1 I see Hello in Text2.

    Later, if I decide to change to Goodbye Text1, Text2 remains Hello.

    The shape of the hoe can recognize this change?

    Thank you

    Edit: I think I have misunderstood the situation.

    If you want to both fields have the same value, just to give them the same name.

  • Using OnChange or OnBlur for changes the value of a hidden field

    I have a need to update the value of a hidden field with the value from a menu of the list. I studied the OnBlur and OnChange JavaScript functions but can't find anything suitable. Here's the deal:

    If a user selects California on a list of State menu, I need to immediately update the value of a field hidden with the "California". (Both fields are on the same page) All this must occur BEFORE the user submits the page. Each time they choose the State from the menu to list the value of the hidden field must change.

    Can anyone offer any suggestions?

    Thank you!

    Well Yes, that did the trick for the hidden field. Thank you very much.

    I'll be able to also store this value in a session variable? (see previous post)

  • How to upgrade a table column using the values in the Oracle collection

    create or replace procedure test_coll
    
    IS
    
    CURSOR upd 
    IS
    SELECT CONTACT_NAME FROM Supplier_16;
    
    TYPE dept IS TABLE OF upd%rowtype;
    cur_var dept;
    
    Type List Is table Of  varchar2(20);
    Name List:=  List('Shilpi','Sunil','Shreyas','Saral');
    
    BEGIN
    
    OPEN upd;
    LOOP
         FETCH upd BULK COLLECT INTO cur_var;
    --    EXIT WHEN upd%NOTFOUND;
    
         FORALL i IN cur_var.FIRST..cur_var.LAST
      
         UPDATE supplier_16
    **  SET Contact_name= name(i);  ***
         
         COMMIT;
    
    END LOOP;
    CLOSE upd;
    
    END;
    On the "BOLD" line, I don't know how I should move the values of the collection of name I said without which are set all the values in the table supplier_16 = 'Saral.

    Help, please.

    Aashish S. wrote:
    Thank you very much...

    Yes, I slide collections and was trying to reach somwthing on similar lines to which you provided the code example...

    My essay is equipped to take a collection: initialized with values of say 3-4...

    Take other tables... A column... and update the column in the table (not PK, FK anything) using the values of the initialized collection...

    However, I am stuck between the two on how the UPDATE clause should be...

    OK, if it's just because you want to practice with collections, you might do something like this...

    SQL> set serverout on
    SQL> create table supplier_16 as
      2  select 'Frederick' as contact_name from dual union all
      3  select 'Robert' from dual union all
      4  select 'Jeremy' from dual union all
      5  select 'Simon' from dual
      6  /
    
    Table created.
    
    SQL> create or replace procedure test_coll is
      2    CURSOR upd IS
      3      SELECT CONTACT_NAME
      4      FROM Supplier_16
      5      FOR UPDATE;
      6    Type List Is table Of  varchar2(20);
      7    Name List := List('Shilpi','Sunil','Shreyas','Saral');
      8    v_contact_name varchar2(30);
      9    v_idx          number := 1;
     10  BEGIN
     11    OPEN upd;
     12    LOOP
     13       FETCH upd INTO v_contact_name;
     14       EXIT WHEN upd%NOTFOUND;
     15       UPDATE supplier_16
     16       SET    contact_name = name(v_idx)
     17       WHERE CURRENT OF upd;
     18       DBMS_OUTPUT.PUT_LINE(v_contact_name||' update to '||name(v_idx));
     19       v_idx := v_idx + 1;
     20    END LOOP;
     21    CLOSE upd;
     22    COMMIT;
     23  END;
     24  /
    
    Procedure created.
    
    SQL> exec test_coll;
    Frederick update to Shilpi
    Robert update to Sunil
    Jeremy update to Shreyas
    Simon update to Saral
    
    PL/SQL procedure successfully completed.
    
    SQL> select * from supplier_16;
    
    CONTACT_N
    ---------
    Shilpi
    Sunil
    Shreyas
    Saral
    

    Of course, there is treatment rank by rank and is not best for performance, but it allows you to access your collection that you created names.

  • How can I fill the records using the value LOV

    Create a form based on the use of the following output Table EMP

    Create a database block IE control-> Dept No. block


    Create a database block - EMP
    Create a LOV to the Dept not according to the dept table.
    For the current No. Dept. Complete records of the employees

    How can I fill the records using the value LOV?


    Thank you

    Hello

    Create trigger KEY-LISTVAL for control_block.dept_no with code similar to the following:

    IF SHOW_LOV ('LOV_NAME') THEN
            SET_BLOCK_PROPERTY ('EMP_BLOCK', DEFAULT_WHERE, 'DEPT_NO = ' || :CONTROL_BLOCK.DEPT_NO);
         GO_BLOCK ('EMP_BLOCK');
         EXECUTE_QUERY;
    END IF;
    

    Hope this helps

    Best regards

    Arif Khadas

  • about to buy a video.  It contains options for speed on the overview of the site, do get the same options to slow down the video down when I buy the video?

    about to buy a video.  It contains options for speed on the overview of the site, do get the same options to slow down the video down when I buy the video?

    The videos is not 'options '. They are exactly as described. You can use first to add slowed to any video. Correction of the one who is already slowed to normal speed may not produce get results.

    But to answer the question, the videos are exactly as in preview. It would be to you on how you change them and with which application.

  • using the function - how to use the values of the input variables on the table select statement names

    Hello community, I have a problem when creating a function. The purpose of this function is to check the table of weather gave yesterday or not. We must check this on different tables on different sachems. We are creating a function with input variables.

    CREATE OR REPLACE FUNCTION IN_SCHEMA.IS_YDAYDATA_TO_TABLE

    (

    in_schema IN VARCHAR2,

    in_tablename IN VARCHAR2,

    in_datefield IN VARCHAR2,

    )

    RETURNS INTEGER

    AS

    -Declaring variables

    v_is_true INTEGER.

    BEGIN

    SELECT

    CASE

    WHEN MAX (in_datefield) = TRUNC(SYSDATE-1)

    THEN 1

    ON THE OTHER

    0

    END

    IN

    v_is_true

    Of

    in_schema.in_tablename

    ;

    RETURN v_is_true;

    END;

    /

    When creating, I got error: [error] ORA-00942 (44:19): PL/SQL: ORA-00942: table or view does not exist

    How to use the values of the input variables on the table select statement names?

    Hello

    Here's a way you can use dynamic SQL statements for this task:

    CREATE OR REPLACE FUNCTION IS_YDAYDATA_TO_TABLE

    (

    in_schema IN VARCHAR2,

    in_tablename IN VARCHAR2,

    in_datefield IN VARCHAR2,

    in_first_date DATE DEFAULT SYSDATE - 1,.

    in_last_date DATE by DEFAULT NULL

    )

    RETURNS INTEGER

    AS

    -IS_YDAYDATA_TO_TABLE returns 1 if in_schema.in_tablename.in_datefield

    -contains all the dates in the in_first_date of the range through included in_last_date

    - and it returns 0 if there is no such lines.

    -If in_last_date is omitted, the search only the data on in_first_date.

    -If in_first_date is omitted, it defaults to yesterday.

    -Time parts of the in_first_date and in_last_date are ignored.

    -Declaring variables

    sql_txt VARCHAR2 (1000);

    v_is_true INTEGER.

    BEGIN

    sql_txt: = 'SELECT COUNT (*).

    || 'FROM ' | in_schema | '.' || in_tablename

    || 'WHERE ' | in_datefield | ' > =: d1'

    || «AND» | in_datefield | '< >

    || 'AND ROWNUM = 1';

    dbms_output.put_line (sql_txt |) '= sql_txt in IS_YDAYDATA_TO_TABLE");  -For debugging

    Sql_txt EXECUTE IMMEDIATE

    IN v_is_true

    With the HELP of TRUNC (in_first_date) - d1

    TRUNC (NVL (in_last_date

    in_first_date

    )

    ) + 1                -- d2

    ;

    RETURN v_is_true;

    END is_ydaydata_to_table;

    /

    DISPLAY ERRORS

    If you must use dynamic SQL statements, put all the SQL statement in a single string variable, such as sql_txt in the example above.  In this way, you can easily see exactly what will be executed.  Comment out the call to dbms_output under test is completed.

    Try to write functions that will address not only the question that you have now, but similar questions that you may have in the future.  For example, now that interest you only to the verification of the data of yesterday, but later, you might want to check another day or range of days.  The above function combines the convenience of a function simple (looks like yesterday data if you don't tell him otherwise) with the power of a more complex function (you can use the same function to check any day or range of days).

  • How can I configure my classic workspace, there is no option for this in the menu dropdown.

    I am trying to affect my page of the classic workspace layout, but there is no option for this in the drop down list at the top. I am trying to create an ap div, but it seems that the only way to access the ap div drawing tool is by accessing it through the insert/common/ap div. BUT I CANT GET TO IT!

    The APDiv option is not part of the program since the past 4 or 5 versions.

    To add position: absolute to an item, you must use CSS designer, or manually add the code in your CSS file or

  • Assignment of identifiers automatically or using the value of basic in the rules

    The question is quite simple. I want to order the instances of an entity. How these bodies are classified are of no importance. The problem is that the only information available on instances of the age, which may be one of several bodies and makes impossible to order. Is there any way to assign an identifier automatically apply this ranking, say 0... the number of instances - 1 or is - it possible to use the value of an instance of rules?

    A loop is a bad choice here - a recursive function would end in the same logical dilemma on the tie-break as you you. (If I can offer any advice it would be that the rule loops should be a last choice as a general rule, not a first, they are certainly not as easy to manage as recursive functions in a standard programming language).

    Essentially, you want to work on the price of the ticket (IE an attribute at the level of the entity of ticket):

    the price of the ticket =
    0; If the number of tickets more expensive than me + number of tickets as well as me<= number="" of="" free="">
    nominal value * number of tickets I have to pay for my price/number of tickets, the same value as me; If the number of cheaper tickets than me < number="" of="" free="" tickets="" and="" number="" of="" tickets="" more="" expensive="" than="" me="" +="" number="" of="" tickets="" same="" as="" me=""> number of free tickets
    otherwise the price of the ticket face value =

    where the number of tickets I have to pay for my price = number of cards of the same value that me - (free tickets - number of cheaper tickets than me)

    As I said, you can use alleged relationships to help you work on:
    number of cheaper tickets than me
    and
    number of tickets as well as me

    Published by: Sean Reardon on April 11, 2013 08:35

  • Not able to connect after changing the password using the VALUES ALTER clause

    Hello

    John explained earlier the clause VALUES below thread.

    Status expired

    I created a new account named SURI, and tried to use the password of the user account from the HR by using the VALUES clause. I was able to change the password but not able to connect SURI with HR password.

    Please see below for details. And the SQL statements that I have tried.
    SQL*Plus: Release 10.2.0.1.0 - Production on Mon Aug 13 18:44:50 2012
    
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    
    Enter user-name: sys as sysdba
    Enter password:
    
    Connected to:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    
    SQL> SELECT password
      2  FROM dba_users
      3  WHERE username = 'HR';
    
    PASSWORD
    ------------------------------
    4C6D73C3E8B0F0DA
    
    SQL> ALTER USER SURI IDENTIFIED BY VALUES '4C6D73C3E8B0F0DA';
    
    User altered.
    
    SQL> SELECT password
      2  FROM dba_users
      3  WHERE username='SURI';
    
    PASSWORD
    ------------------------------
    4C6D73C3E8B0F0DA
    
    SQL> conn suri/hr     -- HR account's password is hr only
    ERROR:
    ORA-01017: invalid username/password; logon denied
    
    
    Warning: You are no longer connected to ORACLE.
    
    SQL>
    Thank you
    Suri

    Its because you have used a different username.
    Oracle produces a hash based on the user name and the password, not only the password.

    Therefore, you can not use the hashed password of a user to log on to the account of another user.

    You need to get the password hashed Suri and then connect you to suri by using the password hashed Suri (using the identified by the syntax of values)

  • Using the value of the column in the subquery?

    Hello friends. Because I didn't realize anything today, although focusing on the problem for hours, I would like to ask you a question.

    I have a report based on a query. The following statement is the minimum to avoid confusion between you:
    select cnt_gebiet, null work, 1 cs from tbl_gebiet
    
    union
    
    select 
    a.lng_gebiet,
    case when (select max(a.lng_arbeitsschritt) from 
    tbl_arbeit_zu_gebiet a, tbl_arbeitsschritte_neu b
    where 
    a.lng_arbeitsschritt = b.cnt_arbeitsschritt and b.lng_typ_arbeitsschritt = 3) = 1 then 0 else (select max(a.lng_arbeitsschritt) from 
    tbl_arbeit_zu_gebiet a, tbl_arbeitsschritte_neu b
    where 
    a.lng_arbeitsschritt = b.cnt_arbeitsschritt and b.lng_typ_arbeitsschritt = 3) end as lng_arbeitsschritt,
    2 cs
    from tbl_arbeit_crit_date a inner join tbl_arbeitsschritte_neu b on a.lng_arbeitsschritt = b.cnt_arbeitsschritt 
    where a.lng_arbeitsschritt = 1
    order by  cnt_gebiet asc, cs asc 
    My problem:

    I need to add the cnt_gebiet criteria to the query
    select max(a.lng_arbeitsschritt) from 
    tbl_arbeit_zu_gebiet a, tbl_arbeitsschritte_neu b
    where 
    a.lng_arbeitsschritt = b.cnt_arbeitsschritt and b.lng_typ_arbeitsschritt = 3 
    Do you have any idea how I can the union row, using the value of line (cnt_gebiet) of the above query as a criterion in the subquery resp. lower?

    skahlert,

    Something like this might work:


    WITH upper_query 

         AS ()SELECTcnt_gebiet   

                    NULL WORK , 

                    1 cs    

             DE tbl_gebiet   

             UNION

             SELECT a . lng_gebiet , 

                    CASE

                      WHEN (SELECTMax(a. lng_arbeitsschritt )  

                            DE tbl_arbeit_zu_gebiet a ,    

                                   tbl_arbeitsschritte_neu b 

                             a . lng_arbeitsschritt = b . cnt_arbeitsschritt    

                                   ET b . lng_typ_arbeitsschritt = 3 )=1     

                      THEN 0 

                      Else (SELECTMax(a. lng_arbeitsschritt )  

                            DE tbl_arbeit_zu_gebiet a ,    

                                   tbl_arbeitsschritte_neu b 

                             a . lng_arbeitsschritt = b . cnt_arbeitsschritt    

                                   ET b . lng_typ_arbeitsschritt = 3 )   

                    END AS lng_arbeitsschritt ,  

                    2 cs   

             DE tbl_arbeit_crit_date a    

                    INTERIOR JOIN them tbl_arbeitsschritte_neu b   

                      ON a . lng_arbeitsschritt = b . cnt_arbeitsschritt   

              a . lng_arbeitsschritt = 1    

             ORDER BY cnt_gebiet CSA ,   

                      cs CSA ) 

    SELECT Max (a. lng_arbeitsschritt ) 

    DE tbl_arbeit_zu_gebiet a ,    

           tbl_arbeitsschritte_neu b , 

           upper_query

    a . lng_arbeitsschritt = b . cnt_arbeitsschritt    

           ET b . lng_typ_arbeitsschritt = 3   

           ET upper_query . cnt_gebiet = : variable   

    Jeff

  • Hi all OneHow can you buy an IBook UK not available in Indian store a store; When you change the status of your country, your billing information and credit cards won't work; is there a solution for this using the same method of billing.

    Hello world

    How can buy you an IBook of UK not available in Indian store a store; When you change the status of your country, your billing information and credit cards won't work; is there a solution for this using the same method of billing

    There is no solution, if it is not available in your area, you can't buy it.

  • You can use the value of a digital indicator in a digital control?

    Hello!

    I have to develop a code where I need to find the maximum value of a waveform and draw a line at 50% of the value. So I chose find the amplitude of say 10 cycles of waveforms and found the maximum value of the amplitude.

    But my real problem is, I have to use the maximum amplitude value I get from the table VI maximum and back into a program to calculate the value of 50%.

    So it is possible to use the value of a digital indicator and put it in a digital control? As in MATLAB or C, you give a name to the variable and use it later to do all the calculations. Is it possible to do something similar in LabVIEW?


  • 5.7 LR is no longer exporting files jpg (from RAW). No error message, just "finished work". No way around changing some options for export as the name of file, image size...

    Why is 5, 7 LR is no longer exporting ALL files jpg (from RAW)?

    No error message, just the usual "finished work" - but without actually writing a jpg file.  No way around changing some options for export as the name of file, image size...

    Hi antjeh37833361,

    Could you please export a Jpeg image and see if it exports.

    Also try to export the RAW image in Jpeg format on the desktop and then see if it exports.

    Please upgrade to the latest version 5.7.1 if Lightroom you are currently on 5.7

    Kind regards

    Tanuj

Maybe you are looking for

  • 4730 proBook s: when I try to access BIOS Setup, system diagnostics display

    Please help me guysWhen I try to access the BIOS SetupDiagnosis appear, and even impossible to access Boot OptionsI am pressing F10, and when I try one of these (Startup Options, BIOS)Please help me HP only in this oneI'm in a lot of trouble at the m

  • Low speaker volume. Can't hear anything. A lot of echo. External speakers work fine

    HP Pavilion dv6 - 6155ca Windows 7-64 bit

  • T61 multimedia card slot

    my laptop is T61 7658 CTO with vista. There is no Pc card slot & media card slot. Like using on the computer, the SD card can be used in media card slot. but I don't know how to install the sd card into the media card slot. the slot looks a little bi

  • Files wmv Windows Mail attachments

    When opening an e-mail using Windows Mail with an attachment wmv I get only audio and no video. I can't stop the audio even trying to delete the email. I wish to see the attachment of email correctly with audio and video. I think this happened after

  • Compare the number of predefined list

    I'm trying to get the phone number currently, and according to a predefined list, do some actions. To do this, I configured a custom PhoneListener and use the following code: //get the dialed number String phoneNumber = Phone.getActiveCall().getDispl