A Pro*C problem

Hi,
On the document Pro*C/C++ Precompiler Programmer's Guide Release 8.1.5 (Oracle 8i Document), a sample Pro*C program sample9.pc
is introduced as an example for calling a stored PL/SQL subprogram. The SQL script to create a package containing stored PL/SQL subprograms is called calldemo.sql. Both sample9.pc and calldemo.sql are located on a subdirectory of your Oracle 8i product. However, I found that there are pre-compile errors on sample9.pc. The source codes of the two programs are listed as below:
sample9.pc==>
Sample Program 9: Calling a stored procedure
This program connects to ORACLE using the SCOTT/TIGER
account. The program declares several host arrays, then
calls a PL/SQL stored procedure (GET_EMPLOYEES in the
CALLDEMO package) that fills the table OUT parameters. The
PL/SQL procedure returns up to ASIZE values.
Sample9 keeps calling GET_EMPLOYEES, getting ASIZE arrays
each time, and printing the values, until all rows have been
retrieved. GET_EMPLOYEES sets the done_flag to indicate "no
more data."
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sqlda.h>
#include <sqlcpr.h>
typedef char asciz[20];
typedef char vc2_arr[11];
EXEC SQL BEGIN DECLARE SECTION;
/* User-defined type for null-terminated strings */
EXEC SQL TYPE asciz IS STRING(20) REFERENCE;
/* User-defined type for a VARCHAR array element. */
EXEC SQL TYPE vc2_arr IS VARCHAR2(11) REFERENCE;
asciz username;
asciz password;
int dept_no; /* which department to query? */
vc2_arr emp_name[10]; /* array of returned names */
vc2_arr job[10];
float salary[10];
int done_flag;
int array_size;
int num_ret; /* number of rows returned */
EXEC SQL PROCEDURE calldemo.get_employees(
dept_number IN number, -- department to query
batch_size IN INTEGER, -- rows at a time
found IN OUT INTEGER, -- rows actually returned
done_fetch OUT INTEGER, -- all done flag
emp_name OUT name_array,
job OUT job_array,
sal OUT sal_array);
EXEC SQL calldemo PACKAGE;
EXEC SQL END DECLARE SECTION;
long SQLCODE;
void print_rows(n)
int n;
int i;
if (n == 0)
printf("No rows retrieved.\n");
return;
for (i = 0; i < n; i++)
printf("%10.10s%10.10s%6.2f\n",
emp_name, job[i], salary[i]);
/* Handle errors. Exit on any error. */
void sql_error()
char msg[512];
size_t buf_len, msg_len;
EXEC SQL WHENEVER SQLERROR CONTINUE;
buf_len = sizeof(msg);
sqlglm(msg, &buf_len, &msg_len);
printf("\nORACLE error detected:");
printf("\n%.*s \n", msg_len, msg);
EXEC SQL ROLLBACK WORK RELEASE;
exit(1);
void main()
char temp_buf[32];
/* Connect to ORACLE. */
EXEC SQL WHENEVER SQLERROR DO sql_error();
strcpy(username, "scott");
strcpy(password, "tiger");
EXEC SQL CONNECT :username IDENTIFIED BY :password;
printf("\nConnected to ORACLE as user: %s\n\n", username);
printf("Enter department number: ");
gets(temp_buf);
dept_no = atoi(temp_buf);
/* Print column headers. */
printf("\n\n");
printf("%-10.10s%-10.10s%s\n", "Employee", "Job", "Salary");
printf("%-10.10s%-10.10s%s\n", "--------", "---", "------");
/* Set the array size. */
array_size = 10;
done_flag = 0;
num_ret = 0;
/* Array fetch loop.
* The loop continues until the OUT parameter done_flag is set.
* Pass in the department number, and the array size--
* get names, jobs, and salaries back.
for (;;)
EXEC SQL EXECUTE
BEGIN calldemo.get_employees
(:dept_no, :array_size, :num_ret, :done_flag,
:emp_name, :job, :salary);
END;
END-EXEC;
print_rows(num_ret);
if (done_flag)
break;
/* Disconnect from the database. */
EXEC SQL COMMIT WORK RELEASE;
exit(0);
calldemo.sql==>
rem
rem $Header: calldemo.sql,v 1.1 1993/11/13 20:49:01 mchiocca Exp $
rem
Rem Copyright (c) 1992, 1997 by Oracle Corporation
Rem NAME
Rem calldemo.sql - <one-line expansion of the name>
Rem DESCRIPTION
Rem <short description of component this file de clares/defines>
Rem RETURNS
Rem
Rem NOTES
Rem <other useful comments, qualifications, etc.>
Rem MODIFIED (MM/DD/YY)
Rem mjogleka 04/15/97 - add connect
Rem mchiocca 11/13/93 - Creation
CONNECT SCOTT/TIGER
CREATE OR REPLACE PACKAGE calldemo AS
TYPE name_array IS TABLE OF emp.ename%type
INDEX BY BINARY_INTEGER;
TYPE job_array IS TABLE OF emp.job%type
INDEX BY BINARY_INTEGER;
TYPE sal_array IS TABLE OF emp.sal%type
INDEX BY BINARY_INTEGER;
PROCEDURE get_employees(
dept_number IN number, -- department to query
batch_size IN INTEGER, -- rows at a time
found IN OUT INTEGER, -- rows actually returned
done_fetch OUT INTEGER, -- all done flag
emp_name OUT name_array,
job OUT job_array,
sal OUT sal_array);
END calldemo;
CREATE OR REPLACE PACKAGE BODY calldemo AS
CURSOR get_emp (dept_number IN number) IS
SELECT ename, job, sal FROM emp
WHERE deptno = dept_number;
-- Procedure "get_employees" fetches a batch of employee
-- rows (batch size is determined by the client/caller
-- of the procedure). It can be called from other
-- stored procedures or client application programs.
-- The procedure opens the cursor if it is not
-- already open, fetches a batch of rows, and
-- returns the number of rows actually retrieved. At
-- end of fetch, the procedure closes the cursor.
PROCEDURE get_employees(
dept_number IN number,
batch_size IN INTEGER,
found IN OUT INTEGER,
done_fetch OUT INTEGER,
emp_name OUT name_array,
job OUT job_array,
sal OUT sal_array) IS
BEGIN
IF NOT get_emp%ISOPEN THEN -- open the cursor if
OPEN get_emp(dept_number); -- not already open
END IF;
-- Fetch up to "batch_size" rows into PL/SQL table,
-- tallying rows found as they are retrieved. When all
-- rows have been fetched, close the cursor and exit
-- the loop, returning only the last set of rows found.
done_fetch := 0; -- set the done flag FALSE
found := 0;
FOR i IN 1..batch_size LOOP
FETCH get_emp INTO emp_name(i), job(i), sal(i);
IF get_emp%NOTFOUND THEN -- if no row was found
CLOSE get_emp;
done_fetch := 1; -- indicate all done
EXIT;
ELSE
found := found + 1; -- count row
END IF;
END LOOP;
END;
END;
The pre-compile outcome is listed as below:
#proc SQLCHECK=SEMANTICS INAME=sample9.pc
Pro*C/C++: Release 8.0.5.0.0 - Production on Thu Aug 2 9:33:46 2001
(c) Copyright 1998 Oracle Corporation. All rights reserved.
System default option values taken from: /gisdata/DB/app/oracle/product/8.0.5/pr
ecomp/admin/pcscfg.cfg
Error at line 116, column 19 in file sample9.pc
BEGIN calldemo.get_employees
..................1
PLS-S-00201, identifier 'CALLDEMO.GET_EMPLOYEES' must be declared
Error at line 116, column 19 in file sample9.pc
BEGIN calldemo.get_employees
..................1
PLS-S-00000, Statement ignored
Semantic error at line 116, column 13, file sample9.pc:
BEGIN calldemo.get_employees
............1
PCC-S-02346, PL/SQL found semantic errors
null

Hello,
It seems that U don't have execution right on calldemo.get_employees. U can ask DBA to grant execution right on this package.
Thanks
<BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by moonriver:
Hi,
On the document Pro*C/C++ Precompiler Programmer's Guide Release 8.1.5 (Oracle 8i Document), a sample Pro*C program sample9.pc
is introduced as an example for calling a stored PL/SQL subprogram. The SQL script to create a package containing stored PL/SQL subprograms is called calldemo.sql. Both sample9.pc and calldemo.sql are located on a subdirectory of your Oracle 8i product. However, I found that there are pre-compile errors on sample9.pc. The source codes of the two programs are listed as below:
sample9.pc==>
Sample Program 9: Calling a stored procedure
This program connects to ORACLE using the SCOTT/TIGER
account. The program declares several host arrays, then
calls a PL/SQL stored procedure (GET_EMPLOYEES in the
CALLDEMO package) that fills the table OUT parameters. The
PL/SQL procedure returns up to ASIZE values.
Sample9 keeps calling GET_EMPLOYEES, getting ASIZE arrays
each time, and printing the values, until all rows have been
retrieved. GET_EMPLOYEES sets the done_flag to indicate "no
more data."
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sqlda.h>
#include <sqlcpr.h>
typedef char asciz[20];
typedef char vc2_arr[11];
EXEC SQL BEGIN DECLARE SECTION;
/* User-defined type for null-terminated strings */
EXEC SQL TYPE asciz IS STRING(20) REFERENCE;
/* User-defined type for a VARCHAR array element. */
EXEC SQL TYPE vc2_arr IS VARCHAR2(11) REFERENCE;
asciz username;
asciz password;
int dept_no; /* which department to query? */
vc2_arr emp_name[10]; /* array of returned names */
vc2_arr job[10];
float salary[10];
int done_flag;
int array_size;
int num_ret; /* number of rows returned */
EXEC SQL PROCEDURE calldemo.get_employees(
dept_number IN number, -- department to query
batch_size IN INTEGER, -- rows at a time
found IN OUT INTEGER, -- rows actually returned
done_fetch OUT INTEGER, -- all done flag
emp_name OUT name_array,
job OUT job_array,
sal OUT sal_array);
EXEC SQL calldemo PACKAGE;
EXEC SQL END DECLARE SECTION;
long SQLCODE;
void print_rows(n)
int n;
int i;
if (n == 0)
printf("No rows retrieved.\n");
return;
for (i = 0; i < n; i++)
printf("%10.10s%10.10s%6.2f\n",
emp_name, job[i], salary[i]);
/* Handle errors. Exit on any error. */
void sql_error()
char msg[512];
size_t buf_len, msg_len;
EXEC SQL WHENEVER SQLERROR CONTINUE;
buf_len = sizeof(msg);
sqlglm(msg, &buf_len, &msg_len);
printf("\nORACLE error detected:");
printf("\n%.*s \n", msg_len, msg);
EXEC SQL ROLLBACK WORK RELEASE;
exit(1);
void main()
char temp_buf[32];
/* Connect to ORACLE. */
EXEC SQL WHENEVER SQLERROR DO sql_error();
strcpy(username, "scott");
strcpy(password, "tiger");
EXEC SQL CONNECT :username IDENTIFIED BY :password;
printf("\nConnected to ORACLE as user: %s\n\n", username);
printf("Enter department number: ");
gets(temp_buf);
dept_no = atoi(temp_buf);
/* Print column headers. */
printf("\n\n");
printf("%-10.10s%-10.10s%s\n", "Employee", "Job", "Salary");
printf("%-10.10s%-10.10s%s\n", "--------", "---", "------");
/* Set the array size. */
array_size = 10;
done_flag = 0;
num_ret = 0;
/* Array fetch loop.
* The loop continues until the OUT parameter done_flag is set.
* Pass in the department number, and the array size--
* get names, jobs, and salaries back.
for (;;)
EXEC SQL EXECUTE
BEGIN calldemo.get_employees
(:dept_no, :array_size, :num_ret, :done_flag,
:emp_name, :job, :salary);
END;
END-EXEC;
print_rows(num_ret);
if (done_flag)
break;
/* Disconnect from the database. */
EXEC SQL COMMIT WORK RELEASE;
exit(0);
calldemo.sql==>
rem
rem $Header: calldemo.sql,v 1.1 1993/11/13 20:49:01 mchiocca Exp $
rem
Rem Copyright (c) 1992, 1997 by Oracle Corporation
Rem NAME
Rem calldemo.sql - <one-line expansion of the name>
Rem DESCRIPTION
Rem <short description of component this file declares/defines>
Rem RETURNS
Rem
Rem NOTES
Rem <other useful comments, qualifications, etc.>
Rem MODIFIED (MM/DD/YY)
Rem mjogleka 04/15/97 - add connect
Rem mchiocca 11/13/93 - Creation
CONNECT SCOTT/TIGER
CREATE OR REPLACE PACKAGE calldemo AS
TYPE name_array IS TABLE OF emp.ename%type
INDEX BY BINARY_INTEGER;
TYPE job_array IS TABLE OF emp.job%type
INDEX BY BINARY_INTEGER;
TYPE sal_array IS TABLE OF emp.sal%type
INDEX BY BINARY_INTEGER;
PROCEDURE get_employees(
dept_number IN number, -- department to query
batch_size IN INTEGER, -- rows at a time
found IN OUT INTEGER, -- rows actually returned
done_fetch OUT INTEGER, -- all done flag
emp_name OUT name_array,
job OUT job_array,
sal OUT sal_array);
END calldemo;
CREATE OR REPLACE PACKAGE BODY calldemo AS
CURSOR get_emp (dept_number IN number) IS
SELECT ename, job, sal FROM emp
WHERE deptno = dept_number;
-- Procedure "get_employees" fetches a batch of employee
-- rows (batch size is determined by the client/caller
-- of the procedure). It can be called from other
-- stored procedures or client application programs.
-- The procedure opens the cursor if it is not
-- already open, fetches a batch of rows, and
-- returns the number of rows actually retrieved. At
-- end of fetch, the procedure closes the cursor.
PROCEDURE get_employees(
dept_number IN number,
batch_size IN INTEGER,
found IN OUT INTEGER,
done_fetch OUT INTEGER,
emp_name OUT name_array,
job OUT job_array,
sal OUT sal_array) IS
BEGIN
IF NOT get_emp%ISOPEN THEN -- open the cursor if
OPEN get_emp(dept_number); -- not already open
END IF;
-- Fetch up to "batch_size" rows into PL/SQL table,
-- tallying rows found as they are retrieved. When all
-- rows have been fetched, close the cursor and exit
-- the loop, returning only the last set of rows found.
done_fetch := 0; -- set the done flag FALSE
found := 0;
FOR i IN 1..batch_size LOOP
FETCH get_emp INTO emp_name(i), job(i), sal(i);
IF get_emp%NOTFOUND THEN -- if no row was found
CLOSE get_emp;
done_fetch := 1; -- indicate all done
EXIT;
ELSE
found := found + 1; -- count row
END IF;
END LOOP;
END;
END;
The pre-compile outcome is listed as below:
#proc SQLCHECK=SEMANTICS INAME=sample9.pc
Pro*C/C++: Release 8.0.5.0.0 - Production on Thu Aug 2 9:33:46 2001
(c) Copyright 1998 Oracle Corporation. All rights reserved.
System default option values taken from: /gisdata/DB/app/oracle/product/8.0.5/pr
ecomp/admin/pcscfg.cfg
Error at line 116, column 19 in file sample9.pc
BEGIN calldemo.get_employees
..................1
PLS-S-00201, identifier 'CALLDEMO.GET_EMPLOYEES' must be declared
Error at line 116, column 19 in file sample9.pc
BEGIN calldemo.get_employees
..................1
PLS-S-00000, Statement ignored
Semantic error at line 116, column 13, file sample9.pc:
BEGIN calldemo.get_employees
............1
PCC-S-02346, PL/SQL found semantic errors
#<HR></BLOCKQUOTE>
null

Similar Messages

  • I install windows 8 in my macbook pro, the problem is it cannot detect wifi connection and bluetooth

    I install windows 8 in my macbook pro, the problem is it cannot detect wifi connection and bluetooth, because when i click the wireless in settings there are no choices... but when i use the mac os, everything is fine, the wifi, the bluetooth everything is functional, can you help me fix this problem? help will be much appreaciated.. thanks

    How did you install Windows? Did you use Bootcamp Assistant or did you use a virtual machine like Parallels, Fusion, or VirtualBox.
    If you used Bootcamp Assistant, did you download and install the Windows Support software (drivers) in accordance with the Bootcamp instructions?

  • Adobe Acrobat Pro 9 problem

    Software:Adobe Acrobat Pro 9 problem
    Issue: Whenever the end-user runs the PDF maker in Word 2003, it converts the file fine but when you close the PDF and return to the Word document, it shows the progress bar is still working to create the PDF.
    Related? In the Event System log, an error for SidebySide with the Event IDs of 32 and 59. I couldn't determine if these errors relate to each other.
    System: Windows XP Professional, sp3

    use the below link:
    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  6| 5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5.5, 5 | 1
    Contribute:  CS5 | CS4, CS3 | 3,2
    FrameMaker:  12, 11, 10, 9, 8, 7.2
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Using techtool pro found problem with "volume structure".  What to do?

    Using techtool pro found problem with "volume structure" and this was not fixed by TECHTOOL PRO.  What do you suggest I do?

    I would boot from my gray install disk (put the disk in the drive and restart holding down the C key). Then choose Utilities and run Disk Utility and click Repair Disk. As always, be sure you have a back up of your data first.

  • Unable to launch Adobe Acrobat Pro XI (Problem Event Name:APPCARSH)

    Following message received while trying  open Acrobat Pro XI
    Problem signature:
      Problem Event Name: APPCRASH
      Application Name: Acrobat.exe
      Application Version: 11.0.7.79
      Application Timestamp: 536b812b
      Fault Module Name: Acrobat.dll
      Fault Module Version: 11.0.7.79
      Fault Module Timestamp: 536b80ff
      Exception Code: c0000005
      Exception Offset: 00cbf281
      OS Version: 6.1.7601.2.1.0.256.48
      Locale ID: 1055
      Additional Information 1: 0a9e
      Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
      Additional Information 3: 0a9e
      Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
    Need urgent support please....

    Hi KemalAFARACI,
    Please try the following :
    > Enable the hidden Admin Account on Windows 7 ( Ref :  http://www.howtogeek.com/howto/windows-vista/enable-the-hidden-administrator-account-on-wi ndows-vista/ )
    > Disable all Non-Microsoft Startup Services. (Ref : http://helpx.adobe.com/x-productkb/global/disable-startup-items-services-windows.html )
    > Disable all the Antivirus softwares like CA, Norton,Mc Afee etc. temporarily from the computer.
    Launch Acrobat  in the new enabled Admin user account and check.
    Regards,
    Rave

  • I wanna reinstall Mac OSx lion on MacBook pro, my problem is I dint purchase OSx lion with my apple Id before.so anybody can tell me how to purchase OSx with my apple Id on MacBook

    I wanna reinstall Mac OSx lion on MacBook pro, my problem is I dint purchase OSx lion with my apple Id before.so anybody can tell me how to purchase OSx with my apple Id on MacBook

    Nope. You can purchase a Snow Leopard DVD for $29.00 through an Apple retailer or ordering from AppleCare:
    Apple Store Customer Service at 1-800-676-2775 or visit online Help for more information.
    To contact product and tech support visit online support site.

  • MacBook PRO 17'' Problem?

    MacBook PRO 17'' Problem?
    I bought in America a new Macbook Pro with me already 8mj:
    Model Identifier: MacBookPro4, 1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.5 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 6 MB
    Memory: 2 GB
    Bus Speed: 800 MHz
    Boot ROM Version: MBP41.00C1.B03
    SMC Version: 1.28f1
    GeForce 8600M GT 512mb GeForce 8600M GT 512MB
    Type: DDR2 SDRAM 2 pieces
    Size: 1 GB
    Speed: 667 MHz Speed: 667 MHz
    sometimes my ignition pocme blow 2puta quickly and fit 1s and thus prove it does not poweroff, the display has no image.
    or when booting the mistake occurs in the image:
    sometimes when booting the error as shown in the picture!
    but more frequently happens that does not powered up LCD! ONLY PROVIDES NOTICE ACOUSTICAL 2puta quickly and fit 1s, etc. ...
    When it poweroff so again uplalim all work properly and I do not have any more problems! After re-ignition occurs again, the same situation!
    I have made a hardware test and reinstalira OS X Leopard 10.5.6 Update! but again the same story, says that everything ok!
    There is no additional peripherals except that I ordered from the apple store to upgrade my 1G still working memory SDRMA 667MHz
    Thank you prayed that we would help someone because I do not know whom to turn to more ...
    IMAGE: http://www.mackorisnik.com/forum/download/file.php?id=747
    All details of problems in URL: http://www.mackorisnik.com/forum/viewtopic.php?f=7&t=6116

    Your system profile is a complete blank!!
    When posting in Apple Communties/Forums/Message Boards.......It would help us to know which Mac model you have, which OS & version you're using, how much RAM, etc. You can have this info displayed on the bottom of every post by completing your system profile and filling in the information asked for.
    CLICKY CLICK-----> Help us to help you on these forums
    ***This will help in providing you with the proper and/or correct solutions.***
    If you are still under warranty and/or have AppleCare, call them.  Let them deal w/it.

  • IPhone music will not respond to Play button after being paused. The same music is on my iPad and MacBook Pro without problems. Any suggestions about cause and solution.

    iPhone music will not respond to Play button after being paused.
    The same music is on my iPad and MacBook Pro without problems. Any suggestions about cause and solution.

    Do a
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data

  • Lacie Speakers and Mac Pro Firewire problem waking from sleep and loud feed

    Lacie Speakers and Mac Pro Firewire problem waking from sleep and loud feedback. I had a powermac before this with the speakers and it worked fine. But the mac pro is having these issues. Is it the firewire port or the speakers or (and most likely) just a firmware glitch with mac pro? Anyone else see these issues?

    http://web.mac.com/jerimydulay/Site/MyAlbums/Pages/Lacie_FirewireMIDI.html
    Here is my audio settings. For some reason I wish I could remember what I did. It was actually the Apple Store tech in the Unversity Village in Seattle that gave me the idea and I swear I had to change the settings in MIDI setup. Now that Leopard is out it seems the MIDI stuff has been redone. I included screenshots of my MIDI setup as it is currently to see if you see something different on your computers. Let me know!

  • SB Audigy 2 ZS Platinum Pro RemoteControl Problem

    SB Audigy 2 ZS Platinum Pro RemoteControl Problem] Hello everybody,
    i have the following problem with my Audigy 2 ZS Platinum Pro:
    BS: Windows XP x64 SP2
    Driver-Version: 2.8.000 (PCDRV_LB_2_8_000
    All works fine exept one thing, everytime I use my remotecontrol to adjust the volume the system loses the original configuration of the Channels.
    When I view the settings, the Channel and 2 are correct but all others are asyncron. When?I reset the settings to standard then all is correct again until I use the remotecontroll again.
    [url="http://www.bilder-space.de/show.php?file=02.06W4cdSxH7zgBIZmJ.JPG">Bevore RC Use[/url]
    [url="http://www.bilder-space.de/show.php?file=02.069rNl8j665xFRdxu.JPG">After BC Use[/url]
    Anyone an Idea?
    <img border="0" width="" src="http://www.bilder-space.de/show.php?file=02.06W4cdSxH7zgBIZmJ.JPG" height="">
    I hope anyone can help me
    <img align="left" width="[/img] src="http://www.bilder-space.de/show.php?file=02.06W4cdSxH7zgBIZmJ.JPG" alt="before" height="">

    I have absolutely same problem.
    I use Audigy 2 Platinum.
    Operation System:
    Win XP Pro 32bit
    Driver:
    Creative Sound Blaster Audigy series Driver v.2.8.000
    Applications:
    Creative MediaSource Player-Organizer v.3.30.2
    Creative MediaSource Plugin for Remote Control v.2.30.02
    I use 5. configurations of speakers.
    When, I use remote controller to adjust volume.
    Front left and right channels working correctly.
    Center, Low Frequency and Back Left channels apply max high volume level and don t apply any other volume levels.
    Back Right channel apply max low volume level and don t apply any others volume levels.

  • Solution to common Windows 7 Xfi Elite Pro installation problem

    Solution to common Windows 7 Xfi Elite Pro installation problems Hello,? I have just solved what I understand to be a common problem when upgrading a machine with an Xfi Elite Pro from XP to 64 bit Windows 7. Apparently the console control software for the "older" PCI Soundblaster cards for Win7 isn't done yet. If you've installed Win 7, updated the product identification module and run the new driver that you can find easily on Creative's support site and you still have no sound, try going to the Control Panel in windows. Switch the display to the "small icons" option and select "sounds".
    Choose the "playback" tab. You should find a list of possible sound output devices that exist on your machine. You need to highlight the Xfi on that list and then click the "Set as default" button at the bottom of the screen. That should do it for you.
    It did it for me.

    C The 'solution' you provided only touches a very small fraction of the problems with Creative sound cards. Only very unexperienced users may not control which sound card is choosen by their operating system. Many of us work with PCs for decades, being used to modify the registry and so on. The drivers of Creative are of an unexcusable low quality.

  • My MacBook Pro has problem in iphoto,, I cant open it,, I need help please,,,,

    My MacBook Pro has problem in iphoto,, I cant open it,, I need help please,,,,

    Last login: Sun Apr 22 19:11:11 on ttys000
    Marlons-MacBook-Pro:~ ryanmnhs$ ls -la ~/Library/LaunchAgents
    total 40
    drwx------   7 ryanmnhs  staff   238  5 Nov 23:09 .
    drwx------@ 48 ryanmnhs  staff  1632 13 Jan 09:53 ..
    -rw-r--r--   1 ryanmnhs  staff   574 24 Oct 22:29 com.adobe.ARM.202f4087f2bbde52e3ac2df389f53a4f123223c9cc56a8fd83a6f7ae.plist
    -rw-r--r--   1 ryanmnhs  staff   618 22 Oct  2011 com.apple.AddressBook.ScheduledSync.PHXCardDAVSource.BAF380D0-E780-4E82-86BF-77 2440AB4936.plist
    -rw-r--r--   1 ryanmnhs  staff   895  4 Sep  2011 [email protected].plist
    -rw-r--r--   1 ryanmnhs  staff   802 21 Mar 12:56 com.facebook.videochat.ryanmnhs.plist
    -rw-r--r--@  1 ryanmnhs  staff   805  6 Sep  2011 com.google.keystone.agent.plist
    Marlons-MacBook-Pro:~ ryanmnhs$ 
    ,,,,,,,,THIS IS THE RESULT,, WHAT DOES THIS MEAN? HOW CAN I FIX MY PROBLEM? UP TO THIS DATE MY WORD, EXCEL AND POWERPOINT STILL DONT WORK!!!!PLEASE HELP ME, ANYONE? THANK YOU...

  • Mac Pro Fan Problem

    Hi, I have been having some problems with a Mac Pro I have been working with. At the Start-up the Fan goes to top speed and once it logs-in the fan is still pretty loud. I've checking the Temperature of all the computer parts via a Temperature Diode, and its normal and not high. After searching the internet for hours looking for posts that were for the Mac Pro and not for the MacBook Pro (which comes up in about all the searches using the words Mac Pro Fan Problem) and I found some software all of which is not for Mac Pro's. Is there any application I can run do reduce the RPM of the Fans, Reset the Fan Speeds to only turn on when it get hot, or something along those lines.

    Thats odd, seeing as Apple have it listed in the Support article:
    To reset the SMC on a Mac Pro:
    1) From the Apple menu, choose Shut Down (or if the computer is not responding, hold the power button until it turns off).
    2) Unplug all cables from the computer, including the power cord and any display cables.
    3) Wait at least fifteen seconds.
    4) Plug the power cord back in, making sure the power button is not being pressed at the time. Then reconnect your keyboard and mouse to the computer.
    5) Press the power button to start up your computer.
    It does exactly the same thing as the SMC_RST button, simply by removing all power from the system. I would assume the reason for this would be that the SMC settings are stored in RAM, which is erased once the power is removed from the board, hence the minimum 15 secs wait which gives time for the capacitors in the power supply and system to discharge.
    So yeah, it does do the trick, or has done for me in the past a few times.

  • Windows 8.1 Pro on Mac pro resolution problem

    I have created a partition for windows 8.1 pro on my 13' retina display mac pro via boot camp, everything is fine except the resolution, when i open the browser, i could see pixels, the words aren't very sharp, but this isn't my biggest problem, when i open the Solidworks software i'm working on, the icons are too small, or the texts are too big for their boxes. what is happening here? anyone knows what is all about, or how to fix this? changing the resolution of the display didn't solve the problem.

    This is how the words look like in the browser page, you could see pixels. The maximum resolution for this machine is 2560*1600

  • Acrobat 9 pro and problems with pdf made by photoshop cs4

    Hello,
    I have encountered a problem when viewing pdfs exported from photoshop cs4 using acrobat pro 9. If I open single pdf, it's ok, but whenever I open another pdf, all text is jagged. Then if I close all pdfs and try opening the second one, it's ok again. It looks like acrobat is not able to render texts correctly in newly opened pdf when another pdf is already opened.
    This happens only with pdfs exported from photoshop (file->save as->pdf). It does not really matter if the first opened pdf is from photoshop or not, all other opened pdfs from photoshop are crapy.
    I tried different settings when saving pdf but the results are always the same - jagged type (it does not even look like aliased, it's completely screwed and unreadable) in second pdf. It is funny because text present as smart object from illustrator renders fine all the time. Therefor I think the problem is between photoshop export and acrobat, vectors are rendered with no problems.
    I tried opening on different pc (also with acrobat 9 pro) with the same result. Systems are vista on exporting pc, the second pc is running windows7 beta. However on the third pc with windows XP and adobe reader 9 everything works fine.
    Any ideas how to make this work?
    regards,
    embee

    Solution found for me. From Adobe Acrobat & Reader 9.1 Release Notes:
    Roaming Profiles on Windows and Networked Home Directory on Macintosh
    are not supported configurations for 9.0 or 9.1, however we have made
    several fixes in 9.1. We are looking at the possibility of supporting
    this for the next major release.
    As I am working with roaming profiles, my current solution (which is no solution at all) is to wipe current and reinstall Acrobat/Reader 8. Among other things there are supposed console hacks to make the purchased Adobe software run at all in a group work environment. I will end up trying them later.
    Some good reads are :
    http://forums.adobe.com/thread/300660
    http://forums.macrumors.com/showthread.php?t=198512
    http://forums.adobe.com/thread/391738?start=150&tstart=0
    http://serverfault.com/questions/37805/adobe-reader-wont-launch-when-logged-into-network-u ser-accounts-open-directory

  • MacBook Pro graphics problems shipset Nvidia 8600M GT

    Hello, I have a macbook pro 15 "@ 2.4 GHz, has nvidia graphics shipset problems, and to investigate and is a manufacturing defect if apple apple and is responsible for resolving the problem.
    <E-mail Edited by Host>

    Download the following:
    https://gfx.io/
    This will allow you to disengage the discrete CPU and stop the kernel panics.  This will be at the expense of graphics performance.
    Ciao.

Maybe you are looking for

  • Reports bar scrolling screen down and up.

    Hi All, I have an issue that bugs me with Firefox. Often there are informational reports at the top of the webpage screen like "Flash has been blocked ... allow continue" etc. These scroll the whole screen down when they display, to fit in their bar

  • Error in the t.code KKAO

    hi all, i erceive the below error message while using the t.code KKAQ ERROR : The system has determined that the authorizations for displaying the data of WIP calculation regarding authorization objects K_WIP and/or K_TP_VALU are missing. pls tell me

  • Why did my iPod nano 6th generation stop working?

    My iPod nano isn't yet a year old. It just stopped working one day. I don't have much music stored on it. I thought it was the battery but plugging it up didn't do anything. Please help!

  • Retrieve and send data to website using http protocol

    Hi, I wonder if anyone knows how to use java language to retrieve and send data to internet website using the http protocol.

  • Post Document in FB01

    Hi Experts, I am using below mentioned FM to post the document in FB01 and working fine when i am going for call transaction. POSTING_INTERFACE_START POSTING_INTERFACE_DOCUMENT POSTING_INTERFACE_END My requirement is i want to use the same FM to post