X-Fi XtremeMusic total newb on setti

I just bought this card and don't know what to set options to what is best for music. There are options that are too difficult for me to understand so my question is what type of setting are most common to turn on and what's the most useful features?

I've decided that the most likely culprit is the shared IRQs.
So could somebody go into Device Manager--->View--->Resources by Type-->IRQ and tell me what the IRQ for their X-Fi is?

Similar Messages

  • Total newbie for jsp..plz help

    frendz...me a total newbie to jsp.havin some problem in it.i have already installed jdk,jwsdp2.0 wif its tomcat container.Already set the path for both ..such as JAVA_HOME=E:\Program Files\Java\jdk1.5.0_06
    TOMCAT_HOME=E:\tomcat50-jwsdp
    and could execute the sample jsp's perfectly.But having problem wif my jsp tutorials. such as when i wrote this counter codes in notepad..
    <%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %>
    <html>
    <head>
    <tittle>Jsp Declaration</tittle>
    </head>
    <body>
    <h1>Declarations</h1>
    <%! int j=0;%>
    <h2>Counter</h2>
    <p>This page has been hit <span> <% ++j %> </span> times since it was first loaded.</p>
    </body>
    </html>
    and i paste it in webapps in tomcat folder.
    What should i do to view the jsp file?isaved as counter.jsp.if i right click and view it in IE/firefox it only shows the source code.is there any mistake in the codes?or i did i do anything wrong?how shall i compile these files?help me aout wif my basics please.thanks bro's..

    "I pasted it in webapps in tomcat folder".
    Webapplications need to go in their own subdirectory inside the webapps directory. Say you want a webapp 'test', then you would store your JSP as
    TOMCAT_DIR\webapps\test\counter.jsp
    Now you can open this JSP in your browser. Assuming Tomcat is running on the localhost and the default port 8080, the url would be:
    http://localhost:8080/test/counter.jsp
    If that doesn't work something is horribly misconfigured.

  • I am using elements 10 and only getting audio not video.  Can anyone please explain why? I am a total newbie to video.

    I am using elements 10 and only getting audio not video.  Can anyone please explain why? I am a total newbie to video.

    greenfrogstone
    Just saw your thread, and it looked like a candidate for the Premiere Elements 10 NVIDIA GeForce Roll Back the Driver issue. If your computer uses a NVIDIA GeForce video card/graphics card, then the following applies to you. You do not want to update the driver. Rather you want to roll back the driver version, probably to about May 2013. For your convenience I have done a copy/paste of the forum announcement which gives all the details and fix of the matter.
    Premiere Elements 10 NVIDIA Video Card Driver Roll Back
    If you are a Premiere Elements 10 user whose Windows computer uses a NVIDIA GeForce video card and you are experiencing Premiere Elements 10 display and/or unexplained program behavior, then your first line of troubleshooting needs to be rolling back the video card driver version instead of assuring that it is up to date.
    Since October 2013 to the present, there have been a growing number of reports about display and unexplained workflow glitches specific to the Premiere Elements 10 user whose Windows computer has a NVIDIA GeForce video card. If this applies to you, then the “user to user” remedy is to roll back the NVIDIA GeForce video card driver as far as is necessary to get rid of the problems. The typical driver roll back has gone back as far as March – July 2013 in order to get a working Premiere Elements 10. Neither NVIDIA nor Adobe has taken any corrective action in this regard to date, and none is expected moving forward.
    Since October 2013, the following thread has tried to keep up with the Premiere Elements 10 NVIDIA reports
    http://forums.adobe.com/thread/1317675
    Older NVIDIA GeForce drivers can be found
    http://www.nvidia.com/Download/Find.aspx?lang=en-us
    A February 2014 overview of the situation as well as how to use the older NVIDIA GeForce drivers for the driver roll back can be found
    http://atr935.blogspot.com/2014/02/pe10-nvidia-video-card-roll-back.html
    This matter has been very specific to the Premiere Elements 10 NVIDIA GeForce card user. So, if your computer is using other than a NVIDIA GeForce card, it is likely that the message does not apply to you, and we can then explore other troubleshooting possibities.
    Looking forward to your follow up. Do not hesitate to ask for clarification on anything written here.
    Thanks.
    ATR

  • Login/password to SQL plus - 100% Totally newbie!

    Dear users,
    I'm a 100% Totally newbie - please bear over with me and forgive that I couldn't find the answer to my question in the arhive although I'm sure somebody else has asked exactly this question. And please don't say RTFM etc, because there are a huge amount of manuals etc for oracle and I'm 100% newbie and never worked with Oracle SQL before.
    Introduction: I've installed Oracle 11.2 Enterprise Edition and want to go through some step-by-step tutorials - e.g. this tutorial: http://download.oracle.com/docs/cd/B10501_01/server.920/a90842/ch1.htm#1005898
    The tutorial says:
    "The Human Resources (HR) Sample Schema is installed as part of the default Oracle9i installation. The HR user is locked by default.
    You need to unlock the HR tables and user before you can use the HR sample schema. To unlock the HR tables and user, log in as the SYSTEM user and enter the following command:"
    Question: I cannot figure out my password, perhaps I entered something during install but how do I get password for the "SYSTEM" user?

    Hi,
    Welcome to the forum!
    There's no way to find out what a password is.
    You can log in as some other user who has DBA privileges (such as SYS), and change SYSTEM's password.
    If you've forgotten the SYS password, too, then log into the server as the same user who installed Oracle, or as some user in the ora_dba group. You should be able to log in as SYS. When asked for a password, just press the enter key, like this:
    C:> SQLPLUS /NOLOG
    SQL> CONNECT SYS AS SYSDBA
    Enter password: <enter>
    Connected.
    SQL>  ALTER USER SYSTEM IDENTIFIED BY new_password;
    User altered
    SQL>  CONNECT  SYSTEM
    Enter password: new_password
    Connected
    SQL>

  • Total newb

    Hello :) ,
    so Im a total newb :(
    I am trying to make this code into a function....
    <code>
    jd_label.setIcon(new javax.swing.JLabel(){
    public javax.swing.Icon getIcon(){
    try {
    return new javax.swing.ImageIcon(
    new java.net.URL("http://ns2.taproot.bz/java/prima_interface/thumbs/02.jpg")
    catch (java.net.MalformedURLException e){
    return null;
    }.getIcon());
    </code>
    problem is, Im such a new i dont know how to use a var on this line...
    jd_label.setIcon(new javax.swing.JLabel(){
    I would like jd_label to be a $var but java just wants to update
    a label named "var".... i.e.
    JLabel jd = new Jlabel();
    string fred = jd
    fred.setIcon()
    but this freaks out... in PERL it seems the vars are a little more
    reconazable...
    $fred.setIcon();
    Could some one please help me :)
    Thanks in advance,
    jd

    You need to study up on what Java is, how it works, syntax, etc. It seems you don't have the first clue how to write a valid Java class. This is fine, and of course that's where you have to start, but I think your time will be better spent reading the tutorials (links to which can be found on your left) than getting piecemeal help here on the forums. When you've gotten a handle on what classes, objects, variables, and methods are, and gotten some idea about syntax, come back with more specific problems and people will be more than willing to help you. Also, post to the New to Java Technology forum rather than this one.

  • Total newb var question

    Hello :) ,
    so Im a total newb :(
    I am trying to make this code into a function....
    <code>
    jd_label.setIcon(new javax.swing.JLabel(){
    public javax.swing.Icon getIcon(){
    try {
    return new javax.swing.ImageIcon(
    new java.net.URL("http://ns2.taproot.bz/java/prima_interface/thumbs/02.jpg")
    catch (java.net.MalformedURLException e){
    return null;
    }.getIcon());
    </code>
    problem is, Im such a new i dont know how to use a var on this line...
    jd_label.setIcon(new javax.swing.JLabel(){
    I would like jd_label to be a $var but java just wants to update
    a label named "var".... i.e.
    JLabel jd = new Jlabel();
    string fred = jd
    fred.setIcon()
    but this freaks out... in PERL it seems the vars are a little more
    reconazable...
    $fred.setIcon();
    Could some one please help me :)
    Thanks in advance,
    jd

    Thank you :)
    Im still confused...but that will pass in time
    As for the code in the first post... that was from a scrip i wrote
    but the section i posted NetBeans wrote. here is the whole scrip...
    All i really want to do is put pictures on labels...and i thought, why write
    the same code for every button, ill just make a function out of the whole setIcon bit and call it for each label that needs a picture, passing the url of the picture off to the function... Below gets me one pic on one label, so
    how can i reproduce this efffect on other lables using the same code over and over?
    import javax.swing.*;
    import java.awt.*;
    public class HelloWorldSwing {
    public static void main(String[] args) {
    JFrame frame = new JFrame("HelloWorldSwing");
    JLabel label = new JLabel("Hello World");
    JLabel jd_label = new JLabel();
         JTextField tex = new JTextField("sup suka");
         JPanel pan = new JPanel();
         pan.setLayout(new GridLayout(1,3,10,10));
         pan.add(label);
         pan.add(jd_label);
         pan.add(tex);
    // i wanna make this bit into a fuction to reuse
         jd_label.setIcon(new javax.swing.JLabel() {
    public javax.swing.Icon getIcon() {
    try {
    return new javax.swing.ImageIcon(
    new java.net.URL("http://ns2.taproot.bz/java/prima_interface/thumbs/02.jpg")
    } catch (java.net.MalformedURLException e) {
    return null;
    }.getIcon());
         frame.getContentPane().add("Center", pan);
         frame.pack();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.pack();
    frame.setVisible(true);

  • Can I type Japanese language emails on my iPad without changing it to a total Japanese language set up?

    Can I type Japanese language emails on my iPad without changing it to a total Japanese language set up?

    Andrew Offen wrote:
    Can I type Japanese language emails on my iPad without changing it to a total Japanese language set up?
    This all I could find . . .
    https://discussions.apple.com/thread/3648438?start=0&tstart=0

  • Total newbie needs help installing and setting up Solaris 10 as a server

    i'm attempting to set up one computer to act as a file and print server on my home network, so that i can store all of my music and video files on it instead and print to my parallel-only laser printer. 80% of the time i'm using my laptop, so i need the mass storage and printer to be handled by another device - the server!
    i'm not sure if i'm even installing Solaris 10 correctly. how should it be installed to then act as a server? my two (incredibly long, like 3+ hours each) install attempts so far have resulted in an OS that looks like a nice fancy GUI-laden desktop which doesn't appear to show me my 750G SATA storage drive (the OS is on a 40G IDE drive).
    in the end, i'd like to have the system working so that my only interaction with it is the power button - press it once to power it on and it'll boot up and long in automagically and make itself seen over the network (with printer and files stored on drives accessible to my laptop or any other PC that's on the same network), and then press the power button again to shut down the entire system gracefully (so far, when i press the power button, it's a quick kill like pulling the power cord - i'm pretty sure that's a bad way of having the system shut down, so how do i change it?)
    i'm really hoping to use Solaris due to the promising ZFS scheme. my only exposure so far to unix / linux has been with ubuntu, which i usually like but sometimes loathe (primarily file permissions and network manager).

    Let's try step by step rather than asking for setting up a server as a while and I'll try to help you as much as I can.
    For setting up a printer, it's not that easy or quick setting up a printer on Solaris, I mean it's not like plug-n-play. Tell us about your printer and how it's connected to your system (usb, ethernet, parallel, serial).
    As for shutting down the system, it's recommended to use the shutdown commnad like this:
    # shutdown -y -i0 -g0
    --gibb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Filtering a range with two conditions and totalling the filtered set

    I have got to :
    =SUMIF(LOOKUP(1, 1::K2:K79,  1::L2:L79), "=✓", 1::I2:I79)
    The error message is "SUMIF requires that all range arguments are the same size".
    My understanding is that :
    LOOKUP(1, 1::K2:k79, 1::L2:l79) will return a set of values filtered from L2:L79 in table 1 that correspond with all rows in K2:K79 (in the same table) that contain the numerical value 1.
    That set of values is then used as the first argument in a SUMIF statement to be filtered on "=✓" producing a subset whose corresponding rows in I2:I79 will be totalled.
    I've given it a good bit of effort now for a couple of hours and hope that someone can help me out of my amateur quandary with a formula that will achieve the same thing, because I am giving up : ie :
    Product
    Month
    Eligible product (✓) or not (x)
    Cost
    Teddy Bear
    1
    x
    £35.00
    High-resolution PC Monitor
    1

    £600.00
    Electric Fan
    1

    £45.00
    Newspaper subscriptions
    1
    x
    £45.00
    Snack foods
    1
    x
    £15.00
    Telephone line installation
    1

    £80.00
    Office chair
    2

    £75.00
    I need to efficiently calculate the total cost of "Eligible products" bought in Month 1.

    Hi b,
    LOOKUP returns a single value corresponding to the first match it finds for the search value.
    As I understand it, you wnt the SUM of all 'cost' values where the month is "1" AND 'eligible' is checked.
    For a SUM depending on more than one condition being TRUE, the function of choice is SUMIFS.
    If Row 1 is a Header row, and Row 179 is the last row in your table (or if no rows below that will match both conditions), you can omit the row part of each range address.
    I'm confused as to which column contains the amounts to be summed, so I've made these assumptions:
    K = month
    L = eligible
    M = cost
    O2: =SUMIFS(M,K,"=1",L,"=√")
    (The formula may go in any cell not referenced by the formula. My choice to place it in O2 was arbitrary.)
    Regards,
    Barry
    PS: Apple has provided an excellent guide to writing formulas in Numbers. The iWork Formulas and Functions User Guide is available for download via the Help menu in Numbers. It provides a description of each function with at least one example of how it may be used.
    B

  • Help! Total newbie question...

    I want to make a flash form where the viewer/user can watch a video clip of their choice (from a drop-down control or something else if there's a better way).
    I've found myself totally unable to find our how to do this.  I mean, frankly, I don't even know what kind of file to start from the "New..." form at the beginning of Flash (CS 3.0, btw)!
    I know how to create a Flash Player and link it to a single video.  What I envision is that after the page comes up, with a single player component (initially empty), the user chooses a video from the drop-down list and that video starts playing in the player.
    I guess I have these questions-
    What kind of file should I be starting with?  {I kinda assume I'll be making an SWF to put on a web page.}
    Where on earth do I learn how to get the simplest things (e.g., button clicks, etc.) to work?
    Could any of y'all please offer suggestions where I could find a sample of something similar?  -OR-
    Could any of y'all give me an example of how to do (code?) this?!?!
    I apologize for such dumb questions, but while I'm quite experienced with Premiere, Encore, Photoshop, etc., I am definitely NOT used to Flash!
    Thanks in advance!
    Jim 8^)

    This is going to be a pretty big learning curve for someone with no Flash experience. But, sometimes the best way to learn is to just dive in and start the project.
    I'd recommend using the help and tutorials for a while. You'll need to learn how to create buttons, use ActionScript, and more. My best guess is that you'll need to house each video file on your server with a unique location (URL) then create a pull-down button (or some method of selecting the files) that calls each specific video when the user selects it. I'm assuming you'll need to use a browser fscommand to loadMovie, but someone else may set me straight on that. My experience is limited in this specific task, but I think it might give you someplace to start looking.

  • Even for legendary Apple, WDS a total pain to set up!

    Wow! It took me over 2 hours to set up WDS and I have to tell you it was a painful affair.
    I have an Airport Extreme base station which I use as the main base station and then an Airport Express which I use at the remote.
    That was the idea.
    First I tried setting up WDS using Airport Assistant Setup and that didn't work. It kept saying unable to read configuration of the base station when it was updating the WDS settings.
    Second, I called up Apple tech support and due to various reasons (my own), they emailed me the article telling me how to set up WDS.
    Third, I followed the article Apple tech gave and even then I could not complete all the directions. Apple Admin Utility could not do the WDS setup automatically for unknown reasons. It just kept saying unable to read the remote base station's configuration when it was setting up WDS. It was able to read the configuration of both stations PRIOR to WDS.
    Finally, I went and did it manually and what I did seemed to work:
    a) I did a hard reset of the express (remote) base station.
    b) Then manually set up WDS for both main station and remote station making sure I did not change any of the factory defaults UNTIL AFTER WDS was set up.
    Finally some 2 hours later it worked.
    I consider myself an expert on Mac stuff having used them since 1989 but this WDS set up thing was a total pain!
    I was beginning to think my Airport Express might be faulty because I did buy it refurbished from Apple. I pray now that my network remains stable!

    Hi Mate (I'm English).
    Had same set up - tried all througth Utilities Via Application. Final setup was the olde Favourite, Paper Cip, hold on for 15 seconds, then back to Utilities,,,,, and as we say in England "Bob's yer Uncle.
    Surprised you had a problem with Apple Support...... since '84, had my 18th computer (MACBOOK) and is a 'Lemon, they are replacing it.. Go to Level ONE mate..... there all computent. Stay Happy. Jonathan
    . '[email protected]'

  • A total Newbie asks: "Is anyone else having these problems?!?"

    Hello,
    I am a newbie to iMovie and I have run into a couple of issues that I hope someone can help me with. I can't imagine these are bugs - it has to be not doing something right.
    1) I am trying to build a slide show and I have imported my images into timeline but I can't seem to edit them without double clicking on them. Why does it seem that sometimes I can just click the edge and adjust the length and sometimes I can't? is there a setting that I don't know about? I am tring to adjust these to an audio file so to have to guess at the lengtH just isn't possible.
    2) Also the first few times I imported my images, they imported in their correct numbered order. I got frustrated (see point # 1) and decided to start over and now they don't import in any order at all - just random. IE - if I select images 1-11 to import they will start importing at # 9 then go backwards to 1 and then add 10 and 11.
    Has anyone encountered these issues before? I am about to pull my hair out!
    THANK YOU! WG
    iMac   Mac OS X (10.4.8)  

    Why does it seem that sometimes I can just click the edge and adjust the length and sometimes I can't? is there a setting that I don't know about?
    Note that Direct Trimming of a clip is disabled when the menu command Edit > Show Clip Volume Levels is checked. When checked, we can use the mouse to edit the clip volume. When not checked, we can use the mouse to do Direct Trimming.
    For tips on synching clips to music, see this note:
    http://discussions.apple.com/message.jspa?messageID=607322&ft=y&amp;#607322
    Karl

  • Where do I find itunes 101 for total newbies???

    I am looking for a "how to" for itunes with examples. For instance...I initially made playlists for each of my favorite artists...then noticed that I could search by artist ...so why would I make a playlist for that. What kinds of plalists do people often do?? I'd like to see some examples so I can tailor to my tastes intelligently.
    I have read stuff on this forum that I don't understand because I have no examples of basics. For example...someone talking about radio stations said, "The Smart Playlist should be set to look for any Kind containing "url" or any Kind containing "Stream". That should ensure any stations you have will appear in the Smart Playlist."
    Well, I have a friend who does a radio show in Alaska. I know the URL...but if I set smartplalist to look for URL...how will it fiond the specific URL where Cece's radio show is?
    I don;t think I am totally stupid....but faced witha new and unfamiliar technology...it would sure be handy to see examples of how it works.
    At this point I don't think I know enough to ask specific questions. Where is the simple "how to" and "this is what the term means" manual?? IS there such a thing??

    I have playlists for favorite artists, decade favorites such as the '70's, playlists for "recorded in concert" Cd's, just to name a few. Here is the link that should help.
    http://www.apple.com/support/ipod101/tunes/

  • Total green to setting up a small office server

    I run a small insurance agency and need to set up a server that my employee's (5 altogether) can access client information etc. Right now, we simply access client information via paper files. However, I have purchased a contact management system to keep all of my clients information in one spot. We each need to update client information etc all in one location.
    I am entertaining the Mac Mini Server and need ideas on the best way of doing this. Is there an easier answer to accomplishing this then buying a server? Any inputs you have is greatly appreciated!
    Bob

    Do I need a server in order to use Daylite?
    You need a computer that will act as a server, running Daylite Server. A server grade computer like an Xserve is not required, but you're welcome to use one. Most of our customers use Mac minis as their dedicated Daylite server.
    That was taken from the Daylite faq. But honestly, like the previous user said you could probably get away with just running it on a dedicated computer running Mac OS X Client that has file sharing enabled. I would contact their tech support to make sure.

  • Total Newbie Question ... Sorry :-(

    I know it's a windows thing, and I am now converted to Mac but I gotta know this because it's doing my head in. It's a complete stupid green gilled newbie question.
    When installing new programs on a Mac can you create shortcuts to the programs on the Dock? I did what I THOUGHT it would be, i.e I made an Alias and stuck it in the dock, but on rebooting my Mac later on, in place of the shortcuts where 3 question marks which when clicked on did absolutely nothing???
    Help?
    A.L.I
    Windows XP Pro Desktop, Macbook Pro, 60GB iPod Video   Mac OS X (10.4.5)   OS X

    You aren't installing something from a dmg file are you? The dmg is a disk image – kind of a virtual CD. So when you double click the dmg and then get the little disk/hardrive/custom icon on your desktop that is the same as if you had mounted a CD. You then need to drag the application off of that "CD" into your application folder. Then it is truly installed.
    You can then "eject" the icon your your desktop. This is what happens when you shutdown and without remounting the image your dock shortcut can't find the original.
    Just a thought.

Maybe you are looking for