Dbms_output.put_line not displaying anything

I am running the below code (ssn_run.sql) using sqlplus 10.2.0.1.0 on my windows XP professional client PC.
The database is a Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit running on Solaris
I cracked my head for about one hour but couldn't figure out this :
accept input_ssn prompt 'Enter SSN :'
set feedback on
set serveroutput on
set echo on
set term on
set heading on
set pagesize 0
set linesize 10000
set verify on
undefne sdate input_ssn
col sdate new_value sdate
col input_ssn new_value input_ssn
select to_char(sysdate,'YYYYMMDD') sdate from dual;
spool C:\PERSON_DATA_&&sdate._&&input_ssn..TXT
select 'REPORT GENERATED ON : '||SYSDATE FROM DUAL;
begin
select personid into v_personid from person where SIN = '&&input_ssn';
INSERT INTO PERSON_OLD
(PERSONID, TITLE, FNAME, MNAME, LNAME, ACFM, SIN, UNAME, AKANAME, DCFM,
IROWID, SUFFIX, PTYPE, OLD_SSN)
SELECT PERSONID, TITLE, FNAME, MNAME, LNAME, ACFM, SIN, UNAME,
AKANAME, SIN FROM PERSON WHERE SIN = '&&input_ssn';
INSERT INTO MEMBER_OLD
(CLNT, MKEY, PERSONID, MEMNO, OLD_MEMNO)
SELECT CLNT, MKEY, PERSONID, MEMNO,MEMNO
FROM MEMBER WHERE PERSONID IN(SELECT PERSONID FROM PERSON WHERE SIN = '&&input_ssn');
UPDATE PERSON SET FNAME = TRANSLATE(SIN,'0123456789','ACEGIKMOQS'),
LNAME = TRANSLATE(SIN,'0123456789','SQOMKIGECA'),
UNAME = TRANSLATE(SIN,'0123456789','ACEGIKMOQS')||' '||TRANSLATE(SIN,'0123456789','SQOMKIGECA'),
AKANAME=NULL WHERE SIN = '&&input_ssn';
UPDATE MEMBER SET MEMNO = MKEY WHERE PERSONID IN(SELECT PERSONID FROM PERSON WHERE SIN = '&&input_ssn');
for i in(select personid person_other from person_relation where relpersonid in(select personid from
person where PERSONID = v_personid))
loop
dbms_output.put_line('i.person_other is : '||i.person_other);
UPDATE MEMBER SET MEMNO = MKEY WHERE PERSONID = i.person_other;
end loop;
EXCEPTION
WHEN OTHERS THEN
     ecode := SQLCODE;
     emesg := SQLERRM;
     dbms_output.put_line('Error while data scrubbing: Error code is : ' || ' - ' || ecode);
     dbms_output.put_line('Error message is :' || ' - ' || emesg);
end;
spool off;
set term on
set feedback on
set HEADING on
set verify on
--End of code
The SELECT statement that comes in the for loop should return data as v_personid has a value. (I tested this by a select statement)
However, I am just not able to display the line which comes in the inner loop :
dbms_output.put_line('i.person_other is : '||i.person_other);
The result of this dbms output put_line neither shows up on the screen, nor it gets written to the spool file...I am stumped with this...
The other dbms_output put_lines that display error displays okay, but not the one in the inner loop.... Can someone help me out if you see any obvious issues here........
Also my UPDATE MEMBER statement inside the for loop doesn't do anything whereas it was supposed to update a row !!
Thanks

You could display the number the query return by adding;
v_count number;After you assign v_personid;
dbms_output.put_line('v_personid  is : '||v_personid );
(select count(*)
into v_count
from person_relation
where relpersonid in(
   select personid
   from person
   where PERSONID = v_personid)).
dbms_output.put_line('v_count  is : '||v_count );

Similar Messages

  • HT5429 maps on iphone 5 do not display anything

    Hi everyone. I recently bought a new iPhone 5 and I have a serious problem with my maps app. It does not display anything I search except the grid lines and pins. please help how can I fix it.  pls send the instructions at [email protected] Thank you in advance.

    It is not a good idea to put any kind of personal contact information in such a public forum.
    First, close the maps app. Double click the home button.  At the bottom, press and hold any app until a red circle appears on the top of each.  Tap the red circle on the Maps app.  Next, reset the phone:  press and hold the power and home buttons at the same time until the Apple logo appears.  Ignore the red slider if it appears.

  • DBMS_OUTPUT.PUT_LINE not working in Stored Functions

    Hi All,
    I have one doubt, why is dbms_output.put_line not supported in Stored Functions?
    create or replace function func_in_sql(var number) return varchar2
    is
    begin
    If var is not null then
    return to_char(dbms_output.put_line(var));
    else
    return to_char(dbms_output.put_line('null'));
    end if;
    end;
    Returns error -
    LINE/COL ERROR
    5/3 PL/SQL: Statement ignored
    5/18 PLS-00222: no function with name 'PUT_LINE' exists in this scope
    7/3 PL/SQL: Statement ignored
    7/18 PLS-00222: no function with name 'PUT_LINE' exists in this scope
    Any idea why this is happening?
    I know that to print value one can just use return statement and value will be printed in SQL Prompt.
    But what makes me think is why error for PUT_LINE method?
    If error is not thrown at DBMS_OTUPUT then doesnt that mean all methods of DBMS_OUTPUT should be accessible in a function.
    Thanks in advance!
    Av.

    Hi,
    For cant call proc inside func, or in-line thing you mentioned, just tried following -
    Here is our previous Func -
    create or replace function func_in_sql(var number) return varchar2
    is
    begin
    /*If var is not null then
    return to_char(dbms_output.put_line(var));
    else
    return to_char(dbms_output.put_line('null'));
    end if;
    exception_test;
    return 'a';
    end;
    and here is our proc -
    procedure exception_test
    as
    v_count1 number;
    v_count2 number;
    begin
    select count(test_id)
    INTO V_COUNT1
    from TEST_TABLE;
    If SQL%NOTFOUND Then
    dbms_output.put_line('notfound');
    End If;
    dbms_output.put_line(v_count1);
    exception
    when no_data_found then
    If SQL%NOTFOUND Then
    dbms_output.put_line('notfound');
    End If;
    dbms_output.put_line('no_data');
    WHEN TOO_MANY_ROWS THEN
    dbms_output.put_line('too many rows');
    when others then
    dbms_output.put_line('others');
    end;
    and here is the call to func -
    SQL> select func_in_sql(x) from t1;
    FUNC_IN_SQL(X)
    a
    a
    a
    a
    4 rows selected.
    So this shows it works.
    Is this what you said? or Am I getting you wrong?
    Thanks!
    Av.

  • Compaq 615 not displaying anything

    I was updating the Windows updates. then when It was displaying the message "do not turn off your computer. Windows is updating. " I mistakenly kicked the power pack cable and it removed it from the socket then the laptop turned off because I was using it with no bttry. When I switched it on its not displaying anything even the Windows f8 stage is not reached. how do I fix this problem. It's not getting in bios as well

    bpali2001 wrote:
    i have an adc 23 apple cinema hd display. that gets some power for the button backlights but no signal. i tried the dvi out with an other monitor. that gets no signal also. could resetting the PMU twice in a quick succession (accidentally) cause this problem?
    Can you answer BDAqua's last question please…
    BDAqua wrote:
    I believe we have a PSU or Logic Board problem, using the DVI monitor does alt key on power up bring up anything on the display?
    We need specific confirmation otherwise steps may be missed & nothing is resolved.
    We also need to know about what tones you hear on startup - are you hearing the normal startup tone or something else?

  • My apple TV will not display anything although it [the TV] meets all of the requirements. It worked for about four or five days and than stopped yesterday, but when i brought it to the apple store, it connected fine to their tv. Any help or suggestion?

    My apple TV will not display anything although it [the TV] meets all of the requirements. It worked for about four or five days and than stopped yesterday, but when i brought it to the apple store, it connected fine to their tv. Any help or suggestion?

    mrdctaylor wrote:
    Since I updated to the latest/greatest version of the software I can no longer put my Apple TV to sleep by holding down the middle button.
    Thanks!
    Apple have changed this setting with the Apple TV Software Update 5.1:
    About Apple TV (2nd and 3rd generation) software updates
    Feature
    Summary
    Shared Photo Streams
    Accept invitations for Shared Photo Streams, browse photos and comments, and receive notifications of new content.
    AirPlay
    Send audio content from Apple TV to AirPlay-enabled speakers and devices (including AirPort Express and other Apple TVs). Also includes the ability to require an onscreen code to use AirPlay with your Apple TV.
    iTunes account switching
    Save multiple iTunes accounts and switch quickly between them.
    Trailers
    Search movie trailers. In the United States, see show times for local theaters.
    Screen savers
    New Cascade, Shrinking Tiles, and Sliding Panels screen savers.
    Main menu
    Reorder icons on the second page by holding down the select button on the remote.
    Subtitles
    SDH support for the deaf and hard-of-hearing as well as improvements to viewing and selecting subtitles.
    Network configuration
    Support for setting up advanced network options using configuration profiles. Seehttp://support.apple.com/kb/HT5437 for more information.
    Stability and performance
    Includes general performance and stability improvements.
    If you don't like this, you can leave feedback here: Apple Feedback

  • ST06 - detailed Analisys - OS log not displaying anything

    Hi Experts,
                   ST06 -> detailed Analisys -> OS log not displaying anything in my developement system. When I clickon the OSLog, it is giving the error message "<b>error message:Invalid Parameter
    Please check your Saposcol and your CCMS Agents</b>"
    I have already stopped and started the SAPOSCOL. even though it is not working still...
    Please help to resolve this isssue.
    Thanks,
    Madhuri.

    Hey Madhuri,
    Did you get your issue resolved ? I 'm also facing the same problem.
    If u hvae resolved the issue, do tell me how..
    Regards
    Rahat

  • Dbms_output.put_line not printing in inner for loop using a parameter

    I cannot get the inner loop to print output. I can run both loops independent (hardcoding a value for the inner loop) Any help is apprecicated... Listed is the code
    set serveroutput on
    DECLARE
    cursor ACCNO_CUR is
    select accession_number from didb_studies where insert_time > to_date('02-JUN-12');
    cursor PATH_CUR (p1_accno VARCHAR2) is
    select distinct l.FILE_SYSTEM || '/' ||
    substr(LPAD(s.PATIENT_DB_UID, 12, '0'),1,3) || '/' ||
    substr(LPAD(s.PATIENT_DB_UID, 12, '0'),4,3) || '/' ||
    substr(LPAD(s.PATIENT_DB_UID, 12, '0'),7,3) || '/' ||
    substr(LPAD(s.PATIENT_DB_UID, 12, '0'),10,3) || '/' ||
    s.STUDY_DB_UID || '/' || i.SERIES_DB_UID || '/'||
    i.RAW_IMAGE_DB_UID || '.img' as FULLY_QUALIFIED_IMAGE_NAME
    , l.image_size
    , i.image_need_backup
    , i.sop_class_uid
    from medistore.didb_studies s
    , medistore.didb_raw_images_table i
    , medistore.didb_image_locations l
    where s.accession_number = 'p1_accno'
    and s.study_db_uid = i.study_db_uid
    and i.raw_image_db_uid = l.raw_image_db_uid
    and l.file_system is not null and INSTR(l.file_system, '.img') = 0
    UNION
    select distinct(l.FILE_SYSTEM) as FULLY_QUALIFIED_IMAGE_NAME
    , l.image_size
    , i.image_need_backup
    , i.sop_class_uid
    from medistore.didb_studies s, medistore.didb_raw_images_table i,
    medistore.didb_image_locations l
    where s.accession_number = 'p1_accno'
    and s.study_db_uid = i.study_db_uid
    and i.raw_image_db_uid = l.raw_image_db_uid
    and l.file_system is not null and INSTR(l.file_system, '.img') > 0
    order by 1;
    BEGIN
    FOR accno_rec in accno_cur LOOP
    DBMS_OUTPUT.put_line('ACCESSION_NUMBER is: '|| accno_rec.accession_number);
    FOR path_rec in path_cur(accno_rec.accession_number) LOOP
    DBMS_OUTPUT.put_line('Inner loop accession_number is :'||accno_rec.accession_number);
    DBMS_OUTPUT.put_line('Full path is : ' || path_rec.FULLY_QUALIFIED_IMAGE_NAME);
    END LOOP;
    END LOOP;
    END;

    Maybe
    DECLARE
      cursor ACCNO_CUR is
        select accession_number
          from didb_studies
         where insert_time > to_date('02-JUN-12');
      cursor PATH_CUR (p1_accno VARCHAR2) is
        select distinct
               l.FILE_SYSTEM || '/' ||
               substr(LPAD(s.PATIENT_DB_UID, 12, '0'),1,3) || '/' ||
               substr(LPAD(s.PATIENT_DB_UID, 12, '0'),4,3) || '/' ||
               substr(LPAD(s.PATIENT_DB_UID, 12, '0'),7,3) || '/' ||
               substr(LPAD(s.PATIENT_DB_UID, 12, '0'),10,3) || '/' ||
               s.STUDY_DB_UID || '/' || i.SERIES_DB_UID || '/'||
               i.RAW_IMAGE_DB_UID || '.img' as FULLY_QUALIFIED_IMAGE_NAME,
               l.image_size,
               i.image_need_backup,
               i.sop_class_uid
          from medistore.didb_studies s,
               medistore.didb_raw_images_table i,
               medistore.didb_image_locations l
         where s.accession_number = to_number(p1_accno) /* to_char(s.accession_number) = p1_accno */
           and s.study_db_uid = i.study_db_uid
           and i.raw_image_db_uid = l.raw_image_db_uid
           and l.file_system is not null
           and INSTR(l.file_system, '.img') = 0
        UNION
        select distinct
               l.FILE_SYSTEM as FULLY_QUALIFIED_IMAGE_NAME,
               l.image_size,
               i.image_need_backup,
               i.sop_class_uid
          from medistore.didb_studies s,
               medistore.didb_raw_images_table i,
               medistore.didb_image_locations l
         where s.accession_number = to_number(p1_accno) /* to_char(s.accession_number) = p1_accno */
           and s.study_db_uid = i.study_db_uid
           and i.raw_image_db_uid = l.raw_image_db_uid
           and l.file_system is not null and INSTR(l.file_system, '.img') > 0
         order by 1;
    BEGIN
      FOR accno_rec in accno_cur
      LOOP
        DBMS_OUTPUT.put_line('ACCESSION_NUMBER is: '|| accno_rec.accession_number);
        FOR path_rec in path_cur(accno_rec.accession_number)
        LOOP
          DBMS_OUTPUT.put_line('Inner loop accession_number is :'||accno_rec.accession_number);
          DBMS_OUTPUT.put_line('Full path is : ' || path_rec.FULLY_QUALIFIED_IMAGE_NAME);
        END LOOP;
      END LOOP;
    END;Regards
    Etbin

  • Oracle 10.1.0.4.2 SQL Plus dbms_output.put_line not working

    I am using Oracle 10.1.0.4.2 SQL Plus, and dbms_output.put_line is not working. It returns the dbms_output ONLY from outside the procedure. I have dbms_output INSIDE my procedure, and none of it gets returned. Please help!
    Here is what I enter:
    set serveroutput on size 1000000;
    DECLARE
         x number:=0;
    begin
    DBMS_OUTPUT.ENABLE;
    c2reports.c2proc(x,'TEST');
    DBMS_OUTPUT.PUT_LINE('testX');
    END;
    testX
    There should be more besides the 'testX' that gets returned. The first line in my procedure has output code to print testY. Thanks in advance!

    This is the forum for the Oracle's SQL Developer (Not for general SQL/PLSQL questions). You should ask question like this in the PL/SQL forum

  • 30EA2 dbms_output.put_line not working

    Hi All,
    I've testing new release SQL Developer and
    the code bellow is not put any data to output? Is it an issue new version ?
    BEGIN
    dbms_output.put_line('[text]');
    END;
    SQL Developer
    Version 3.0.02
    Build MAIN-02.83
    Thank you in advance
    Edvard

    Hi Edvard,
    Yes, dbms_output is borked on 3.0EA2, but you can make it work if you put 'SET SERVEROUTPUT ON' in front of your statement:
    SET SERVEROUTPUT ON
    BEGIN
    dbms_output.put_line('[text]');
    END;
    And run it as a script (F5 on Windows, I think)
    See EA2: Dbms Output broken? for more.

  • Dbms_output.put_line not working

    Hi, i am trying to use dbms_output.put_line to execute a sql in a bat script on windows...i get no errors , but the "alter tablespace" just prints but does not execute.
    What exactly am i missing? Part of the script shown below..
    thanks
    set HFILE=%SCRIPT_HOME%\remove_bkupmode.sql
    echo connect sys/%INTPWD% as sysdba >>%HFILE%
    echo set termout off heading off feedback off >>%HFILE%
    echo set linesize 300 pagesize 0 >>%HFILE%
    echo set serveroutput on size 1000000 >>%HFILE%
    echo spool %SCRIPT_HOME%\cleanup.sql >>%HFILE%
    echo Declare >>%HFILE%
    echo cursor c1 is SELECT t.name FROM V$DATAFILE d, V$TABLESPACE t, V$BACKUP b WHERE d.TS#=t.TS# AND b.FILE#=d.FILE# AND b.STATUS='ACTIVE'; >>%HFILE%
    echo Begin >>%HFILE%
    echo for tbs in c1 loop >>%HFILE%
    echo   dbms_output.put_line(' alter tablespace '^|^|tbs.name ^|^|' end backup;');  >>%HFILE%
    echo end loop; >>%HFILE%
    echo dbms_output.put_line('exit;'); >>%HFILE%
    echo End; >>%HFILE%
    echo / >>%HFILE%
    echo spool off >>%HFILE%
    echo exit; >>%HFILE%
    START /wait SQLPLUS /NOLOG @%HFILE%

    thanks guys...did i bring back memories?
    yeah its an old script. part of an old hot backup script i inherited, for a 24/7 live 9.2.0.1 database that can't be upgraded due to customizations lol
    i setup rman, but since i'n still new to rman, i wanted to continue with the user- managed hot backups
    this script will run afer the backup, just in case, to ensure that no tablespaces are left in backup mode.
    J

  • Adf region is not displaying anything

    Hi,
    I am using adf region to display the data.For this I have created one bounded task flow with page fragments.
    In the page fragment I created one output tag to display something.this page fragment is dropped in task flow.
    Then I made one JSP page and drag the task flow and drop it as the region.The problem is it not displaying any data.
    I am using jdev 12. Can you please tell me whether I am doing anything wrong.
    Thanks,
    Harsh

    What do you mean by
    Then I made one JSP page and drag the task flow and drop it as the region.
    Did you create a jspx page or a jsf page. Depending on the fragment type it only works on a jsf page (jsf 2.0 page). 12c default is create fragments as 'Facelets' which only work in jsf Pages. If you want to use a jspy page you have to create the fragment as 'JSP xml'.
    Timo

  • TS3274 My ipad display will not function, the screen will not display anything when turned on, you can see that the screen lights up but it is completely black

    The screen on my iPad will not display, the screen lightens up when powered on but the screen stays black, any fix for this that I can do at home?

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
    Frozen or unresponsive iPad
    Resolve these most common issues:
        •    Display remains black or blank
        •    Touch screen not responding
        •    Application unexpectedly closes or freezes
    http://www.apple.com/support/ipad/assistant/ipad/
    iPad Frozen, not responding, how to fix
    http://appletoolbox.com/2012/07/ipad-frozen-not-responding-how-to-fix/
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    Black or Blank Screen on iPad or iPhone
    http://appletoolbox.com/2012/10/black-or-blank-screen-on-ipad-or-iphone/
    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
     Cheers, Tom

  • Onboard Graphics Card Not Displaying Anything

    I got a free MS-7613 (Iona-GL8E) motherboard from my friend 's friend which was fully working, he upgraded his motherboard and no longer wanted/needed it. This is the first PC I have ever started to build, I've worked on the, before and know a reasonable amount about them, but the problem I have with this is, the onboard graphics card doesn't display anything. I tried via VGA and HDMI on a monitor and TV, both outputted nothing. The wire and monitor definitely work. The motherboards seems to work fine, it used to beep when it had no RAM, since then I bought RAM and it's been fine. I had a graphics card in but removed it as it also displayed nothing. All the USB drives work and it turns on fine, it just display nothing. Could it be because it had a graphics card in perviously and doesn't display anything because of that? Any help would be great! 

    Hi, "Beware of greeks bearing gifts."  Obviously there are reasons why you have ended up with a hand-me-down.   One might be a bad motherboard graphics processor. You need to provide more information about your hardware configuration.  Additionally, contact your friend and find out what HP product was the motherboard installed in so we can look for specific information.   Post back when you have more information.

  • Lumia 920 Not Displaying Anything

    Hey everybody! I was trying to hard reset my phone when all of a sudden it got bricked. It got stuck on the spinning cog wheels for a good two hours, so I decided that I might as well try to unbrick it with this guide: Tip: How to fix a bricked Nokia Lumia 920 | Windows Phone Central Well, that didn't go all that great. It turns out now my phone won't even display anything. It's just a black screen, a plain black screen. When I plug into the computer it still makes the noise but other than that nothing will else will work. Is there anything I could try for now or is a complete goner? Someone else had the same issue and I'll quote him, as it's a bit more descriptive: "Hi guys,
    I've a Nokia Lumia 820 who is bricked and have nothing displayed on screen, no spinning gears, no lighting... So I've tried the step here and the Nokia is detected by Windows (tried on 7 x64, 8 x64, and a XP VM), but strangely detected and no detected (like plug-in and plug-out) and then the Volume Down + Power don't do anything.
    Some one have idea to make my Nokia working again... (i've an old iPhone for now... help me please ! )
    Etienne"
    That was a comment made at the very bottom of the guide. I'm having that same issue. Thanks for any help that I can get.

    The only solution left seems to be a visit to Nokia Care. Be informed that you have already voided Warranty by following unauthorised process mentioned in the link pasted by you ..BTW, there are quite a few suggestions on THIS Forum (to resolve your original problem) that you would have tried without voiding the Warranty.

  • Macbook pro does not display anything

    Model is Macbook Pro 15" Mid 2009 Unibody
    Mountain Lion
    Modifications:
    CD drive replaced with additional 500 GB Hard Drive
    One of the 2 GB RAM chips replaced with a 4 GB chip
    Earlier today I was browsing the internet on my MBP and suddenly the laptop froze, the screen froze, the mouse and keyboard were not responding at all, which eventually led me to have to force shut it down (by holding the power button). When I tried to turn the laptop back on it started up (as in I could hear the fan and the white light came on) but there was no display and then 4-5 seconds after it turned off and then started up again by itself and stayed on, still no display on the screen at all, its off and the keyboard doesn't seem to be responding either which I figured by trying to press the caps lock button to see if the green light comes on in which it didn't.
    I have tried pressing the Ctrl+Shift+Alt+Power button and then turning the laptop on but the same problem still persists. The laptop starts up, turns off and then starts up again and then stays on with nothing displayed on the screen and no response from the keyboard. The start up chime also doesn't occur. I am unable to start the laptop in Safe mode or any other mode that requires me to hold a button when powering up as the laptop turns off after 4-5 seconds and then starts up again. I have looked online to find anyone with a similar problem but can't seem to find any posts regarding this.
    The laptop has not been dropped or anything, neither had it experienced any liquid damage. It has been running smoothly before the problem that occured earlier. I am in desperate need of my Macbook Pro and there doesn't seem to be any Genius Bar appointments available in the next 7 days in any Apple store near to me (Central London).
    Any help or advise will greatly appreciated.
    Khal

    Make that genius bar appointment and wait those seven days.  That is your best option to get it diagnosed properly (for Free).
    Ciao.

Maybe you are looking for

  • [SOLVED] Xsane Build Errors

    xsane: error while loading shared libraries: libjpeg.so.62: cannot open shared object file: No such file or directory Prompted me to rebuild sane-backends-1.0.20 against libjpeg 7-1 (no problems there) and xsane (with build errors): --disable-gimp --

  • Not able to browse with opera mini on my nokia 513...

    i've not be able to use my nokia 5130 to browse via opera mini for free unless i hv money on it. pls does anyone has the setting? hw will configure my phone to browse for free. pls i need help

  • Camera Profiles Missing from Lightroom and ACR since upgrade to Lightroom CC

    I upgraded to the latest version of Lightroom yesterday. I have discovered since then that the only profile available in the Camera Calibration profiles pop-up menu is Adobe Standard. This applies to Lightroom CC, Lightroom 5 and ACR. Furthermore the

  • How to create favicon in dreamweaver cs5 and upload to website

    I want to be able to create a favicon and upload to my website with dreamweaver. Can anyone tell me how to do this? Thanks in advance! Giselle

  • TLF and arabic text

    Hello, I'm using AS3 with CS3 to do some design involving working with dynamic text field for arabic text. This staetemnt works just fine: var strValidate_txt.text = "خُرُوجْ"; // a dynamic text field - result  OK however when I try to build the stri