Replace period or decimal

I am trying to replace a period in my variable with nothing.
I can't seem to get it to work and can't find any help online
regarding this. For example i = 3.5X but I want it to just read
35X. Any ideas?
I tried the following:
ReReplace(i,"<[.]*>"," ","all")
ReReplace(i,"."," ","all")
And what is with the forums? They are soo slow. I feel like I
am working on VNC.

The dot character "." is a reserved character in regex. You
need to
escape it ReReplace(i,"\."," ","all"). But for such a simple
operation,
I would just use a basic replace, replace(i,".","","ALL")
annamjmi wrote:
> I am trying to replace a period in my variable with
nothing. I can't seem to
> get it to work and can't find any help online regarding
this. For example i =
> 3.5X but I want it to just read 35X. Any ideas?
>
> I tried the following:
> ReReplace(i,"<[.]*>"," ","all")
> ReReplace(i,"."," ","all")
>
> And what is with the forums? They are soo slow. I feel
like I am working on
> VNC.
>

Similar Messages

  • Replace period with white space

    I am trying to replace a period in a string with a white space. It does not want to work with a period but works just fine with a comma!
    Please can somebody tell me what I am doing wrong.
    This is the code that I am using:
    System.out.println("Unicode:" + "\u002E");
    CharSequence inputStr = "12.345,67";
    String patternStr = "\u002E";
    String replacementStr = " ";
    //Compile regular expression
    Pattern pattern = Pattern.compile(patternStr);
    //Replace all occurrences of pattern in input
    Matcher matcher = pattern.matcher(inputStr);
    String output = matcher.replaceAll(replacementStr);
    System.out.println("output:" + output);

    As mentioned "." is considered differently in regular expressions. You can change the patterStr to "[.]" and your code will work.
    Since you have used replaceAll() I guess as the size of inputStr varies many thousand seperator can occur. Even then the fix mentioned by me will work
    Thanks
    Arun

  • Why does TestStand use both comma and period for decimal point separation?

    TestStand stores our test data to a SQL server using SQL Server Stored Proc, but for some reason a comma is used for separation (double values) for "PROP_NUMERICLIMIT.HighLimit" and "PROP_NUMERICLIMIT.LowLimt", but not for "PROP_RESULT.Data" (or any other numeric value field). Why is that? I haven't been able to figure out if it is a bug or if I have missed some step in the configuration.

    I ran across this in the TestStand Help. You might want to try the change in the ODBC Administrator.
    When you use the MySQL ODBC driver and the operating computer specifies a comma character as the decimal symbol character, the ODBC driver might return an error because the ODBC driver internally converts a floating-point value to a string value. The computer locale causes MySQL to interpret the comma decimal symbol character in the SQL syntax as a multi-value list character separator. Configure the MySQL data source in the ODBC Administrator and enable the Don't Use Set Locale option in the Miscellaneous Options section to resolve this error.

  • Startup Disk issue in new Mac Air. Replaced with another new mac, then again. MS Excel culprit?

    Hey guys, I bought a macbook Air 11’ 4GB 128GB (Mid-2011(after selling my 13” macbook pro) and the problems seem to be never ending.
    My primary work involves using MS Excel so I installed  a licensed version of Office for Mac 2011 and started using excel on my new mac machine. Within few minutes I got a message pop-up on screen “YOUR MAC OS STARTUP DISK HAS NO MORE SPACE AVAILABLE FOR APPLICATION MEMORY”.
    I checked the size of storage and there was just 5 GBs worth space left despite the fact that there was not a single photo, music, video on the new mac apart from a few MBs of excel files. I took it to the vendor (APPLE PREMIUM RESELLER) who after re-installing lion returned it to me and the same issue again popped up. Finally, they diagnosed an SSD problem and after a week of waiting, I was given a brand new shiny macbook air MC969 (same model).
    I used the new one and again while using excel, the same issue has come up. I’m really fed up of this stupid error bcoz I was using the same OFFICE FOR MAC suite on my macbook pro and never suffered any such problem. I have also twice thrice completed all the steps I was told to do (like repair disk perm. Emptying the cache etc. )
    Since India doesn’t have any Apple owned stores but only Premium Resellers whose replacement etc policies are not governed by Apple.
    They do not even refund the money but have given an option of diagnosing the machine and replacing the problematic part.
    I googled the web and found no such issued with EXCEL. Strangely, other apps in the office suite seem to work well without any issues.
    I have attached the screenshots that how while using excel, within a couple of minutes, mac starts to heat up, then storage decreases and finally the error where mac becomes dead slow.
    Please help me to determine where the cause lies.

    The Excel files size range between 29KB to 60KB.
    That's it.
    I called up the reseller and he said that the replacement period is now over and mac would only be repaired.
    I dont want my Mac to get unscrewed

  • Replacement for DEC datatype

    Hi Experts,
    I have encountered a problem in an upgrade project. Can anybody tell me what is the replacement for DEC decimal data type in the new system?

    Hi Experts,
    I have encountered a problem in an upgrade project. Can anybody tell me what is the replacement for DEC decimal data type in the new system?

  • Is true that apple will replace I pad 3 to new iPad for the customers?

    Is true that apple will replace I pad 3 to new iPad for the customers?

    When the iPad 4 was released, Apple said that persons who had purchased an iPad 3 in the prior 30 days could exchange it for an iPad 4. This replacement period is over.
     Cheers, Tom

  • Calculator Decimal Point Appearance !

    Updated from Mavericks to Yosemite .... the calculator decimal point looks more like a comma than a 'dot'.  Regional settings are set to show comma for grouping and period for decimal.
    What the heck?
    Bob H
    Minneapolis, MN

    Hey, interesting find, Bob.  I never paid attention to it.
    Not a solution but when you change the language / keyboard settings from US default (see pref) you will see there is actually a difference between the "Decimal that doesn't look a Decimal" and the "Comma that looks like a Comma"
    So here is the decimal
    And here is the comma.

  • InStr search for comma finds period?

    Hello,
    I am working on a macro in Excel 2007 to find commas in a string.
    This:
    commaAt = (Len(inp) - InStr(1, strTmp, ",", vbTextCompare))
    Returns the location of commas AND periods.
    Is there a way to get InStr to find just commas?
    I think this may be connected to the mixed use of commas and periods as decimal points.
    Curiously, on the worksheet FIND works on only commas with A8 being the string to parse.
    RIGHT(A8,(LEN(A8)FIND(",",A8,1)))
    Thanks

     
    Hello,
    Your question answered my problem.  Yikes I was blind. And was seeing what I wanted in Len(inp).
    That has to be: Len(strTmp)
    inp = "AZ,00000.00,4,aaaaaaaaaaa,bbbbbbbbbbb,cccccccccccc,ddddddddddd,00003,X,X,X,X,X,00<cr><lf>"
    I am trimming off comma fields from left to right in a for loop. And the first trim value is 3 which coincidentally matches ".00" the second pass trimmed the correct number of ascii but from the wrong starting point.
    I am very sorry to have missed that and posted. I should have gone to bed earlier.
    Thank you. 

  • Using RZ20 monitoring values in Redwood

    Hi All,
    We need your help.
    We are fetching all the CCMS monitoring values from the SAP system (RZ20) into Cronacle. We are able to see the monitoring trees and the nodes in Redwood. Even the monitoring values from SAP are getting updated in Redwood which is very fine.
    But now we want to use these CCMS monitoring values and configure our queues accordingly like depending on the CPU utilization % of the SAP server, No. of Free Background Work process available, etc. But we are not sure as to how to use them in this scenarios.
    Where in a queue do we define,  say, when the alert value of CPU utlization is 95, lower the queue size. How do we do this?
    Thanks in advance for your help.
    Good Day
    Warm Regards
    Rajeet

    Hi Anton,
    Thanks a lot again for your in-valuable inputs.
    We have managed to make a script to change the queue as per our requirement. We have 2 queues for ad hoc and periodic jobs respectively and for altering the queue based on the day of the month. We plan to create these type of scripts which will get triggered when the number of batch processes available in SAP changes (using Redwood monitoring tree values). We are planning to add time window (one time window per SAP operation mode) restriction on execution of these scripts. In below example the mix of periodic & ad hoc jobs is 80 & 20 % respectively in month end.
    But we are not able to figure out the problem with compilation of this script. Request you to have a look and suggest changes. Thanks a lot.
    Warm regards,
    Rajeet
    create or replace script "SYSJCS"."OPERATIONS_MODE_QUEUE"
    description         'Script for changing the queue size as per operations mode'
    application         "SAP_TUA"
    format              "GENERIC"
    scripttype          "SQLPLUS"
    no verify
    rwscript
    DECLARE
    start_open NUMBER;
    sys_date DATE;
    last_date DATE;
    prev_day DATE;
    first_day DATE;
    sec_day DATE;
    BEGIN
    start_open := jcs_mon.get_value_num( jcs_mon.path_to_id( 'RW_SAP/SAP SMD 010/SAP CCMS Technical Expert Monitors/All Monitoring Contexts/Background/BackgroundService/SystemWideTotalBPWP'));
    select sysdate INTO sys_date FROM DUAL;
    select last_day(to_date(sys_date,'yyyy/mm/dd')) into last_date from dual;
    select last_day(to_date(sys_date,'yyyy/mm/dd'))-1 into prev_day from dual;
    select last_day(to_date(sys_date,'yyyy/mm/dd'))+1 into first_day from dual;
    select last_day(to_date(sys_date,'yyyy/mm/dd'))+2 into sec_day from dual;
    If(sys_date == prev_day || sys_date == last_date || sys_date == first_day || sys_date == sec_day) THEN
    jcs_odf.alter_queue(name => 'PERIODIC', execution_size => decimal number(START_OPEN * 0.76));
    jcs_odf.alter_queue(name => 'ADHOC_QUEUE',execution_size => decimal number(START_OPEN * 0.24));
    ELSE
    jcs_odf.alter_queue(name => 'PERIODIC',execution_size => decimal number (START_OPEN * 0.80));
    jcs_odf.alter_queue(name => 'ADHOC_QUEUE', execution_size => decimal number(START_OPEN * 0.20));
    END IF;
    endrwscript

  • Importing space delimited iPad text files into number

    Lots of iPad app collect data as space delimited text files ( where is tab key on iPad) how can I import these files into numbers for analysis and plotting?

    Hi Wayne
    In the posted datas, some dates end with a period but some don't.
    Between values there are :
    period (not always. None after the 1st date and after the one just above "no scale travel to Tucson")
    space
    Given the source which I used, I got different spaces.
    In one case they were NO BREAK spaces
    In the example which you posted, the first missing period is revealed
    The second one isn't revealed because you didn't treated the entire set of datas.
    I assume that when there are datas after the decimal values, they are supposed to be in a 3rd column.
    Given these features, I wrote a script deciphering automatically the set of datas.
    Adjust the property « fromClipboard » to match what you use as source.
    --{code}
    --[SCRIPT split-table-from-ipad]
    Treat the set of datas imported from iPad by VerusEx
    see Apple Discussions forum :
    https://discussions.apple.com/thread/3879328?tstart=0
    Yvan KOENIG (VALLAURIS, France)
    2012/04/17
    property fromClipboard : true
    true = get datas from the clipboard
    false : get the datas from a text file
    on run
              if fromClipboard then
                        set lesValeurs to the clipboard as text
              else
                        set lesValeurs to read (choose file of type {"public.plain-text"})
              end if
    Instruction removing NO BREAK spaces which I got when I copied from the mail which I received from the forum.
              set lesValeurs to my supprime(lesValeurs, character id 160)
    Replace every groups of space characters by a single one
              repeat
                        if lesValeurs does not contain "  " then exit repeat
                        set lesValeurs to my remplace(lesValeurs, "  ", space)
              end repeat
    Replace single digit + space by single digit + tab.
    Useful to take care of cases when period is missing,
    or to split strings stored after a digit + a space
              repeat with i from 0 to 9
                        set lesValeurs to my remplace(lesValeurs, (i as text) & space, (i as text) & tab)
              end repeat
    Replace period + space by a tab
              set lesValeurs to my remplace(lesValeurs, ". ", tab)
    Save the deciphered datas in a temporary text file
              set leFichier to (path to temporary items as text) & "azertyuiop.txt"
              my writeTo(leFichier, lesValeurs, text, false)
    Open the temporary file in Numbers
              tell application "Numbers" to open leFichier
    end run
    --=====
    replaces every occurences of d1 by d2 in the text t
    on remplace(t, d1, d2)
              local oTIDs, l
              set oTIDs to AppleScript's text item delimiters
              set AppleScript's text item delimiters to d1
              set l to text items of t
              set AppleScript's text item delimiters to d2
              set t to "" & l
              set AppleScript's text item delimiters to oTIDs
              return t
    end remplace
    --=====
    removes every occurences of d in text t
    on supprime(t, d)
              local oTIDs, l
              set oTIDs to AppleScript's text item delimiters
              set AppleScript's text item delimiters to d
              set l to text items of t
              set AppleScript's text item delimiters to ""
              set t to l as text
              set AppleScript's text item delimiters to oTIDs
              return t
    end supprime
    --=====
    Handler borrowed to Regulus6633 - http://macscripter.net/viewtopic.php?id=36861
    on writeTo(targetFile, theData, dataType, apendData)
      -- targetFile is the path to the file you want to write
      -- theData is the data you want in the file.
      -- dataType is the data type of theData and it can be text, list, record etc.
      -- apendData is true to append theData to the end of the current contents of the file or false to overwrite it
              try
                        set targetFile to targetFile as text
                        set openFile to open for access file targetFile with write permission
                        if not apendData then set eof of openFile to 0
      write theData to openFile starting at eof as dataType
      close access openFile
                        return true
              on error
                        try
      close access file targetFile
                        end try
                        return false
              end try
    end writeTo
    --=====
    --[/SCRIPT]
    --{code}
    Yvan KOENIG (VALLAURIS, France) mardi 17 avril 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • Cannot open CSV doc - too large

    Hello,
    I am trying to open a 371.7 MB CSV doc, but Numbers says it's too big.
    Is there a work around or another program I could use to view this data?
    Thank you.

    If, as we are urged to do, you used the search feature of this forum you will know the response.
    I guess that there is a conflict between your csv and the system.
    If your system is using the period as decimal character, the comma must be used to separate values *_but if your system use the comma as decimal character, the semi-colon must be used to separate values_*.
    If your file doesn't match this rule, you may be sure that the described message will surface.
    You may use this script to get rid of this normal behavior.
    --[SCRIPT csv2tsvClipboard]
    Enregistrer le script en tant que Script : csv2tsvClipboard.scpt
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:
    Il vous faudra peut-être créer le dossier Applications.
    menu Scripts > csv2tsvClipboard
    choisir un fichier csv
    Le script remplace les points-virgules (ou virgules) par des TABs
    et stocke le résultat dans le presse-papiers
    On peut également enregistrer en tant que progiciel (application sous 10.6.x)
    Glisser-déposer l'icône d'un fichier csv sur celle du progiciel (application).
    ATTENTION :
    le script sait 'localiser' les dates jj/mm/yyyy et mm/jj/yyyy
    mais pas les autres formats.
    --=====
    L'aide du Finder explique:
    L'Utilitaire AppleScript permet d'activer le Menu des scripts :
    Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case "Afficher le menu des scripts dans la barre de menus".
    --=====
    Save the script as a Script: csv2tsvClipboard.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:
    Maybe you would have to create the folder Applications by yourself.
    menu Scripts > csv2tsvClipboard
    Choose a csv file
    The script replace the commas (or semi-colons) by TABs characters.
    and store the result in the clipboard
    We may also save as an Application package (application under 10.6.x)
    Drag & drop the icon of the text file on the application's one.
    CAUTION :
    the script may 'localize' dates jj/mm/yyyy and mm/jj/yyyy
    but don't localize other formats.
    --=====
    The Finder's Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the "Show Script Menu in menu bar" checkbox.
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2010/05/30
    --=====
    property permitted : {"public.comma-separated-values-text", "public.csv"}
    --=====
    on run
    if my parle_anglais() then
    set myPrompt to "Choose a CSV file …"
    else
    set myPrompt to "Choisir un fichier CSV …"
    end if -- parleAnglais
    if 5 > (system attribute "sys2") then (*
    if Mac Os X 10.4.x *)
    set allowed to my permitted
    else (*
    it's Mac OS X 10.5.x with a bug with Choose File *)
    set allowed to {}
    end if -- 5 > (system…
    my main(choose file with prompt myPrompt of type allowed without invisibles) (* un alias *)
    end run
    --=====
    on open sel
    my main((item 1 of sel) as alias)
    end open
    --=====
    on main(leFichier)
    script myScript
    property fiche : {}
    property enListe : {}
    property digits : {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"}
    property alloweds : {}
    local delim, i, j, maybe, enTexte, nomDuRapport, p2d, p2r
    --set leFichier to "Macintosh HD:Users:yvan_koenig:Desktop:barrierer.csv" as alias
    if type identifier of (get info for leFichier) is not in {"public.comma-separated-values-text", "public.csv"} then
    if my parle_anglais() then
    error "“" & leFichier & "” isn’t a CSV file !"
    else
    error "« " & leFichier & " » n’est pas un fichier CSV !"
    end if -- (do shell…
    end if -- type…
    set maybe to "31/12/1943"
    try
    date (maybe)
    set frenchDate to true
    on error
    set frenchDate to false
    end try
    set {delim, deci} to my get2LocalizedDelimiters()
    set enTexte to read leFichier
    if enTexte contains ";" then
    set frenchCSV to true
    else
    set frenchCSV to false
    end if
    if enTexte does not contain delim then
    The CSV doesn't match the local requirements, change the value separator
    if delim is ";" then
    set delim to ","
    else
    set delim to ";"
    end if
    end if
    set my enListe to paragraphs of enTexte
    drop ending empty rows
    repeat while last item of my enListe is ""
    set my enListe to items 1 thru -2 of my enListe
    end repeat
    set enTexte to my recolle(my enListe, return)
    replace the values separators by TABs
    set enTexte to my remplace(enTexte, delim, tab)
    if deci = "." then
    set {deci1, deci2} to {",", "."}
    else
    set {deci1, deci2} to {".", ","}
    end if
    set my alloweds to my digits & {deci1}
    set my enListe to paragraphs of enTexte
    repeat with i from 1 to count of my enListe
    set my fiche to my decoupe(item i of my enListe, tab)
    repeat with j from 1 to count of my fiche
    set maybe to item j of my fiche
    'localize' numbers only
    if maybe does not contain deci then
    set chars to characters of maybe
    set maybeNum to true
    repeat with c in chars
    if c as text is not in my alloweds then
    set maybeNum to false
    exit repeat
    end if
    end repeat
    if maybeNum then (*
    it's a number which doesn't match local requirements, replace deci1 by deci2
    set maybe to my remplace(maybe, deci1, deci2)
    set item j of my fiche to maybe
    end if -- maybeNum
    end if -- maybe does not…
    'localize' dates only
    if maybe contains "/" then
    set ll to my decoupe(maybe, "/")
    if (count of ll) = 3 and frenchCSV is not frenchDate then
    set maybeDate to true
    set {x, y, d} to ll
    set chars to characters of (ll as text)
    repeat with c in chars
    if c as text is not in my digits then
    set maybeDate to false
    exit repeat
    end if
    end repeat
    it's a date which doesn't match local requirements, swap x and y
    if maybeDate then set item j of my fiche to my recolle({y, x, d}, "/")
    end if -- (count of …
    end if -- maybe contains "/"
    end repeat -- j
    set item i of my enListe to my recolle(my fiche, tab)
    end repeat -- i
    set the clipboard to my recolle(my enListe, return)
    set my enListe to {}
    set my fiche to {}
    set my alloweds to {}
    end script
    run myScript
    end main
    --=====
    on decoupe(t, d)
    local oTIDs, l
    set oTIDs to AppleScript's text item delimiters
    set AppleScript's text item delimiters to d
    set l to text items of t
    set AppleScript's text item delimiters to oTIDs
    return l
    end decoupe
    --=====
    on recolle(l, d)
    local oTIDs, t
    set oTIDs to AppleScript's text item delimiters
    set AppleScript's text item delimiters to d
    set t to l as text
    set AppleScript's text item delimiters to oTIDs
    return t
    end recolle
    --=====
    replaces every occurences of d1 by d2 in the text t
    on remplace(t, d1, d2)
    local oTIDs, l
    set oTIDs to AppleScript's text item delimiters
    set AppleScript's text item delimiters to d1
    set l to text items of t
    set AppleScript's text item delimiters to d2
    set t to l as text
    set AppleScript's text item delimiters to oTIDs
    return t
    end remplace
    --=====
    Set the parameter delimiters which must be used in Numbers formulas
    on get2LocalizedDelimiters()
    if character 2 of (0.5 as text) is "." then
    return {",", "."}
    else
    return {";", ","}
    end if
    end get2LocalizedDelimiters
    --=====
    on parle_anglais()
    return (do shell script "defaults read 'Apple Global Domain' AppleLocale") does not start with "fr_"
    end parle_anglais
    --=====
    --[/SCRIPT]
    Yvan KOENIG (VALLAURIS, France) mardi 30 novembre 2010 09:27:53

  • XML Publisher Bursting using different locale settings

    Hi,
    I have a report that shows numeric fields in different format mask if I select different template each time while submitting request. One template file's language is English and its territory is United States. Other template file's language is German and its territory is Germany. English template shows number like 1,500.94 ( "," comma as digit grouping symbol and "." period as decimal symbol) which is fine. German template shows 1.500,94 ( "." period as digit grouping symbol and "," comma as decimal symbol). So everything is great for me until I am using XML Bursting. Even if I specified german templates in bursting control file the output pdf file shows numeric character like English template. (e.g  1,500.94).
    Example of bursting control file
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type="bursting">
    <xapi:request select="/">
    <xapi:delivery>
    <xapi:filesystem id="file1" output="${DEST_PATH}.pdf"/>
    </xapi:delivery>
    <xapi:document output-type="pdf" delivery="file1">
    <xapi:template type="rtf" location="xdo://XXCO.XXCO_INVOICE.de.DE/?getSource=true" filter="" >    --->  It gives same output  with en.US
    </xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    Has anyone got any idea what is going on when bursting take care of generating PDF file again after the report is completed ?  Could you please help on this issue ? I will be grateful if I solve this problem. Thanks in advance.
    Regards,
    Ugur

    Hi,
    I have solved this issue by using <?xdoxslt:xdo-format-number, '999G990D00', 'da-DK')?> in every number fields instead of using different template file with danish language. Bursting also correctly shows number I wanted to be after this changes. So don't bother using different template file in order to show different digit grouping and decimal symbol. It's very simple this way except page total and carried forward totals. I choose number-separators=',.' option in xdofo:show-carry-forward tags.

  • IPHONE 4--I CAN'T HEAR CALLER

    I would just like to say how VERY disappointed and frustrated I am with my new phone.  I upgraded about 6 weeks ago and got an Iphone 4 and that was the worst mistake I've made in a while.  I have already made THREE visits to the AT&T store for problems with this phone.  The first visit I made was THREE days after I got the phone and I requested a replacement phone but I was assured the phone was fine and the problem had been fixed.  Well here I am, about a month later, AFTER THE 30 DAY REPLACEMENT PERIOD IS OVER, and wa lah!! My phone is broken again.  I use this phone for everything--personal and profession.  I called AT&T again today and suprisingly there is nothing they can do, I have to call APPLE.  Well I called APPLE and not only was my support person extremely rude and unhelpful--she also explained my options 1) go to the AT&T store and explain the issue and they will decide what they want to do--basically it is up to their discretion.  After going and spending my lunch break at the AT&T store I was told that was actually not an option but that I could request a replacement phone, send in my phone, but the only small catch is that they would but a hold on my credit card for over $500!  Wow, really?  Only $500?? Let me jump on that option.  And reading online, CLEARLY I am not the only person in the world that has experienced the problem I currently have, which is I can't hear the person that is on the other line.  After going online, I discovered that this is actually a VERY common problem that has been going on for awhile!  But APPLE wants to act as if their hands are tied and they can't do anything.  I WANT A NEW PHONE!!!!! and I don't think I should have to have $500 of my money tied up while they try to fix my POS.  I am so ****** off and frustrated and I want EVERYONE to know about my experience. These phones are not cheap and the people that have them clearly depend on them for a lot of things.  I used to LOVE APPLE products, but I am close to jumpting off the band wagon.  I don't know if anyone reads these comments but I would really like a response and maybe, just maybe my faith can be restored in APPLE

    I'm having same problem with my 3G. When I adjust my ringer volume it says headphone in parentheses. I can still hear thru headphones. Until u get it fixed maybe u could try this as a temp solution. Good luck.

  • TV 42SL417U Warranty problem -Please Help!

    * Please Help:
    I purchased: 1 x ($699.00) LED TV TOSHIBA | 42SL417U R  (09/25/2011)
    with 4 year warranty:
    1 x ($99.99) 4 Year LCD TV Extended PlanFor Item#N82E16889253276
    From NewEgg.
    But when I call Toshiba for support, they say your TV is no longer under warranty.
    Can someone please help me straighten this out?
    Thanks...Vernon

    Dear Vernon,
    Thank you for contacting Newegg.
    I apologize for the inconvenience. I show the manufacturer warranty for this item is only 1 year. The Newegg replacement period for this item is 30 days from the original invoice date. Unfortunately, this item is passed the return period. You will need to take advantage of your end user warranty by contacting the manufacturer for a replacement. Here is their contact information:
    Website: http://www.toshiba.com/tai-new/
    Support Phone: 1-800-631-3811
    The 4 years extended warranty you purchased are covered by a third party, Service Net. They do not take effect until after the manufacturer's warranty ends. I can give you a link so you can see the general info. However, if you would like to know details about the terms and conditions of their services, we suggest contacting Service Net directly. http://www.newegg.com/CustomerService/ExtendedWarranty.asp 
    IN SHORT: 
    I purchased the TV 09/25/11
    ? How can I get TOSHIBA to reognize my 1_year_warranty is still in effect ?
    Thanks...vmars316

  • Letters change when creating PDF

    I am using Acrobat Professional 6 and creating PDFs with the "Adobe PDF" icon it created when installed.
    Some documents from the Bloomberg system are converted by a sort of substitution cypher to gibberish. Capital letters are affected, but not lowercase. Capital letters are changed to the next letter in the alphabet. Also, numerals are increased by one. Exclamation points replace spaces, forward slashes replace periods, etc.
    For example, the original said this:
    Crandon Capital Partners v. Shelk, 202 Ore. 537
    The PDF says this:
    Drandon!Dapital!Qartners!v/!Shelk/!313!Pre/!648
    This is repeatable on different days and with different files.
    This does not happen with files from other sources, but the Bloomberg tech people insist it doesn't happen for them. I learned they are using Acrobat 8; could that be the difference?
    In any case, how do I fix it?
    Peter W. Schroth

    Look at the document properties (ctrl-D) under the font tab. You probably did not embed the fonts. I suspect you are using the Standard Settings which does not embed all fonts. Try changing the settings file to Press or Paper (I don't remember which ones are listed for AA8). You can also check the settings to be sure that the fonts are embedded (all of them) and probably subset.

Maybe you are looking for

  • External Optical Drives/DVD and CD Read/Writer

    Hello, My MacBook Pro from late 2007 had a DVD reading/writing problem, Apple Support told me its going to be around US$200.00 for repair. I was thinking if an external dvd-rom will be better since after paying for repair it will just die anyway, app

  • Anonymous access to KM in 2004s SPS07

    Hi experts, I have setup an External Facing Portal on 2004s SPS07, but the anonymous user needs to be authenticated when accessing XML forms documents. The XML forms documents are indeed shown through KM navigation iViews. Images from KM are also not

  • Photo Stream is not a option to select HELP

    When trying to turn on photo stream the option is not checkable?

  • A third party plug-in disappears after a localization patch installation

    I have a third party plug-in installed for PhotoShop CS3. The third party plug-in disappears after installation of a localization patch. I tried reinstalling the plug-in, but that does not work. It appears that after the patch is installed, tw10428.d

  • Bring back touch, latch and write automation

    Please bring back the touch, latch and write capabilities of the automation.  I used to use those features all the time with the audio software I used to use.  I'm very disappointed that the new version of Audition doesn't include them.  Hope to see