X-Fi Model SB0460 - Need Mixer

Hello friends at the Creative forums,
I installed an X-Fi card, model SB0460 and it's working fine, but an audio mixer was not installed. If anyone can point me to Creative mixer software or a 3rd party mixer, I'd appreciate it. All I need is volume and pan controls.
Thanks

Download the XFI support pack 2.5, that should do the trick. It has all software en drivers for the XFI series sound card but only untill win7.

Similar Messages

  • HT4623 cant find software updates on my iphone4 model MC605J.Need help please..

    cant find the sofware update on my phone model MC60J
    Need help please..

    What happens when you connect the iPhone to the computer you
    usually sync with and use iTunes on that computer to update the
    iPhone?
    What version of iOS is currently on your iPhone?

  • Hello Community...Macbook w 10.6.8 and I need printing help. Using three canon photo printers of same model and need them to print individually. They are older and NOT network-able. Currently using another Mac to print to 2nd printer. 3 is idle.

    Is there software available where all I have to do is hit print and any of the 4x6 printers will print? Once I get this issue settled, I'll get a second larger format. I have to get this rectified because of time and ease. As mentioned, I have a second mac that I share screens with so my assistant can find pics for customers while I'm shooting. So, I can print through that mac to the printer. (ie....print to canon@##%#@Mac 2) I don't want to bring a third computer just to print to three of the same model printer. (That's what I've been doing) BTW....I totally know there are faster dye-sub printers out there but I'm about 4 more events from purchasing one...($$$) Some print under 10 seconds. I would appreciate any answers out there. Thank you.

    I don't have that printer and I'm not on Mac, so someone else has to step in there. Generally a green/magenta cast indicates none/double printer color management. But then I don't know what you mean by "slight".
    The Spyders aren't the most consistent and reliable calibrators out there. I had a Spyder 3 sensor that I just threw away because it gave a distinct red cast (I have several other calibrators, so there was no doubt). Another potential problem is that with most calibrators you can only adjust the white point along the blue/yellow Kelvin scale, but not on the green/magenta scale. This is often necessary to get a good white point color. In this case you need to use the monitor's OSD controls, and if possible the "pre-calibration" function in the calibrator to measure and monitor it - if that function exists. And I don't know if this is possible with an iMac.
    This is basically a question of getting the white point right, both on the blue/yellow and the green/magenta axis (and luminance of course). The goal is to get a visual match to paper white on screen. With the white point properly set, neutral color balance relates to that, and the rest more or less follows by itself. (In addition you should set the proper black point/contrast for full control, but that's not the issue here).

  • USA iMac model A1224 needs power cord for Belgium

    Hello,
    I have a US iMac Model A1224 I need a power cord that will work in Belgium.  My power cord has a tag that reads: 10A 125V~ .  Will any power cord work, a friend in Amsterdam has a cable with the same interface as my iMac with the European wall mont  (2 round prongs)... Will this work or do I need to look at the voltage settings? 
    Help, Please and THANK YOU.

    Newer Mac models switch voltage automatically.  What does it say after the "125-"?  Probably 220 or 240V.  All you need in that case is a European plug or an adaptor for a US plug ( you can get them in the travel section of any department store or they are easily found in Europe) .

  • MVC DataSet to Model Help Needed

    Primary Question:  I need help to efficiently go from a dataset directly into a model (not a list).  
    I know the code for generating a list to model, but I can't find an efficient way to just input the first matching record into the model.  
    Any help is appreciated!
    Below is the code that works, but is very inefficient.  The inefficiency is causing problems because I need to program a lot of data retrieval while I'm rewriting the whole system.
    Bonus Question...  I can't get the list result to sort by UPPER(lastname).  It generates the error 
    Error [42S22] [Microsoft][ODBC Visual FoxPro Driver]SQL: Column " is not found.
    // CODE THAT WORKS BUT IS WAY TO INEFFICIENT
                Studrec model = new Studrec();
                DataSet dataset = new DataSet();
                string Path2File = "Provider=MSDASQL/SQLServer ODBC;Driver={Microsoft Visual FoxPro Driver};SourceType=DBF;Exclusive=No;Collate=Machine;NULL=NO;DELETED=YES;BACKGROUNDFETCH=NO;SourceDB=\\\\LocalServer\\Students\\DBFS";
                using (OdbcConnection cn = new OdbcConnection(Path2File))
                    var sql = "select studid, first, lastname,grade,homeschl,lastname,birthday,address,address2,program,city,state,zip,phone,sex,specneeds,allergies,medical,lifethreat,c1lastname,c1frstname,c1relat,c1hmphone,c1wkphone,c1cell,c1canpup,c2lastname,c2frstname,c2relat,c2hmphone,c2wkphone,c2cell,c2canpup,c3lastname,c3frstname,c3relat,c3hmphone,c3wkphone,c3cell,c3canpup,c4lastname,c4frstname,c4relat,c4hmphone,c4wkphone,c4cell,c4canpup,c5lastname,c5frstname,c5relat,c5hmphone,c5wkphone,c5cell,c5canpup
    from studrec.dbf order by lastname, first where studid like '%" + @studId.Trim() + "%'"; 
                    using (OdbcCommand cmd = new OdbcCommand(sql, cn))
                    cn.Open();               
                    OdbcDataAdapter DataAdapter = new OdbcDataAdapter(cmd);
                    DataAdapter.Fill(dataset); 
                        List<Studrec> student = dataset.Tables[0].AsEnumerable().
                              Select(dataRow => new Studrec()
                                  StudId = dataRow.Field<string>("studid"),
                                  First = dataRow.Field<string>("first"),
                                  LastName = dataRow.Field<string>("lastname"),
                                  Grade = dataRow.Field<string>("grade"),
                                  Homeschl = dataRow.Field<string>("homeschl"),
                                  Address = dataRow.Field<string>("address"),
                                  City = dataRow.Field<string>("city"),
                                  State = dataRow.Field<string>("state"),
                                  Zip = dataRow.Field<string>("zip"),
                                  Prog = dataRow.Field<string>("program"),
                                  Phone = dataRow.Field<string>("phone"),
                                  Sex = dataRow.Field<string>("sex"),
                                  Birthday = dataRow.Field<string>("birthday"),
                              }).ToList();
                              //}).FirstOrDefault();   // THIS DOESN'T WORK
    //THIS IS MY WORK AROUND
                        model.StudId= student.First().StudId;
                        model.First=student.First().First;
                        model.LastName=student.First().LastName;
                        model.School=student.First().School;
                        model.Grade=student.First().Grade;
                        model.Address = student.First().Address;
                        model.City = student.First().City;
                        model.State = student.First().State;
                        model.Phone = student.First().Phone;
                        model.Sex = student.First().Sex;
                        model.Birthday = student.First().Birthday;                

    Hello,
    Specifically, this should be asked in the
    ASP.Net MVC forum on forums.asp.net.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book: Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C40686F746D61696C2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • SALV Object Model - Info needed

    Hi All,
    I want to create a screen as per below mentioned using
    SALV Object Model
    I am looking some tutorial how to do this use SALV.
    Your help will be appreciated
    Node       |No:______         Date: ________
         a      |Desc: ________________________ Deleted : _
         b      |   (Here above field are editable)
         c      |-------------------------------------------
         d      |
         e      |
         f      |
         g      |
                |          Here i want an ALV Editable Grid
                |     on the basis of tree node selection
                |            on the left hand side
                |
                |
                |

    Rich,
    Thanks for your reply.
    Whether can i use CL_GUI_ALV_GRID along with SALV?
    I searched for some simple tutorial for
    SALV tree model, could not find,  

  • IMac model/upgrades needed to run design software smoothly?

    As a designer, I need to run Autocad, Vectorworks, Rhino, the Adobe suite, as well as arcGIS and Vue on a Windows partition...preferably with room to breathe.  I want to buy an iMac (27") but I am wondering which upgrades would be most beneficial considering the breadth of programs that I will need to run...  Any thoughts on which upgrades (RAM, hard drive etc...) would be best for my needs?

    Max the RAM out 1st thing, bigger or more HDDs, next, & choose the 2GB DDR5 graphics option.
    It can hold up to 32 GB of RAM...
    http://eshop.macsales.com/shop/memory/iMac/2011/DDR3_21.5_27

  • Still need .mix File Format Support from Microsoft PictureIt

    My many files in the .MIX format will die unless Adobe can reverse engineer a conversion.  I have a ton I would like to batch convert to .jpg or .dng.  Can you help, I am using a Mac and want to jetison my Windows machine.  Lots of folks grouse on the net forums who are stranded the same way.

    Advice for the future: If you intend on archiving images, do not choose a closed format that  only one application can read.
    Even with the resources Adobe has, they do not have the legal ability to reverse engineer another's proprietary file format. If this was even remotely possible, I'd suggest that you visit Adobe's feature request web page.
    If you want to be forever done with "anti-virus nonsense" then you may not want Mac either. Apple recommends anti-virus software in this document and even includes some very limited antivirus capabilities in Snow Leopard.

  • 1:1 Self Relationship is hard to model.  Need advice.

    Here is a quick example of the problem using boats...
    Create an entity "the boat".
    Create a 1:1 relationship of "the boat" to "the boat". Call both the forward and reverse text "the other boat"
    Here is the original text from the rules document: When boats are on opposite tacks, a port-tack boat shall keep clear of a starboard-tack boat.
    Here is the modeled rule:
    the boat is required to keep clear if
         the boat is on a port tack and
         for(the other boat, the boat is on a starboard tack)
    When you debug this and create 2 boats, you will see that each boat actually has 2 relationships. The rule doesn't actually work intuitively. Both relationships must be set.
    How do people solve this problem?

    From your description, I think what you're after is cross entity reasoning.
    As a start, have a look at the Entity and Relationship Functions, particularly the example rule about twins (search for the word "twin" on the page): http://download.oracle.com/docs/html/E24270_01/Content/Reference/Rule%20syntax%20reference/Entity_and_relationship_functions.htm
    In the twin example, there are multiple instances of 'the child', and for each instance of 'the child' the rule works out whether or not it is a twin by comparing one child's date of birth with another child's date of birth. Obviously this isn't exactly the logic you're after, but you should get some ideas to explore if you look into the cross entity reasoning functionality and inferred relationships logic.
    Cheers,
    Jasmine

  • Good morning. In October I'll be in america for job.I'd like to know if I can buy the new iphone model 5s and then use it in Italy.Could you tell me the correct number model I need to buy? Must I do anything there before come back in Italy ?thank you

    and also what about the apple care? Where is it better to sign it ? Could I make it in Italy?
    wait your ansewers?
    Thank you

    You are on Windows 2000, you do not have a "Firefox" button, and should consider yourself to be fortunate in that you still have menus and don't have to do anything to get the menus back instead of the "Firefox" button. (The same applies to Windows XP users).
    Use the "File" menu to get to Import. You are not on Windows 7 or Vista, and don't have to put up with the nonsense added for Aero.
    If you want the "Firefox" button you can get it with View -> toolbars -> (uncheck) Menu Bar. The menu bar and the "Firefox" button were supposed to be mutually exclusive (which is impossible in some cases without being incompatible).
    Once you are using the "Firefox" button ...
    Use the "Alt" key to view the menu bar (temporarily) containing File, Edit, View, History, Bookmarks, Tools, and Help. On Windows 7 and Vista, the menu bar was hidden by default in Firefox 4 and above. These menu items are more or less available under the "Firefox" button which has the most used of the built-in Firefox menu items available in a different format.
    To get back to having menus again. "Firefox" button -> Options (second column) -> (check) Menu Bar
    You can make '''Firefox 7.0.1''' look like Firefox 3.6.*, see numbered '''items 1-10''' in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 thru 8.0, look like 3.6)]. ''Whether or not you make changes, you should be aware of what has changed and what you have to do to use changed or missing features.''
    * http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface

  • Extremely slow 20" iMac G5 (iSight model) Help needed!!

    Hi Everyone
    Okay, I've spent the best part of the last two days troubleshoooting this machine for a friend of mine.
    SYMPTOM
    Her iMac is running slowly fullstop. It boots slowly and trying to perform any functions only results in the "beachball" pointer for a long time before the computer responds. Example: Clicking on the Apple Menu can take over a minute to display the options. Select an option and you wait over another minute before the computer displays the result. This is the same for anything you do - within the Finder or any other app!
    WHAT I'VE DONE SO FAR
    Okay, here is a list of everything that I've done so far:
    Disk Utility: Repaired disk permissions 3 times whilst booted in safe mode. No improvement!
    Disk Utility: Repaired disk permissions 2 times whilst booted in normal mode. No improvement!
    Disk Utility: Repaired disk 2 times whilst booted in normal mode. No improvement!
    Zapped PRAM 3 times. No improvement!
    Decided to take the plunge and eliminate the HD and OS as possible culprits:
    Started computer in Target Disk Mode and connected it to a PowerBook G4 (i.e. another PPC Mac)
    performed a backup
    Disk Utility: reformatted hard drive 3 times
    TechTool Pro: Read/Write Test on hard drive - passed!
    TechTool Pro: Surface Scan on entire hard drive - passed! (yes, all 488,397,168 blocks after 17hrs 25mins)
    reinstalled Mac OS X Leopard (10.5.6) from an original Apple retail DVD
    Booted iMac - now starts up in about 3mins 30 secs (as opposed to a lot longer earlier)Tried using the Finder to perform basic Mac OS X functions (e.g. open system preferences, access About This Mac, etc). STILL TAKES A LONG TIME - Very little improvement!!!
    Removed the 2GB DDR2 SDRAM from iMac's RAM slot
    Booted iMac - still starts up in about 3mins 30 secs
    Tried using the Finder to perform basic Mac OS X functions (e.g. open system preferences, access About This Mac, etc). STILL TAKES A LONG TIME - no improvement over having the extra RAM installed!!!
    Re-inserted the extra 2GB RAM DIMM back into iMac
    Ran TechTool Pro to test hardware (everything passes, including memory).
    Okay, so now I'm at a loss. Any suggestions would be most welcome and appreciated!
    Thanks!
    Joe.

    Actually, I haven't tried Rember, thinking that since the computer displayed the same behavior without the extra SDRAM installed as it does with it installed, that it couldn't be the RAM. And the factory RAM is soldered on, so I can't do anything about that. Still, RAM is what I was suspecting originally (after the HD), so I'll go ahead now and run Rember on it.
    Since you're online, I'd appreciate your opinion on something else I've identified. Since reinstalling the system, the computer boots a lot quicker than it was, but as I said it is still extremely slow performing functions once booted. HOWEVER, I've noticed that now once a particular function is performed once, it can be performed again and again quickly.
    EXAMPLE
    Clicking on the Finder icon in the Dock the first time takes the computer 26 seconds to open a finder window. Do it again and it appears instantly. Likewise, selecting clicking on the Trash icon in the Dock took 31 seconds the first time to open it up. After that it opens up instantly. It's the same with using the Apple Menu, etc.
    If I reboot the computer, the same thing happens all over again. Any ideas what this may mean?
    Thanks very much for your help!
    Joe.

  • I have a i pad model a1219 what cable do i need to use to charge it

    i have a i pad model a1219 that im using any charge cable from my i pad model a1395 but it will not charge  do u need a new charge cable for my i pad model 1319

    You need this:
    http://store.apple.com/us_smb_78313/product/MA591G/C/apple-30-pin-to-usb-cable

  • I need a how to video on assemblying an HP Pavilion G7 model LF161UA Laptop.

    Does anyone know where I may either view or download a video I may view of an HP Pavilion G7 Model # LF161UA being assembled, I have viewed one being disassembled, now I need to view a video assembling one, that is a HP Pavilion G7 series model # LF161UA, need immediately please, thank you - Greg from CFT.

    The end of this one shows reassembly after motherboard replacement.  https://www.youtube.com/watch?v=ZMVW2jniITk Run the video backwards; seriously. Steps are steps in either direction. 

  • How to open a popup and get some data from a model class

    Hi experts,
    mi problem is the next.
    I am opening a popup from a view that is  controlled by a controller named identificador.do, the controller class is z_identity_cl.
    the window that is opened is other view controlled by nocupentes.do, with a controller class, z_nocupantes_cl.
    In the do_init event of the z_nocupantes class i have added the next code:
    <i>  DATA: cl_parent TYPE REF TO Z_IDENTtity_CL.
    Recuperamos el atributo parent
      cl_parent ?= me->m_parent.
    model is the class i want to recover, it is defined in the attibutes of the class z_identity_cl
      model     ?= cl_parent->get_model( 'mo' ).</i>
    When i open the popup i get the next error:
    <i>BSP exception : the object  numero_ocup.htm(this is the page i want to open) in URL sap/ZHR_PDWEB_GDPT/numero_ocup.htm is a view. Initialize the controller.</i>
    what do i have to do?
    any help?
    thanks in advance

    Hi Eduardo,
      you should be calling the Controller in the URL not the View. after calling the controlles in the URL create the view in the DO_REQUEST of the Controller. This should resolve the issue.
      In the the DO_INIT define the Parent class of the Controller.
    METHOD do_init.
      DATA: lr_my_parent TYPE REF TO zcl_hr_main_control.
    * set (MVC) model
      lr_my_parent ?= me->m_parent.
      set_model( model_instance = lr_my_parent->model
                       model_id = 'Z' ).
      me->model = lr_my_parent->model.
    ENDMETHOD.
    method DO_REQUEST.
    * datadeclaration
      DATA: abs      TYPE REF TO if_bsp_page.
    * if input is available, dispatch this input to subcomponent.
    * this call is only necessary for toplevel controllers.
      dispatch_input( ).
    * if any of the controllers has requested a navigation,
    * do not try to display, but leave current processing
      IF is_navigation_requested( ) IS NOT INITIAL.
        RETURN.
      ENDIF.
    * output current view (create, set attibutes, and call)
      abs = create_view( view_name = 'to_disp.htm' ).
    * set attribute model if needed
      abs->set_attribute( name = 'model' value = model ).
    * call master views
      call_view( abs ). "calls itself
    endmethod.
    Cheers
    Amandeep

  • JCo destination error while executing the webservice model

    Hi,
    I have explained what I have done so far and whats my issue right now.
    My requirement is calling a PI interface (exposed as webservice) from webdynpro for java and setting some parameter value to the PI interface based on which our functional flow will continue.
    Done so Far :
    1. Created a webdynpro for java application using NWDI.
    2. received the WSDL file of the PI interface and imported as "Adaptive webservice model" into webdynpro.
    3. used the model and set the parameters to PI interface and executed the model.
    4. I have created JCO destinations in the source system (where the application runs) to communicate to the PI system. A special user has been created and assigned in the connection for communicating.
    5. Also I have created the "Dynamic Webseviceproxies" in visual admin with the same name as the JCO destinations. It had a property "URL" for which I have tested with providing both the PI server URL (Http://<Hostname>:<Port no>) and also the complete webservice URL (Which calls the WSDL file directly)
    when I run the application, I get the following error.
    1. Exception on creation of service metadata for WS metadata destination 'WD_RFC_METADATA_DEST' and WS interface '{<Interface Name>'. One possible reason is that the metadata destination 'WD_RFC_METADATA_DEST' has not been properly configured; check configuration.
    after some exception the next error follows
    2. Invalid Response Code 403 while accessing URL: <The URL which I have provided in the webservice proxy in Visual admin tool> Response Message: Forbidden.
    after some lines of exception from PI server the next error follows.
    3. Error: You are not authorized to view the requested resource
    My Question :
    1. Do I miss anything in Configuration?
    2. Is my way of approach wrong?
    3. Any additional authorization needed?
    Kindly provide some ideas and inputs.
    Regards,
    Mahendran B.

    Dear Mahendran
    JCO destination will not used for the Web Service Model. While creating the webservice model, you need to use the logical destination which you have created in the Visual Admin.
    Please refer to the Secured WebServices II and verify currently used webservice logical destination How To Reimport Web Service Models in Web Dynpro for Java
    You can also refer to
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/900bbf94-a7a8-2910-e298-a651b4706c1e?QuickLink=index&overridelayout=true
    Hope it will helps
    Best Regards
    Arun Jaiswal

Maybe you are looking for

  • Can't access EJB deployed on remote OC4J - what am I doing wrong?

    I'm unable to access an EJB deployed on a remote OC4J instance (ie, part of a 9iAS installation on another machine vs local in JDeveloper). I've reverted to a stupid-simple EJB in hopes of getting it going prior to trying my actual code. The EJB work

  • Changes to LX50GU01 are forbidden by SAP* - note 943783

    Hi gurus, im installing baseline package for EhP 7 and I have problem with note 943783 implementation. During implementation, I receive this message: Changes to LX50GU01 are forbidden by SAP*. I tried logging into SAP* account, but from there I cant

  • Weblogic server with Fatwire

    Dev2Dev, I need to integrate weblogic server with Fatwire (CPM Tool) I would like to know the steps or docs which help me to do that It will be really helpful if you could send it asap. Thanks n Regards Suresh

  • Accessing Discoverer Reports from Oracle Apps

    Hi all, Requirement: Accessing Discoverer Reports from Oracle Apps Discoverer: 11g Oracle Apps: 12i When I am trying to access the Discoverer Reports from Oracle apps, again it is asking for Oracle Apps Login details. Can we have any other option tha

  • Using AIR for desktop

    is drag'n'drop from system and back possible? i would like to build an air desktop drop zone area. it would be cool when i can use flex for building desktop gadgets. last time i checked it was not possible to drop content to air at all. hence a cs4 f