Audigy 2 -- No option to select Line-in 2/Mi

Hello,
I have an Audigy 2 ZS Platinum and I'm having an issue with recording inputs. I recently had to do a complete wipe of my hard dri've. When I reinstalled XP I came here to Creative's site and downloaded the latest drivers. When I get the sound card up and running, however, I have no option to select Line-in 2/Mic 2 as a recording input. I only have Microphone, Wave, What-U-Hear, Analog Mix and a couple other options.
Is there something I'm doing wrong? I want to use the Line-in 2 on the front panel for recording but as of right now there is no option for me to even choose it. Any help or insight would be much appreciated. Thanks.

Hi Chris,
Thanks for using Apple Support Communities.  AirPlay has changed some in iOS 7 and is now located in Control Center.  There's additional information here:
iOS: Using AirPlay
http://support.apple.com/kb/HT4437
Cheers,
- Ari

Similar Messages

  • Radio button and select option in one line

    Hi,
    I have an requirement in which i need to display the radio button and select option in one line in an report program.
    How can i do it? 
    Regards,
    Arun.

    Hi,
    Try this code.
    TABLES: bkpf.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: p_r1 RADIOBUTTON GROUP a.
    SELECTION-SCREEN COMMENT 4(20) text-001 FOR FIELD p_r1.
    SELECTION-SCREEN COMMENT 30(12) text-002 FOR FIELD p_date.
    SELECTION-SCREEN POSITION 39.
    SELECT-OPTIONS: p_date FOR bkpf-budat OBLIGATORY.
    SELECTION-SCREEN END OF LINE.
    PARAMETERS: p_r2 RADIOBUTTON GROUP a.
    text-001 = " Radio button"
    text-002 = "Posting date"

  • Radio button & select options in same line

    Hi,
       I am working in sap 3.1 version. there I required radio button and select options in same line. here begin of line is not allowing for select options.
    Thanks,
    suma

    Hi,
    Hope the below code helps you.
    SELECTION-SCREEN BEGIN OF LINE.
    *SELECTION-SCREEN COMMENT [/][pos](len)
                              {text|{[text] FOR FIELD sel}}
                              [VISIBLE LENGTH vlen]
                              [MODIF ID modid]
                              [ldb_additions].
      parameters: p1 radiobutton group 1,
                  p2 radiobutton group 1.
      select-options s_date for sy-datum.
      SELECTION-SCREEN END OF LINE.
    You can use SELECTION-SCREEN COMMENT for placing the appropriate comments at respective positions.
    Regards,
    Satya

  • Folder or File path when f4 option on selection screen is clicked

    can any one please let me know if there is a function module which can fetch folder name form the directory path when f4 option of selection screen field is selected. Currently I am able to get the file name using FM F4_DXFILENAME_4_DYNP but the requirment is like I have to select either folder name or the file name depending on user selection.

    HI
    use the following
    FORM GETFILE.
      CALL FUNCTION 'WS_FILENAME_GET'
       EXPORTING
        DEF_FILENAME           = ' '
         DEF_PATH               = '.'
        MASK                   = ' '
        MODE                   = ' '
        TITLE                  = ' '
       IMPORTING
         FILENAME               = TXT_FILE
        RC                     =
      EXCEPTIONS
        INV_WINSYS             = 1
        NO_BATCH               = 2
        SELECTION_CANCEL       = 3
        SELECTION_ERROR        = 4
        OTHERS                 = 5
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    <b>TMP_GUI_DIRECTORY_LIST_FILES</b>
    Retrieve all of the files and subdirectories on the Presentation Server (PC) for a given directory.
    Example:
    data:  lc_directory         like bdschko16-target_dir value 'C:\TEMP\',
           lc_filter(20)        type c default '.'.
           li_file_count        type i,
           li_dir_count         type i,
           ltab_dir_table       like sdokpath occurs 0 with header line,
           ltab_file_file_table like sdokpath occurs 0 with header line.
    call function 'TMP_GUI_DIRECTORY_LIST_FILES'
      exporting
        directory        = lc_directory
        filter           = lc_filter  importing
        file_count       = li_file_count
        dir_count        = li_dir_count
      tables
        file_table       = ltab_file_table
        dir_table        = ltab_dir_table
      exceptions
        cntl_error       = 1
        others           = 2.
    regards vijay

  • Layout Option on Selection Screen For Zreport

    Hi All,
           Plz explain how to do coding for using Layout option  on selection screen of
    report. Also i should be able to save and create new layout on selection screen.
           Thnaks in advance.
    Aniket Dayama

    hi,
    creation of sub-screens.
    selection-screen begin of tabbed block <name of the tab> for < height of the tab in no's> lines.
    eg;
    selection-screen tab(20) l1 <data element> user-comand <name of the funcion code>
    selection-screen end of block <name of the tab strip>.
    eg;
    selection-screen begin of tabbed block mytab for 10 lines.
    selection-screen tab(20) l1 user-command tab1.
    selection-screen tab (20) l2 user-command tab2..
    selection-screen end of block mytab.
    Under initialization.
    data element = text-01.
    data element = text=02.
    How to initialize the tab with default screen.
    <name of the tab> - prog = sy-repid.
    <name of the tab>- dynnr = '<subscreen no>'.
    <nane of the tab>-activetab = '<user-command for the strip>
    if this has solved ur problem then dont forget to reward with points.
    with regards,
    madhuri.

  • Length of select-options in selection screen.

    Hi,
    I was able to give the lemgth of select-options only upto 8 characters.
    Select-options :S_Mtrial for mara-matnr.
    But my requirement is I want total name which is more than 8 characters.
    Select-options:Material_numberl for mara-matnr.
    Can any one help how to do.
    Thanks in advance.

    The Statement...
    Select-options :S_Mtrial for mara-matnr
    The selection screen length depends on the type that you are assigning to it. Since the length of type
    mara-matnr is less, the selection option S_Mtrial  will be displayed with short length in the selection screen.
    The alternate to do this is...
    selection-screen begin of line.
    selection-screen comment 2(10) text-001.
    select-options : <ur select option name>
    selection-screen end of line.
    Text element,text-001 contains the select option text to be displayed in the screen
    Hope it helps.

  • Side by side select options in selection screen

    Hai Gurus,
    In a report, I need to place Period From and Period To date select-options in selection screen.
    In one line (i.e side by side).
    Appreciate your immediate response.
    Thanks and Regards,
    Kiran.

    Thanks to all,
    I got it.
    my code here.
    SELECTION-SCREEN: BEGIN OF BLOCK sel1 WITH FRAME TITLE text-sel.
    PARAMETERS: SUMMARY AS CHECKBOX USER-COMMAND SUMMARY.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(13) text-pfr.
    SELECT-OPTIONS: VALID_FR FOR ZZUTIL_RATE-VALID_FR MODIF ID RAM no intervals NO-EXTENSION. "changed
    SELECTION-SCREEN COMMENT 30(13) text-pto.
    SELECT-OPTIONS: VALID_TO FOR ZZUTIL_RATE-VALID_TO no intervals NO-EXTENSION. "changed
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN: END OF BLOCK SEL1.

  • Transfer of selected lines to AR

    I have a case where the client wants to give replacement items(for wasted products) in the same SO(wasted products can be identified immediately after shipment reaches the customer). Can I do a transfer SELECTED lines to AR interface post shipping? I ran the workflow background process, but there weren't any parameters by which I could transfer selected lines(or orders). The idea of doing this is to keep certain lines in 'Shipped' status so that if a replacement is necessary, I can add another line with a ship-only workflow(I hope this is possible, please confirm).However, if running the workflow background process transfers all lines in 'Shipped' status to 'Closed', then I cannot add new lines. Please assist

    Once the lines are ship confirmed and then next time workflow background process is run it moves the line status to closed this is out of the box functionality. If you want certain items not to move to invoicing based on your requirement need to customize the workflow for those lines based on item type or some qualifier to stop at Shipped status and only move them to invoicing upon an action taken by the user or system.
    Regardless if you have to invoice that item, then just keep the SO open and create a new line with the ship only option when you have to replace the waste product. Because once the order is closed you cannot make any changes to the order.
    Hope I did not confuse much.
    Thanks
    Ravi

  • Audigy 2 ZS under Vista - Line-in prob

    I've a problem with my Audigy 2 ZS card running under Windows Vista Ultimate 32bits. I record using the line-in and it records fine but ONLY if I unmute the line-in sound in the speakers setup... and I just want to record it, NOT no hear it. I mean, I have the record level at 00% in the Recording Devices->Analog Mix properties, but it won't record anything unless I also set it to a high level and unmute it in Playback Devices->Speakers properties. I tryied uninstalling the drivers, then removing everything left with Driver Sweeper and the reinstalling them again, but I still have the same problem. Any ideas?
    BTW, I already have checked "Record without monitoring" in the Analog Mix->Custom tab, but it only mutes the speaker output when I'm acti'vely recording, before and after that precise moment I can still hear the line-in output. Also using the Microphone device is not an option because the line-in device has a much cleaner (i.e. less noisy) signal.
    Thanks!

    I've reinstalled windows vista and still have the same problem... any clue how to fix it without having to go back to XP?

  • Control Slave Select line with blackfin

    Hi
    I am trying to communicate with an SD memory card using the BF-537 ez-kit board. I have the SPI interface set up, but i need to send a 6-byte command at once without the slave select line changing. It appears the only word size options availabe are 8- and 16-bits... is there a way to do this??
    Thanks in advance!
    -Eman2334

    Hi Eman,
    What VIs are you using to send data? Is the 6 byte command for the flash memory? Is it mentioned in the memory manual? Can you verify that its 6 bytes and not bits.
    Thank You,
    Jaidev
    National Instruments
    LabVIEW Embedded Product Support Engineer

  • Satellite L670-1HJ -Internal Speakers are not muted when selecting line Out

    I want to use an external set of speakers, but when plugging them in, selecting line out in Realtek HD Audio Manager doesn't turn off the internal speakers, instead only reducing their volume somewhat. Selecting Headphone does switch them off, but this results in audio being sent out at headphone levels, which sounds awful on normal speakers and is therefore not an option.
    Is there a way I can either get it to switch them off when using line out too, or just disable the internal speakers altogether?

    Unfortunately, in sound properties in can only deactivate either the HDMI output, or speakers, which switches both the internal and external ones on or off together, but doesn't let me choose between the two.
    When selecting the headphone setting, the internal equalizer seems to switch to a different setting, which sounds very different and completely unnatural, so I'd prefer to find a way to use the much better sounding line out with disabled internal speakers.

  • Decode statement in Select line of a View Object Query

    I attempted to create a view object in expert mode with a customized query.
    The query had a decode statement in the select line of the query. The view
    object compiled correctly but gave an error when run.
    ex: select .... decode(CrpSchools.SCHOOLS_ID,null,CrpCustSchools.SCHOOL_NAME,CrpSchools.SCHOOL_NAME) SCHOOL_VALUE, ...
    from ....
    where ....
    The error was that school_value does not exist in the statement. I got the error when
    doing a vo.executeQuery().
    When I removed the decode statement everything worked correctly. Does anyone know if
    the decode statement cannont be used in the select line of a query in a view object?
    Or maybe I was linking the query column (SCHOOLS_ID) up to the view attribute (SCHOOL_VALUE) incorrectly in the
    Attribute Mappings tab of the VO wizard?

    There should be no problem using a DECODE() statement, provided that you've aliases the column as you have done.
    At design time, if you click on the (Test) button, does your query test ok?
    Are you by chance applying a custom where clause at runtime?
    If so, are you saying:
    setWhereClause("yourtable.column_alias = ?";
    or are you doing:
    setWhereClause("column_alias = ?";
    for an expert-mode query, you'll need to use the latter syntax.

  • How to select line items in recording(BDC)

    Hi All,
    we are trying to Recording QP02 transaction ,we have inputs like material,plant,Group,Group Counter.
    after entering these inputs we will get multiful line items(inspection characteristics).we need to check one field for each item.
    How can we get this?
    Please help me?
    Thanks,
    Peddi reddy.

    Hi Kamesh,
    Thanks.
    After selecting line items i am selecting control indicators Tab.
    then Pop up screen called as (Edit characteristic control indicators) will open ,..then just pressing enter..the it will show another pop up ..here i am selecting one field(Long term Inspection)..the process has to do for all line items.
    In My program i have copied BDC performs which i got from Recording.
    Do i need to change tha performs or will it work?
    i tested in foreground with another material .... upto 3 or 4 line items its working fine.after that sytem does.t say anything.
    if i need to chage performs please help me .

  • I have a macbook purchased in dec 2009 with OS 10.6.8, i can't install Mavericks as it is not finding any place to install. It says it cant be install on the harddrive and i dont have any other option to select .. what to do?

    i have a macbook purchased in dec 2009 with OS 10.6.8, i can't install Mavericks as it is not finding any place to install. It says it cant be install on the harddrive and i dont have any other option to select .. what to do?

    imnyaar wrote:
    ... It says it cant be install on the harddrive
    What does the message say, exactly?
    Try this:
    From the Finder's Go menu, choose Computer:
    Double-click your hard disk icon. It is usually named "Macintosh HD":
    Look for this folder:
    If it appears in that window, drag it to the Trash.

  • HT2480 When I am setting up exchange / outlook mail, I am not getting option to select the folders for syncing, can you please help me to solve this problem

    In outlook mail mails are not getting downloaded and option to select the folders to sync is not visible in the exchange setup

    See:
    * http://www.ehow.com/how_6609141_remove-bearshare-spyware.html
    * http://www.fanhow.com/answers/question-77222-how-to-delete-bearshare-search-from-firefox
    You can look for a "Mediabar" program under "Control Panel > Programs and features"
    See also this forum thread about BearShare:
    *[[/questions/792580]]
    If the menu bar is hidden then press the F10 key or hold down the Alt key to make the menu bar appear.
    Make sure that toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible: "View > Toolbars"
    *Open the Customize window via "View > Toolbars > Customize"
    *Check that the "Bookmarks Toolbar items" is on the Bookmarks Toolbar
    *If the "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the toolbar palette in the customize window to the Bookmarks Toolbar
    *If missing items are in the toolbar palette then drag them back from the Customize window on the toolbar
    *If you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar set up
    *http://kb.mozillazine.org/Toolbar_customization
    *https://support.mozilla.org/kb/Back+and+forward+or+other+toolbar+items+are+missing

Maybe you are looking for