LOV with PL/SQL in APEX 4.0

I want to create a LOV in APEX 4.0 with the help of PL/SQL block,but when I am pasting my PL/SQL block code in the List Of Values area and try to run it, it is showing me error "Rendering Page ITEM F300_P1510_PROJECT_TASK raised the following error: ORA-20001: Query must begin with SELECT or WITH" where F300_P1510_PROJECT_TASK is my LOV name.
Please help me how to fix this.

Hi,
The way to do this that comes to mind, and I know it works because I have done it, is rather long and uses Ajax
1. Create an On Demand Application Process that returns this as a string
<optgroup label="Swedish Cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
</optgroup>
<optgroup label="German Cars">
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</optgroup>2. Write a javascript function (HTML Header) that will
a. Make an Ajax call to the Application Process in step 1
b. replace the options in the select tag with the result of the ajax call
3. Call the js function in step 2 using onload from HTML Body Attribute.
The pure SQL PL/SQL way would be as follows:
a. Create a PIPELINED function that returns the display, return pairs of values
b. Use the above function in SELECT in the LOV
Maybe there is a simpler way, but it eludes me.
Regards,
Edited by: Prabodh on Aug 20, 2010 4:23 PM

Similar Messages

  • LOV with dynamic SQL

    Hi everyone
    I would like to have an LOV that returns the list based on a dynamic SQL statement based on page items.
    Example:
      :P1_ID_COLNAME    := 'empno';
      :P1_VALUE_COLNAME := 'name';
      'SELECT ' || :P1_VALUE_COLNAME || ', ' || :P1_ID_COLNAME || ' FROM emp;'resulting in
      SELECT name, empno FROM emp;My PL/SQL skills are fairly limited. However, my assumption would be to use EXECUTE IMMEDIATE within a function and returning a REF CURSOR containing the dynamic query.
    Do you agree with that? Or have you even got other ideas?
    Appreciate your thoughts.
    Regards,
    Michael

    I've found the solution myself.
    It's even easier than I thought:
    APEX allows a LOV source to be a VARCHAR2 return value of a function:
    LOV source
    RETURN f_get_query(:P1_VALUE_COLNAME, :P1_ID_COLNAME);
    function on DB
    FUNCTION f_get_query(
        in_value_colname VARCHAR2,
        in_id_colname VARCHAR2
    RETURN VARCHAR2
    IS
    BEGIN
      RETURN 'SELECT ' || in_value_colname || ', ' || in_id_colname || ' FROM emp;';
    END;Michael

  • Ajax LOVs with a SQL source

    Hi,
    I have two pages that I'm using I'm using Ajax to populate cascading Lov's(town and suburb). One page is a create record page, and the other is an edit of the same record. I have 2 LOV's. On the 'create' page the ajax works perfectly and allows me to choose a suburb(LOV2) based on the town(LOV1) selected in LOV1, however in the edit page the suburb selected does not show in LOV2 even though I am passing it in the source(SQL query). I want LOV2 to show the suburb selected then if you click on the dropdown, show the other suburbs available under the town selected in LOV1.
    Any ideas?Or is there a more elegant way to handle this?
    Thanks

    Hi
    Here it is:
    .00:
    0.00: S H O W: application="173" page="10" workspace="" request="" session="6993176175380586"
    0.01: Language derived from: FLOW_PRIMARY_LANGUAGE, current browser language: en-us
    0.01: alter session set nls_language="AMERICAN"
    0.01: alter session set nls_territory="AMERICA"
    0.01: NLS: CSV charset=WE8MSWIN1252
    0.01: ...NLS: Set Decimal separator="."
    0.01: ...NLS: Set NLS Group separator=","
    0.01: ...NLS: Set date format="DD-MON-RR"
    0.01: ...Setting session time_zone to +00:00
    0.01: Setting NLS_DATE_FORMAT to application date format: DD/MM/YYYY
    0.01: ...NLS: Set date format="DD/MM/YYYY"
    0.01: NLS: Language=en-us
    0.01: Application 173, Authentication: CUSTOM2, Page Template: 55669127687495456
    0.01: ...Determine if user "WEYKU6B3" workspace "31732801716199613" can develop application "173" in workspace "31732801716199613"
    0.01: ...ok to reuse builder session for user:ANONYMOUS
    0.01: ...Application session: 6993176175380586, user=ANONYMOUS
    0.01: ...Determine if user "WEYKU6B3" workspace "31732801716199613" can develop application "173" in workspace "31732801716199613"
    0.01: ...Check for session expiration:
    0.01: Session: Fetch session header information
    0.01: Saving g_arg_names=P10_E_ID and g_arg_values=314
    0.02: Fetch session state from database
    0.02: ...Session State: Save Item "P10_E_ID" newValue="314" "escape_on_input="N"
    0.02: Saving g_arg_names=P10_PR_ID and g_arg_values=
    0.02: ...Session State: Save Item "P10_PR_ID" newValue="" "escape_on_input="N"
    0.02: ...Metadata: Fetch page attributes for application 173, page 10
    0.02: Branch point: BEFORE_HEADER
    0.02: Fetch application meta data
    0.03: Setting NLS_DATE_FORMAT to application date format: DD/MM/YYYY
    0.03: ...NLS: Set date format="DD/MM/YYYY"
    0.03: Computation point: BEFORE_HEADER
    0.03: Processing point: BEFORE_HEADER
    0.03: ...Process "GET_NEXT_E_ID": PLSQL (BEFORE_HEADER) DECLARE v_e_count NUMBER; BEGIN select count(1) into v_e_count from ENTITY where E_ID > :P10_E_ID; IF v_e_count > 1 THEN SELECT MIN(E_ID) INTO :P10_NEXT_E_ID FROM ENTITY WHERE E_ID > :P10_E_ID; END IF; END;
    0.03: ...Session State: Save Item "P10_NEXT_E_ID" newValue="334" "escape_on_input="N"
    0.03: ...Process "GET_PREV_ID": PLSQL (BEFORE_HEADER) DECLARE v_e_count NUMBER; BEGIN select count(1) into v_e_count from ENTITY where E_ID < :P10_E_ID; IF v_e_count > 1 THEN SELECT MAX(E_ID) INTO :P10_PREV_E_ID FROM ENTITY WHERE E_ID < :P10_E_ID; END IF; END;
    0.04: Show page template header
    0.04: Computation point: AFTER_HEADER
    0.04: Processing point: AFTER_HEADER
    ANONYMOUSLogout
    0.04: Computation point: BEFORE_BOX_BODY
    0.04: Processing point: BEFORE_BOX_BODY
    0.04: Region: Edit Buyer
    Edit Buyer

  • POP up LOV with check boxes for APEX 4.0

    I'm using APEX 4.0 on Oracle 11g and I will like to be able to select multiple selections when the POP UP dislplays. Is there a way to add check boxes?
    Thanks In Advance
    Jenice

    Hallo to all,
    again i can't find any turnaround for having a pop up, working with the technique I mentioned.
    Did anybody know a turnaround / can point to a good link?
    I'm very frustrated because with select list based on query works without problem... (but using this object is not the case such the user have to insert new value as well directly from the tabulare form).
    Thanx
    Message was edited by:
    Marcello Nocito
    Message was edited by:
    Marcello Nocito

  • LOV with 'ALL' option

    I need to create an LOV with individual campus codes along with the option for selecting all of them. For my ALL option (in static list), I have the literal 'ALL' as my display and the string of (1,2,4,5 etc) as my return. This, however, does not work. I have also tried adding tic mark(s) to the string ('1','2','4' etc)... she still no work. Anyone know of a work-around?
    Thanks.

    radgid is right and its very useful.
    but but..... if you explicitly required this thing then try this:
    --not tested in Apex but running in sql*Prompt
    Create table Campus
    (Campus_code Number,
    Campus_Name varchar2(30));
    insert into campus
    Select Rownum, dbms_random.string('a',10) RandNames from dual
    Connect by level <=5;
    SELECT Campus_Name,
    LTRIM(MAX(SYS_CONNECT_BY_PATH(Campus_code,',')) KEEP (DENSE_RANK LAST ORDER BY curr),',') Return_val
    FROM (SELECT 'ALL' Campus_Name,
    Campus_code,
    ROW_NUMBER() OVER (PARTITION BY 'ALL' ORDER BY Campus_code) AS curr,
    ROW_NUMBER() OVER (PARTITION BY 'ALL' ORDER BY Campus_code) -1 AS prev
    FROM Campus)
    GROUP BY Campus_Name
    CONNECT BY prev = PRIOR curr AND Campus_Name = PRIOR Campus_Name
    START WITH curr = 1
    Union All
    Select Campus_Name, To_Char(Campus_Code) Campus_Code from Campus order by Campus_Name

  • The popup LOV is very slow in APEX 4.0, did anyone can help on this?

    The popup LOV is very slow in APEX 4.0, did anyone can help on this?
    Wherever I try to open a popup LOV windows , I am always be very patient to wait the window show . Even if only a very few record to show.
    Edited by: daniel.luo on 2010/7/28 上午 7:52

    Hi Daniel,
    it probably doesn't matter how many records you show if you have an ORDER BY clause in your SQL statement. Because the database still has to do all the work to return you the first result set.
    Is the query itself fast if you execute it in "SQL Workshop"?
    Have you already tried the setting "Fetch" = "No Fetch"? Is the window now opening faster? I just want to rule out that it's a generic problem, but I think it has to do with your SQL statement.
    Was the popup LOV for this SQL statement faster in 3.2?
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins

  • I need to host a website with a SQL database - Azure pricing details are too confusing

    Hello,
    I need to give a potential client a hosting price for a somewhat simple web application they want me to build. I told them it shouldn't be a problem. After gathering the requirements, I figured I would use the following technology to build and host
    it:
    ASP.NET 4.5
    MVC 5
    1 SQL Database ~ 25GB with options to expand and also with a backup
    SSL certificate needed
    Hosting would be on Azure because I have some experience using Visual Studio 2012 and integrating the Visual Studio Online (TFS) source code and scrum web applications. I've never actually spun up a website with a SQL database using Azure before, but I
    imagined it wasn't too difficult to find a general hosting plan to support the above requirements.
    The use of the website will be very simple and limited to the basic CRUD operations. Will support forms authentication using the Identity 2.0 framework. The web applications main purpose is to fill out a form for new accounts, have a search page for
    those accounts, a page to view a created account and add notes to it. So performance wise, it isn't asking for much. I just want it to be fast and secure.
    So I start looking on the Azure's pricing landing page which is here: (can't put links in here, but search Azure pricing on Bing) and I see this Pricing Calculator, so I click it
    First thing I notice is the Websites tab doesn't mention SQL Database - in fact the Data Management is a separate tab from Websites. And if I made my selections on the Websites tab, the estimated monthly price doesn't stay the same when I go to the Data
    Management tab - so I get the illusion I have to have two separate purchases.
    I'm not exactly sure if the Pay as You Go billing feature would be okay because it's just a bit scary to leave every monthly payment up to chance; somewhat. Would love to know if there is other payment options that I could see for what I described above.
    I want to use Azure to host my asp.net website - it makes sense and the integration with Visual Studio is amazing. I love the publish feature for both MVC 5 Projects and SQL Database Projects.
    Thanks in advance for the help!

    Hello jdevanderson,
    I suggest that you start by looking at the pricing TIERS for the Azure website. This link will give you clarity on different Service TIERS that are availaible:
    http://azure.microsoft.com/en-in/pricing/details/websites/
    You can guage your requirement and choose the Service TIER accordingly.
    And regarding the database, you are right about it. You will be charged seperately for the database. You can refer to this link that will give you clarity on SQL database pricing:
    http://azure.microsoft.com/en-in/pricing/details/sql-database/
    Refer to this link for more information on 'How pricing works':
    http://azure.microsoft.com/en-in/pricing/
    Use the full calculator to add your website and the database to get an estimated cost:
    http://azure.microsoft.com/en-in/pricing/calculator/?scenario=full
    Thanks,
    Syed Irfan Hussain

  • Interactive Report with PL/SQL Function Source

    Is it possible to create interactive report with PL/SQL function source returing a query? If not, has anyone done any work to simulate the interactive reporting feature for a normal report using API?

    I haven't tried that before but you could:
    1. create a collection from your result set returned by a dynamic query,
    2. create a view on that collection,
    3. use the view in your interactive report.
    The usability of this proposal depends from a question how "dynamic" your query is - does it always have the same number of columns or not.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Problem with custom_auth_sso.plb in APEX 3.1

    When I run custom_auth_sso.plb get the following error:
    SQL> conn / as sysdba;
    SQL> alter session set current_schema = FLOWS_030100;
    SQL> @custom_auth_sso.plb;
    ...wwv_flow_custom_auth_sso
    Warning: Package Body created with compilation errors.
    Errors for PACKAGE BODY WWV_FLOW_CUSTOM_AUTH_SSO:
    LINE/COL ERROR
    120/9 PL/SQL: Statement ignored
    120/9 PLS-00201: identifier 'WWV_EXECUTE_IMMEDIATE.RUN_BLOCK2' must be
    declared
    206/29 PL/SQL: Item ignored
    206/44 PLS-00201: identifier 'SYS.DBMS_SYS_SQL' must be declared
    341/18 PL/SQL: Statement ignored
    342/19 PLS-00320: the declaration of the type of this expression is
    incomplete or malformed
    347/22 PL/SQL: Statement ignored
    347/54 PLS-00320: the declaration of the type of this expression is
    incomplete or malformed
    353/18 PL/SQL: Statement ignored
    353/28 PLS-00201: identifier 'SYS.DBMS_SYS_SQL' must be declared
    357/22 PL/SQL: Statement ignored
    357/55 PLS-00320: the declaration of the type of this expression is
    incomplete or malformed
    364/18 PL/SQL: Statement ignored
    364/49 PLS-00320: the declaration of the type of this expression is
    incomplete or malformed
    368/21 PL/SQL: Statement ignored
    368/26 PLS-00201: identifier 'SYS.DBMS_SYS_SQL' must be declared

    this is the script I am trying to execute. the errors I am getting are also here. I have tryied Doc ID: 558247.1 and it didnt work.
    SQL> @d:\apex\apex\core\custom_auth_sso_902.plb;
    ...wwv_flow_custom_auth_sso
    Warning: Package Body created with compilation errors.
    Errors for PACKAGE BODY WWV_FLOW_CUSTOM_AUTH_SSO:
    138/9 PL/SQL: Statement ignored
    138/9 PLS-00201: identifier 'WWV_EXECUTE_IMMEDIATE.RUN_BLOCK2' must be
    declared
    224/29 PL/SQL: Item ignored
    224/44 PLS-00201: identifier 'SYS.DBMS_SYS_SQL' must be declared
    375/18 PL/SQL: Statement ignored
    376/19 PLS-00320: the declaration of the type of this expression is
    incomplete or malformed
    381/22 PL/SQL: Statement ignored
    381/54 PLS-00320: the declaration of the type of this expression is
    incomplete or malformed
    387/18 PL/SQL: Statement ignored
    387/28 PLS-00201: identifier 'SYS.DBMS_SYS_SQL' must be declared
    391/22 PL/SQL: Statement ignored
    391/55 PLS-00320: the declaration of the type of this expression is
    incomplete or malformed
    398/18 PL/SQL: Statement ignored
    398/49 PLS-00320: the declaration of the type of this expression is
    incomplete or malformed
    402/21 PL/SQL: Statement ignored
    402/26 PLS-00201: identifier 'SYS.DBMS_SYS_SQL' must be declared
    SQL>

  • Joining 2 related records using PL SQL in Apex - Problems when there are more than 2 related records?

    Hi
    I am combining 2 related records of legacy data together that make up a marriage record.  I am doing this in APEX using a before header process using the following code below which works well when there are only 2 related records which joins the bride and groom record together on screen in apex.  I have appended a field called principle which is set to 'Y' for the groom and 'N' for the bride to this legacy data
    However there are lots of records where in some instances there are 3, 4 , 5, 6 or even 1 record which causes the PL/SQL in APEX to not return the correct data.  The difference in these related columns is that the name of the bride or groom could be different but it is the same person, its just that from the old system if a person had another name or was formally known as they would create another duplicate record for the marriage with the different name, but the book and entry number is the same as this is unique for each couple who get married.
    How can I adapt the script below so that if there are more than 2 records that match the entry and book values then it will display a message or is there a better possible work around?  Cleaning the data would be not an option as there are thousands of rows of where these occurrences occur
    declare 
         cursor c_mar_principle(b_entry in number, b_book in varchar2) 
         is 
              select DISTINCT  id, forename, surname, marriagedate, entry, book,  formername, principle
              from   MARRIAGES mar 
              where  mar.entry   = b_entry
              and    mar.book = b_book
              order by principle desc, id asc; 
         rec c_mar_principle%rowtype;
    begin 
    open c_mar_principle(:p16_entry,:p16_book)  ;
    fetch c_mar_principle into rec;
    :P16_SURNAME_GROOM   := rec.surname; 
    :P16_FORNAME_GROOM   := rec.forename;
                   :P16_ENTRY := rec.entry; 
                   :P16_BOOK :=rec.book;
    :P16_FORMERNAME :=rec.formername;
    :P16_MARRIAGEDATE :=rec.marriagedate;
    :P16_GROOMID  := rec.id;
    fetch c_mar_principle into rec;
    :P16_SURNAME_BRIDE   := rec.surname; 
    :P16_FORNAME_BRIDE   := rec.forename;
                   :P16_ENTRY := rec.entry; 
                   :P16_BOOK :=rec.book;
    :P16_FORMERNAME :=rec.formername;
    :P16_MARRIAGEDATE :=rec.marriagedate;
    :P16_BRIDEID  := rec.id;
    close c_mar_principle;
    end;

    rambo81 wrote:
    True but that answer is not really helping this situation either?
    It's indisputably true, which is more than can be said for the results of querying this data.
    The data is from an old legacy flat file database that has been exported into a relational database.
    It should have been normalized at the time it was imported.
    Without having to redesign the data model what options do I have in changing the PL/SQL to cater for multiple occurances
    In my professional opinion, none. The actual problem is the data model, so that's what should be changed.

  • Problems with PL/SQL

    Hi,
    I know that there are much threads for PL/SQL, but I nowhere found an explanation for my problem ... sorry
    I have a LOV with years (2002, 2003, 2004, ...). The display value is a number, the return value is an varchar2. If nothing is selected 0 is returned.
    Then I have a report that should be filtered depending on the selection if this LOV.
    So my code look like this
    DECLARe
    str_express varchar2(2000);
    BEGIN
    IF P2_YEAR != '0' THEN
    str_express := 'select ... from ... where year = :P2_YEAR';
    ELSE
    str_express := 'select ... from ... ';
    END IF;
    return str_express;
    END;
    But it never is filtered, I always get all rows. If I delete the IF ... THEN ... ELSE ... END IF; then everything is ok. What have I done wrong? I've also tried
    F :P2_YEAR <> '0' ...',
    F :P2_YEAR <> 0 ...',
    F :P2_YEAR != 0 ...', but nothing works. If I have a look in session state the value of this fields is the selected one and it also works in the select statement without the IF.
    Thanks for help.
    chrissy

    I think the problem is that you are trying to compare a date value to a string in your PL/SQL, try something like this:
    if to_char(:P_Year,'YYYY') !='2004'

  • Using LOV with bind var as custom attribute?

    I have an Portal LOV which uses a bind variable.
    Can I use this LOV as a custom attribute? If so, how do I specific the bind variable value?
    In the display option of the attribute I tried LOV_NAME(LOV_Bind => 'value'), but the LOV is not applied.

    It's been quite a while, but I think I remember trying this and not being able to achieve it. You can use a LOV with a bind variable in a report or in a form, or similar, but there is no way in an item to from specify where to get the bind variable. My suggestion if this is a requirement would be to use a portal form which submits to a stored procedure or pl/sql generated form to gather the attributes and then programmatically create the item using the APIs. Takes a bit of work, but gets you exactly what you described above.
    Rgds/Mark M.

  • LOV with subselect shows return_value instead of display_value

    Hi,
    I have the following dynamic SQL based LOV with a union in it that does not display correctly in the application.
    SELECT role_name d, role_seq r
    FROM apex_app_roles ar
    WHERE security_level = 1
    AND :F2500_APP_USER in
    (SELECT au.user_id FROM
    apex_app_user au,
    apex_app_user_roles auar
    WHERE ar.role_seq = auar.role_seq
    AND auar.user_seq = au.user_seq)
    UNION
    SELECT role_name d, role_seq r
    FROM APEX_APP_ROLES ar
    WHERE security_level = 0
    ORDER BY 1
    The problem I have is the first part of the SQL is displaying the return_value instead of the display_value. If I comment out the following the proper value is displayed in the application.
    AND :F2500_APP_USER in
    (SELECT au.user_id FROM
    apex_app_user au,
    apex_app_user_roles auar
    WHERE ar.role_seq = auar.role_seq
    AND auar.user_seq = au.user_seq)
    We currently have version 4.0.1.00.03 installed.
    Is there an issue with this version and what I am trying to do or is there something wrong with what I'm doing? The SQL returns the proper results if I run it in the SQL workshop so I'm at a loss here and if anyone can help it would be greatly appreciated.
    Thanks,
    Bruce

    The value is correct. I can run the entire SQL in workshop using parameter substitutions and it returns all the values correctly. So running this
    SELECT role_name d, role_seq r
    FROM apex_app_roles ar
    WHERE security_level = 1
    AND :F2500_APP_USER in
    (SELECT au.user_id FROM
    apex_app_user au,
    apex_app_user_roles auar
    WHERE ar.role_seq = auar.role_seq
    AND auar.user_seq = au.user_seq)
    UNION
    SELECT role_name d, role_seq r
    FROM APEX_APP_ROLES ar
    WHERE security_level = 0
    ORDER BY 1
    returns all the rows and looks like this.
    D     R
    ACP_ADMIN     3
    READ_ONLY     2
    READ_WRITE_ALL     1
    SERVICE_DESK_ADMIN     4

  • Fill the LOV with data during the execution

    Hi
    I am using Oracle 10g
    I want to ask please if there is a way to fill the LOV with data during the execution
    so can I change the query specified in LOV wizard during the execution and get a new record set according to the value in the text boxes
    thank you for help

    You can use the SET_LOV_PROPERTY built-in to change the record group of the LOV and to create a new record group you can use the CREATE_GROUP_FROM_QUERY built-in.
    it will be something like this.
    RG_ID := FIND_GROUP('<record group name>');
      IF NOT ID_NULL(RG_ID) THEN
           DELETE_GROUP(RG_ID);
      END IF ;
      RG_ID := CREATE_GROUP_FROM_QUERY('<record group name>', '<your SQL statement here>');
      POP_GROUP := POPULATE_GROUP('<record group name>');
      SET_LOV_PROPERTY('<LOV name>', GROUP_NAME, '<record group name>');Use the online help for more information about these built-ins.
    Tony

  • LIST MANAGER - Replace popup lov - with stationary scrollable box

    Sorry... I thought this was Oracle 10g XE form...could you direct me to right form.
    LIST MANAGER - Replace popup lov - with stationary scrollable box...
    The end result would be: 2 scrollable list boxes separated by the word ADD / REMOVE. One to select from and the other box to act as collection box
    The popup LOV is quick and fast ..but is a little time consuming
    Oracle 10g XE
    Message was edited by:
    user518110

    Hi user518110,
    1) please update your forum handler to a more friendlier name.
    2) I think your are looking for the Shuttle component in Oracle APEX, like on the following page http://apex.oracle.com/pls/otn/f?p=2672:2
    If you are using Oracle XE you are probably using Oracle APEX 2.1, you have to upgrade this version to Oracle APEX 3.0 which contains this new control. See http://www.oracle.com/technology/products/database/application_express/html/3.0.1_and_xe.html for details.
    Patrick
    My APEX Blog: http://www.inside-oracle-apex.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://apexplugin.sourceforge.net/ New!

Maybe you are looking for

  • How can I use an Access front end and Access button to control a LabView Shared variable boolean?

    My company has invested a lot of money on the office network to write many many access databases and front ends. I'm looking for a way to tie a button on an access front end to toggle a LabView boolean shared variable to notify me when they changed s

  • LG 3D Smart TV

    What is the difference if the TV has Internet connection or the DVD Bluray has Internet connection?  I want to buy the LG 3D smart TV but my question is could I buy a Blu-ray player that I connect to the Internet instead of buying a more expensive TV

  • Trying to get PHP (5.2.5) via Apache Web Server (2.2.13) to work.

    From binaries. 1. I was able to get the command line execution of 01.php to work with php w/o Apache. 2. I am able to get normal PHP to work in Apache and I'm able to load up some php extensions that come with PHP such as php_zip.dll which show up as

  • InDesign 9.2.1 (CC) Device Independent PS File Size? Help!

    I'm trying to save an InDesign PS file through the Print dialogue box. PDFs are not working for the architectural plotter so that's not an option. Trouble is that the PS file is only collecting the pages at letter size. My file must be architectural

  • Big exclamation point

    SOS when i click on certain pics im my i-photo library, a big exclamation point shows up where my photo should. i can't export the photo or drag it to my desktop. please help. thanks.