Mail sender issue

Hi all
since upgrading to iOS7.1.1 I've had a weird issue. In the sidebar of mail on my ipad2 the sender is listed as the same person for all messages. When I rap on it and go  into the body of the message the correct sender is listed in the "from" line and I am able to reply to that correctly.
I have deleted and added my exchange account on several occasions but this hasn't rectified the problem. This problem does not occur on my iphone 5 (running 7.1), on my MacBook Pro (running 10.6.8) or on the webmail page of my email server.
Any thoughts?
Many thanks in advance.
Bugsy

Hello there, Bugsy.
Great job troubleshooting your issue on your own, so far! As simple as it may seem, I find the following Knowledge Base article helpful when an App on iOS doesn't seem to be functioning as expected:
iOS: Understanding multitasking
http://support.apple.com/kb/ht4211
If an app doesn't respond to your input, or doesn't perform as expected, do the following, testing after each step:
Check for app updates.
Force the app to close.
Restart your device.
Update your iOS device.
Learn more about troubleshooting apps.
Thanks for reaching out to Apple Support Communities.
Cheers,
Pedro.

Similar Messages

  • Help! Sporadic Mail sending issues

    I have recently upgraded to Lion and since then have been having sporadic problems sending mail.  I use a .mac account with O2 broadband at home and an unknown provider at work. 
    Mail stops sending for several hours at a time, and has done so from both locations.  Since my iphone and ipad still send mail without a problem at these times, I have to assume that it is a Lion issue and not a provider issue.
    Connection doctor shows green for incoming and outgoing but mail simply refuses to send.
    My current mail-send-blackout has been going on for 18 hours now.  Yet yesterday my mail would send from home and also when I arrived at work.  But halfway through the working day it just stopped.  Again.  No apparent reason or pattern
    If anyone has any suggestions, I'd be very grateful
    Thanks
    Cal

    Yes well there were no changes to the account, just stopped sending mail via SMTP
    Deleted account and set up new one, same thing cannot send mail via Mail app
    As mentioned another disc on the same comp with same account details etc works fine
    so don't understand
    Seems a lot of people are having this problem too.
    Thanks Anyway

  • Mail Sending issue to Outlook - Mail Request not Showing in SOST

    Hi,
    Im using mail sending logic for sending a mail to Creator of Billing. i have one itab which is having two Users with two different mail IDs. i need to send a mail to those user mail ids to Outlook
    user  Mail id
    12           XXX
    12           XXX
    13           YYY
    13           YYY
    at end of User i need to send a mail..
    loop at itab.
    at end of user.
    here sending a mail...for the first user it is sending mail perfectly..and mail request is available in SOST . once its comes to second user sending a mail getting sy-subc = 0 after SO_NEW_DOCUMENT_ATT_SEND_API1 FM..and mail request Not coming for second mail id in SOST both mails also available in Sap out box.
    endat.
    endloop.
    Kindly Help me out..
    Regards
    Dileep

    Hi,
    to send mails use this:
    FORM docu_send_email USING pv_otfdata TYPE tsfotf
    pv_emailid TYPE any
    pv_formname TYPE any.
    DATA: lv_filesize TYPE i,
    lv_buffer TYPE string,
    lv_attachment TYPE i,
    lv_testo TYPE i.
    DATA: li_pdfdata TYPE STANDARD TABLE OF tline,
    li_mess_att TYPE STANDARD TABLE OF solisti1,
    li_mtab_pdf TYPE STANDARD TABLE OF tline,
    li_objpack TYPE STANDARD TABLE OF sopcklsti1,
    li_objtxt TYPE STANDARD TABLE OF solisti1,
    li_objbin TYPE STANDARD TABLE OF solisti1,
    li_reclist TYPE STANDARD TABLE OF somlreci1,
    li_objhead TYPE soli_tab.
    DATA: lwa_pdfdata TYPE tline,
    lwa_objpack TYPE sopcklsti1,
    lwa_mess_att TYPE solisti1,
    lwa_objtxt TYPE solisti1,
    lwa_objbin TYPE solisti1,
    lwa_reclist TYPE somlreci1,
    lwa_doc_chng TYPE sodocchgi1.
    CONSTANTS: lc_u TYPE char1 VALUE 'U',
    lc_0 TYPE char1 VALUE '0',
    lc_1 TYPE char1 VALUE '1',
    lc_pdf TYPE char3 VALUE 'PDF',
    lc_raw TYPE char3 VALUE 'RAW',
    lc_ordform TYPE char15 VALUE 'ZORDCONFIRM_01',
    lc_attachment TYPE char10 VALUE 'ATTACHMENT'.
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    format = lc_pdf
    max_linewidth = 132
    IMPORTING
    bin_filesize = lv_filesize
    TABLES
    otf = pv_otfdata
    lines = li_pdfdata
    EXCEPTIONS
    err_max_linewidth = 1
    err_format = 2
    err_conv_not_possible = 3
    err_bad_otf = 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.
    LOOP AT li_pdfdata INTO lwa_pdfdata.
    TRANSLATE lwa_pdfdata USING ' ~'.
    CONCATENATE lv_buffer lwa_pdfdata INTO lv_buffer.
    CLEAR lwa_pdfdata.
    ENDLOOP.
    TRANSLATE lv_buffer USING '~ '.
    DO.
    lwa_mess_att = lv_buffer.
    APPEND lwa_mess_att TO li_mess_att.
    CLEAR lwa_mess_att.
    SHIFT lv_buffer LEFT BY 255 PLACES.
    IF lv_buffer IS INITIAL.
    EXIT.
    ENDIF.
    ENDDO.
    Object with PDF.
    REFRESH li_objbin.
    li_objbin] = li_mess_att[.
    DESCRIBE TABLE li_objbin LINES lv_attachment.
    Object with main text of the mail.
    lwa_objtxt = space.
    APPEND lwa_objtxt TO li_objtxt.
    CLEAR lwa_objtxt.
    DESCRIBE TABLE li_objtxt LINES lv_testo.
    Create the document which is to be sent
    lwa_doc_chng-obj_name = text-008.
    lwa_doc_chng-obj_descr = text-008.
    lwa_doc_chng-sensitivty = lc_0.
    lwa_doc_chng-obj_prio = lc_1.
    lwa_doc_chng-doc_size = lv_testo * 225.
    Pack to main body.
    CLEAR lwa_objpack-transf_bin.
    header
    lwa_objpack-head_start = 1.
    The document needs no header (head_num = 0)
    lwa_objpack-head_num = 0.
    body
    lwa_objpack-body_start = 1.
    lwa_objpack-body_num = lv_testo.
    lwa_objpack-doc_type = lc_raw.
    APPEND lwa_objpack TO li_objpack.
    CLEAR lwa_objpack.
    Create the attachment.
    Fill the fields of the packing_list for the attachment:
    lwa_objpack-transf_bin = gc_x .
    header
    lwa_objpack-head_start = 1.
    lwa_objpack-head_num = 1.
    body
    lwa_objpack-body_start = 1.
    lwa_objpack-body_num = lv_attachment.
    lwa_objpack-doc_type = lc_pdf.
    lwa_objpack-obj_name = lc_attachment.
    lwa_objpack-obj_descr = text-008.
    lwa_objpack-doc_size = lv_attachment * 255.
    APPEND lwa_objpack TO li_objpack.
    CLEAR lwa_objpack.
    lwa_reclist-receiver = pv_emailid.
    lwa_reclist-rec_type = lc_u.
    lwa_reclist-notif_del = gc_x.
    lwa_reclist-notif_ndel = gc_x.
    APPEND lwa_reclist TO li_reclist.
    IF li_reclist IS NOT INITIAL.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = lwa_doc_chng
    put_in_outbox = gc_x
    TABLES
    packing_list = li_objpack
    object_header = li_objhead
    contents_bin = li_objbin
    contents_txt = li_objtxt
    receivers = li_reclist
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8.
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    ENDIF.
    ENDFORM. " DOCU_SEND_EMAIL

  • VF03 - Mail send issue

    Hi Experts ,
    I have the below requirement .
    In VF03 - Issue output type - i have attched one output type name with which one Ysmartform has been attached .
    Functional guys have done some settings in SPRO so when they press the PRINT button it is generating spool for printr as well as it is sending mail to the vendor (picking mail id from vendor master)
    with the smartform as an attachment .
    The subject of the mail which goes to vendor comes from the setting - NACE - V3 (billing)- Output types -
    some output name congi by functional- click on that - mail title and text - for EN language a text has been maintained there .
    The problem i am having is the  SUBJECT OF THE MAIL and the PDF ATTACHMENT ( The out put of the smartform) both is having the same name . Means wht ever name is there in subject it is comming in the attachment also .
    I need to change the name of the  SUBJECT , in debugging i am able to change the name of the SUBJECT , so the changed name is comming in the PDF attchment , which i dont want .
    I am not able to track wheather the attachment is being generated and the name is assigned .
    I think this is the programm -  RLB_INVOICE 
    Anyidea please suggest .
    Regards
    Prabhu

    Hi Suresh
    Good on you that you are actually going through the SAP Help and trying the harder but better way unlike many others...your input regarding your problem is also quite well explained....Keep it up!
    Coming to your problem,
    <b>1.>>I see the emails only after a long time. Infact the emails sent yesterday is >>only visible today.</b>
    RSCONN01 is the program that sends email out of SAP, make sure this scheduled to run frequently otherwise you can manually run this from SE/SA38.
    <b>2. i checked in SOST and i dont see the messages at all. If its available in SOST then the system would have picked up and send to the inbox</b>
    When you run SOST make sure you tick all the checkboxes - Waiting, Errors, Sent and Transmitted. If you are on ECC, then these are available on the Send Status tab...
    Good Luck
    Ravi

  • Mail sending issues in full screen

    Hey All,
    When mail is in full screen and you are composing a message, the message box doesn't disappear after you click the send button. The little paper airplane button turns off. When you click it again it turns back on. So on and so forth.
    A colleauge told me that they recived my email like 10 times because I kept clicking the button.
    As soon as I got out of full screen view the compose message box disappeared and the message was sent.
    Anyone else experiance this problem??

    Right- mouse click in the top part of the toolbar:
    Hope you can get it!

  • Mail sending issue and receiving sound intermittent

    I have three mail accounts on the 3G iPhone if that matters.
    The primary SMTP server I have setup for when using email at home on wi-fi. Set up the same as on the Mac to the ISP I connect to. Works fine sending and receiving on the iPhone.
    Under other SMTP servers I have set to reflect the mobile provider I connect to when not on wi-fi.
    The only way I can send mail using the mobile provider is to turn off the primary server.
    The instructions on the screen say " If mail is unsuccessful using the primary server it will try the other SMTP servers in succession. Clearly not doing this as if it can't connect using the primary server it doesn't continue searching through other servers.
    Anyone else experiencing the same problem?
    In addition the sound on receiving mail is intermittent and generally doesn't work. If it does it only works the one and then only one of the three accounts. And then goes away again.
    I was hoping that the 2.1 update may have fixed both of these.

    Bump

  • Mail Sending Issue

    Mail question: I've noticed when sending a single message, the Mail Activity status shows 1 of 4 then 4 of 4 messages sent or 1 of 3 or 1 of 7.  Changes each time. There are no pending messages when I do this and I'm only sending one message at a time.  Virus?  Malware?

    are you using IMAP or POP? Switch to the other and see if that helps.

  • Tcode ME91F mail sending issues in PO reminder with smartform layout

    Hi,
    I am facing one problem while executing ME91F tcode.
    When i assign script in NACE transaction to print the PO reminder layout through ME91F and send the PO to vendor of that PO through mail. I am able to send it.
    But When i do the same through smartforms, i am not able to send the mail.
    I wants to know that is it possible to process through smartforms in ME91F tcode.
    Please let me know if anyone knows any solution regarding this.
    Regards,
    Prabu

    solved

  • Mac mail sending issue

    Hi,
    I'm using Mac Mail to send my emails. I have them set up using IMAP with GoDaddy hosting my emails.
    For some reason Mac Mail is not saving / recording all sent emails, especially emails sent with attachments. The recipient is receiving them all so they've definitely been sent, but they're not appearing in the sent items / sent folders.

    Try rebuilding the mailbox. This can take awhile if you have a lot of mail.
    Rebuild mailbox

  • Mail send issue - Workflow Triggered from Error Message

    hi
    i am learning workflow and doing some practical sessions using tutorials found on the internet. I have successfully enabled a workflow triggering options from the error message. The workflow will simply send an email and there is nothing else in that workflow definition. When i get the error message i open up the error message window and trigger the workflow option which is enabled. I get a message that the workflow has been started but i dont get the email immediately. I see the emails only after a long time. Infact the emails sent yesterday is only visible today.
    i checked in SOST and i dont see the messages at all. If its available in SOST then the system would have picked up and send to the inbox. But i dont see the mails queued in SOST. But if i wait for a day i can see the emails in my inbox. Any idea what is wrong.
    ~Suresh
    Message was edited by:
            Suresh Reddy

    Hi Suresh
    Good on you that you are actually going through the SAP Help and trying the harder but better way unlike many others...your input regarding your problem is also quite well explained....Keep it up!
    Coming to your problem,
    <b>1.>>I see the emails only after a long time. Infact the emails sent yesterday is >>only visible today.</b>
    RSCONN01 is the program that sends email out of SAP, make sure this scheduled to run frequently otherwise you can manually run this from SE/SA38.
    <b>2. i checked in SOST and i dont see the messages at all. If its available in SOST then the system would have picked up and send to the inbox</b>
    When you run SOST make sure you tick all the checkboxes - Waiting, Errors, Sent and Transmitted. If you are on ECC, then these are available on the Send Status tab...
    Good Luck
    Ravi

  • Oracle Apex Mail Send Issue.

    Fyi
    I am using oracle apex 4.2 version.
    i am trying to send mail using APEX_MAIL.send.
    My process like
    begin
    APEX_MAIL.send(
    p_to       => '[email protected]',
    p_from     => '[email protected]',
    p_body     => l_body,
    p_subj     => 'APEX_MAIL Package - Plain Text message');
    end;
    When i check mail queue from administrator part
    HomeManage > InstanceMail > Queue
    It show no error and after the send all mail still i am not geting the mail
    i also check my email setting in administrator part.
    Thanks

    Hi,
    I suggest that you put some debug statements to make sure that there no errors in the input parameters to the apex_mail.send procedure (http://docs.oracle.com/cd/E10513_01/doc/apirefs.310/e12855/apex_mail.htm#insertedID1). If possible, set up a simple example in apex.oracle.com and share the credentials.
    Thanks,
    Rohit

  • Mail send issues

    Every once in a while, I have problems with an email not being sent. It doesn't seem to matter if the email has an attachment or not.
    When I click send, the email starts being sent as normal. Then the transfer rate slows right down and stops altogether. It doesn't pick up again, but eventually Mail makes its "mail sent" sound.
    However, there is no sign of the sent email in the sent mailbox, nor in drafts. Also, if the problem email was a reply to another email, clicking on the curvy reply arrow brings up a message saying that the reply is missing.
    Does anyone know why this may be happening, and of a way to find the missing email so that I can attempt to send it again?
    Thanks

    That doesn't seem overloaded. However, that depends on the amount of space your provider gives and how much is in the inbox.
    If the message was sent, then it should have been in the sent folder and on the server. The first place it's copied to a sent folder is through the IMAP server, not the MAC. You only see it on the mac when it syncs. Check the website for that account and verify the message doesn't appear there. You might also check other folders at the IMAP site that it may have moved to such as archive that may not show on your Mac. Also check the IMAP folder for the account in the bottom of the sidebar for folders there that it may be in.
    What you can do is is uncheck to store messages on the server for the IMAP account. That will take the IMAP sent messages mailbox for that account out of the main Sent Mailbox and put it back under the IMAP folder. It will create a local mailbox for that account when you send the next message. That will save the sent messages locally. If it happens again, you will know it's not your providers problem.
    If that clears it up, then I would persue the problem with your provider.

  • Mail Sender adapter issue in PO7.4

    Hello Experts,
    We are migrating from PI7.0 to PO7.4, where in we are struck up with an issue of Mail Sender Interface.
    Here we have a scenario of Mail to Proxy where we are processing attachment(CSV file). But here when I we run the interface mail body is being processed not the attachment. Also could nt see the Payload as when I click on the Attachment payload a pop up is coming and closing automatically.
    Can someone please suggest where it went wrong as this is working in existing PI7.0 version.
    Thanks.
    VR

    Hi VR
    Have you tried swapping by Payload name?
    Please try it out with the following configuration, and remove any extra lines - there are duplicate key names and values in your configuration.
    You should be able to see the successfully swap by payload name in the audit log as shown below.
    Rgds
    Eng Swee

  • Can any body send me some issues about mail sending .

    can any body send me some issues about mail sending .
    thanks alot !
    mail to :<i><b>[email protected]</b></i>

    HI
    GOOD
    GO THROUGH THIS CODE
    REPORT ZTSAPMAIL.
    DATA: X_OBJECT_TYPE LIKE SOOD-OBJTP.
    DATA: BEGIN OF X_OBJECT_HD_CHANGE.
    INCLUDE STRUCTURE SOOD1.
    DATA: END OF X_OBJECT_HD_CHANGE.
    DATA: BEGIN OF X_OBJCONT OCCURS 10.
    INCLUDE STRUCTURE SOLI.
    DATA: END OF X_OBJCONT.
    DATA: BEGIN OF X_OBJHEAD OCCURS 0.
    INCLUDE STRUCTURE SOLI.
    DATA: END OF X_OBJHEAD.
    DATA: BEGIN OF RAW_HEAD.
    INCLUDE STRUCTURE SORH.
    DATA: END OF RAW_HEAD.
    DATA: BEGIN OF X_RECEIVERS OCCURS 0.
    INCLUDE STRUCTURE SOOS1.
    DATA: END OF X_RECEIVERS.
    PARAMETERS: RECEIVER LIKE X_RECEIVERS-RECNAM. " Name
    *BUILD MESSAGE HEADER
    MOVE 'Sort field goes here' TO X_OBJECT_HD_CHANGE-OBJSRT. " Sort field
    MOVE 'Name of the object goes here' TO X_OBJECT_HD_CHANGE-OBJNAM. " Name
    MOVE 'Document title goes here' TO X_OBJECT_HD_CHANGE-OBJDES. " Title
    MOVE 'F' TO X_OBJECT_HD_CHANGE-OBJSNS. " Functional OBJECT
    MOVE 'E' TO X_OBJECT_HD_CHANGE-OBJLA. " Language
    Object type of the new document
    MOVE 'RAW' TO X_OBJECT_TYPE.
    CLEAR X_OBJCONT.
    MOVE 'Contents of mail' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    CLEAR X_OBJCONT-LINE. APPEND X_OBJCONT.
    MOVE 'More contents' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    MOVE 'Still more contents'
    to x_objcont-line.
    APPEND X_OBJCONT.
    MOVE ' ' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    Specific header (Dependent on the object type, here RAW)
    REFRESH X_OBJHEAD.
    DESCRIBE TABLE X_OBJCONT LINES RAW_HEAD-RAWSIZ.
    MOVE RAW_HEAD TO X_OBJHEAD.
    APPEND X_OBJHEAD.
    *RECEIVERS table
    CLEAR X_RECEIVERS.
    REFRESH X_RECEIVERS.
    MOVE RECEIVER TO X_RECEIVERS-RECNAM. " Name
    MOVE 'B' TO X_RECEIVERS-RECESC. " Receiver type
    MOVE 'X' TO X_RECEIVERS-SNDCP. " Send as a copy
    MOVE 'X' TO X_RECEIVERS-SNDEX. " EXPRESS DOCUMENT
    APPEND X_RECEIVERS.
    CALL FUNCTION 'SO_OBJECT_SEND'
    EXPORTING
    folder_id = 'OUTBOX'
    forwarder = x_forwarder
    object_fl_change = x_object_fl_change
    OBJECT_HD_CHANGE = X_OBJECT_HD_CHANGE
    object_id = x_object_id
    OBJECT_TYPE = X_OBJECT_TYPE
    OUTBOX_FLAG = 'X'
    OWNER = SY-UNAME
    store_flag = x_store_flag
    importing
    object_id_new = x_object_id_new
    sent_to_all = x_sent_to_all "May need to use
    TABLES
    OBJCONT = X_OBJCONT
    OBJHEAD = X_OBJHEAD
    objpara = x_objpara
    objparb = x_objparb
    RECEIVERS = X_RECEIVERS.
    Firstly SAP Mail
    A SAP mail is a mail internal to the SAP system. It is a very good forum to exchange information with other users. Using a SAP mail in ABAP code facilitates exchange of automatic messages at various stages of the business process. It is easy to use and saves many hassles involved in using workflows for exchanging messages.
    The ABAP code to send a sap mail is built around the FM SO_OBJECT_SEND which has the following pattern.
    call function 'SO_OBJECT_SEND'
    exporting
    EXTERN_ADDRESS = ' '
    FOLDER_ID = ' '
    FORWARDER = ' '
    OBJECT_FL_CHANGE = ' '
    OBJECT_HD_CHANGE = ' '
    OBJECT_ID = ' '
    OBJECT_TYPE = ' '
    OUTBOX_FLAG = ' '
    OWNER = ' '
    STORE_FLAG = ' '
    DELETE_FLAG = ' '
    SENDER = ' '
    CHECK_ALREADY_SENT = ' '
    importing
    object_id_new =
    sent_to_all =
    tables
    OBJCONT =
    OBJHEAD =
    OBJPARA =
    OBJPARB =
    receivers =
    PACKING_LIST =
    ATT_CONT =
    ATT_HEAD =
    NOTE_TEXT =
    exceptions
    active_user_not_exist = 1
    communication_failure = 2
    component_not_available = 3
    folder_not_exist = 4
    folder_no_authorization = 5
    forwarder_not_exist = 6
    note_not_exist = 7
    object_not_exist = 8
    object_not_sent = 9
    object_no_authorization = 10
    object_type_not_exist = 11
    operation_no_authorization = 12
    owner_not_exist = 13
    parameter_error = 14
    substitute_not_active = 15
    substitute_not_defined = 16
    system_failure = 17
    too_much_receivers = 18
    user_not_exist = 19
    x_error = 20
    others = 21.
    THANKS
    MRUTYUN

  • Mail sender adapter POP server not configured for URL access

    Hi Experts,
    I have a Mail --> PI --> R/3 scenario and I am configuring the Mail sender adapter for POP3. The issue is that the POP server is not configured to be accessed via a URL and hence the URL pop://hostname/ is causing the following error at runtime:
    _1. When I use pop://Fully qualified host name/
    _Error: exception caught during processing mail message; java.net.UnknownHostException
    _2. When I use pop://IP address of host/
    _Error: exception caught during processing mail message; java.net.SocketException: Connection timed out:could be due to invalid address
    I am able to ping the POP3 server from the PI server using both the FQDN and IP address.
    Can someone please help.
    Thanks,
    Shobhit
    Edited by: Shobhit Swarup Mathur on Jul 14, 2009 9:29 AM
    Edited by: Shobhit Swarup Mathur on Jul 14, 2009 9:29 AM

    Hi Shobhit
    Check with these notes:
    804102
    xi 3.0 mail adapter with pop3 user authentication problem
    810238
    XI 3.0 Mail Adapter for POP3 may not report some errors
    also check mailserver security settings ...
    Connection refused occures when XI cannot connect
    in most cases so try checking it again , maybe some ports are not opend on the firewall
    Thanks
    Edited by: Abhishek Agrahari on Jul 14, 2009 11:44 AM

Maybe you are looking for

  • Email in Settings

    How do I customize my email in "My Settings?" I've since changed emails, and there seems to be no way to change it in my account

  • Which Driver to Use?

    I have been using the Windows 7 x64 drivers with no problems, but i notice Daniel k's drivers located here ( http://forums.creative.com/t5/Sound-Blaster/SB-X-Fi-Series-Support-Pack-2-0-05-5-2009/td-p/527485 ) and am now wondering if i should used it'

  • Install program from my imac to an older powerbook g4 I just bought?

    Hello, new here, learning about my mac. I have an imac I bought about 2 years ago. Love it. I just bought a used powerbook g4. Is there any way to install the garageband that came with my new imac on to this older powerbook? thanks!

  • Maximum number of columns allowed in LOV

    I have some technical doubts 1)What is the maximum number a lov allows? 2)Maximum length of record group query? 3)Maximum number of items assigned using LOV? Please reply immediate Thanks in advance Manoj M

  • Tekkeon myPower for iPod - does it work for 5G?

    Tekkeon myPower for iPod simple this sounds really good for traveling and what not. but i was wondering if its compatible for 5G video it says on the apple store that it is but i want to make sure from someone who has it and uses it?