Short numbers

in my concern we have a special contract with the german provider t-mobile. within this contract, we have special prices for calls and there are only short numbers displayed for callers like "65343".
i have those numbers in my contacts, but when i am called, there is only the number on the screen, not the name. with normal mobile numbers i have no problem.
if i miss a call, the short number is translated to the matching name in the list of missed calls correctly...
any idea, how to get the name of the caller on the screen??
regards!

You have two Short objects and not two short primitives. When comparing objects you should use the equals method.

Similar Messages

  • Contact Caller Name identification when incoming call, central contacts list and short numbers

    Hi,
    I have a New CUCM + CUC + CUP
    I'd like know whas is the best way to do this:
    I want to createa list of central contacts (for all my extensions), and assign to this contacts its telefhone number (9-12 digits) and a short number of 4 digits.
    I want make a call to my contacts using this 4 digits (short number)
    After I have saved this contact in the ContactList,,   I whant that a internal user, using the contact list of the internal cisco phone can search and call the contact I have created, searching by name (or surname). I  want that the user could make a call using short number or searching contact.
    Finally, the most important, I need that when that external contact makes a call, the cisco phone ringing shows the name or surname of the contact (not the telephone number)  I need to know who is calling (it it is in my contacts)
    Thank you!
    Carlos Moreno

    You say you have CUPS, so that means you can only go as far as 8.x versions.
    You can configure E164 to the DNs, and use TPs to use short dialing.
    You would need to add the users and all the info to your directory, either manually, or in your LDAP if LDAP integrated.
    The last bit cannot be done without a 3rd party, we don't have phone to name/contact resolution.

  • How to insert numbers i sms, nokia 6303 Classic

    I used to have the Nokia 6300. When writing an sms it was possible to "insert number" when choosing Options. Where is that option in the Nokia 6303 Classic? It is often one need to insert a number in a text message so it ought to be simple?

    How do you know which solution the OP as asking for? Pressing and holding the key is more convenient for inputting short numbers because it takes as long to change the keypad mode from alphabetical to numbers and back again. 
    The solution you require is even easier, press the * key and select number mode but you have to switch back to alpha mode once you are done.
    You could try Adobe Reader LE. V 1.5 is free 2.5 you have to pay for. It thought V1.5 comes with all S60 Nokias. If it does not then try looking for it at the www.adobe.com 
    Message Edited by cjlim on 28-Dec-2009 09:20 AM

  • Error adding up 5 numbers! (or is it me?!)

    Hi -
    I've set Numbers to add up a column of 5 numbers and put the total in a different cell. But it's adding up the numbers wrongly. Can anyone tell me what I'm doing wrong?
    I've put a screenshot on my Public iDisk:
    https://public.me.com/glovepuppet/
    (It's the .jpg called NumbersMOZ001)
    The formula is shown as SUM(H2:H8) which makes 556.02, so why has it put the total as 556.00?
    (I know it's only 2p, but it's irritating!)
    Help please!
    Andy

    This behavior was described many many times.
    The values which you sum are the result of calculations.
    I guess that you use =my_formula
    which may return values with more than two decimal digits.
    When you ask a cell to display two decimal digits, it displays the rounded value *_but, happily, it doesn't change the stored value_*
    So you aren't summing what you see but what is stored.
    Here is your error.
    To sum what you see, you must design formulas whose result is what you see.
    =ROUND(my_formula,2) is what you need.
    So, to be short,
    Numbers did perfectly what you urged it to do.
    Next time, before writing formulas remember that *_computers are just efficient idiots_*.
    Yvan KOENIG (VALLAURIS, France) vendredi 26 novembre 2010 17:26:43

  • Update to existing User Tip

    This is an update to Date and Time in the Menu Bar (10.3, 10.4) to account for the fact that it is also applicable in 10.5.
    In addition it corrects the appearance of 4 horizontal rules in the table which appear because the Jive software is broken if you give it valid HTML. I cannot correct the double spacing in the table, which again is Jive misbehaving with stuff between <pre> and </pre> tags. If you know a way around this, while preserving the single horizontal spacing to keep the table aligned, please modify it accordingly.
    Tip follows:
    Put the Date in the Menu Bar (10.3, 10.4, 10.5)
    To put the date, as well as the time, into the Menu Bar in 10.3 or higher is not the same as in 10.2 and earlier (see the corresponding FAQ for 10.2), and to complicate things further, the format strings used are different. I have run this on an English language version for several years with no apparent problems – others have reported that it works on systems localised to French and German.
    This change can only be accomplished using the Terminal application, which you will find in /Applications/Utilities. If you are not comfortable using commands at a command line prompt, do not attempt this change.
    Note You should not attempt to type these commands directly, rather use copy and paste to get the commands into a Textedit document (set to Plain Text from the Format menu). Be warned that sometimes copying and pasting from a browser window puts an additional space at the end of a line, so if a command wraps, check that the line has exactly one space where it wraps, and no end-of-line character there. Extra space happens to matter in the "defaults" command because the line wrap tends to occur inside a quoted format string.
    The commands below will give, for example, "Thu 2 Dec, 02:15 pm" in the menu bar. If you're in the USA, you might prefer to have the month precede the day, so you would reverse the order of the 'd' and 'MMM' format specifiers. Note that if you put the day-of-week format specifier (EEE) in the string, you will get two days listed if the "Show the day of the week" box is checked in System Preferences > Date & Time > Clock, so un-check that.
    Edit the format to your choice (see below for the different codes), then when you are happy with it, paste it into Terminal, and press the return key. If it works, Unix won't tell you – it is very concise. So, one command at a time, and press return after each.
    First, take a backup of the existing preference file. Only do this the first time you attempt this – the idea is to keep a copy of the original Apple file. The first command gets to the right directory:
    cd ~/Library/Preferences
    Then copy the existing file, preserving modification dates, etc:
    cp -p .GlobalPreferences.plist .GlobalPreferences.plist.orig
    Now set our desired format ALL ONE LINE, please:
    defaults write -g AppleICUTimeFormatStrings -dict-add 2 "d MMM, hh':'mm':'ss' 'a"
    It is important now to immediately reset the Menu Bar, or our changes will be undone!
    killall SystemUIServer
    This will cause your Right Hand Menu Bar to disappear and then re-appear in the new format. (This often resets the "Show the day of the week" and "Show seconds" options in "Date & Time", so you may wish to change these). If all looks OK, it is a good idea to save a copy (but you need to have executed the 'cd' command above first):
    cp .GlobalPreferences.plist .GlobalPreferences.plist.bak
    My experience with this indicates that your changes can be lost if you go into System Preferences > International > Formats and click either of the "Customise" buttons for Date and Time (even if you then "Cancel"). If this happens, it is easy to restore things from this copy:
    cd ~/Library/Preferences
    cp .GlobalPreferences.plist.bak .GlobalPreferences.plist
    killall SystemUIServer
    To go back to the Apple default settings, use the same command sequence but replace ".bak" by ".orig".
    Formats for Date/Time
    <pre> Symbol Meaning Presentation Example
    G era designator (Text) AD
    y year (Number) 1996
    M month in year (Text & Number) July & 07
    d day in month (Number) 10
    h hour in am/pm (1~12) (Number) 12
    H hour in day (0~23) (Number) 0
    m minute in hour (Number) 30
    s second in minute (Number) 55
    S millisecond (Number) 978
    E day of week (Text) Tuesday
    e day of week/local (1~7) (Number) 2
    D day of year (Number) 189
    F day of week in month (Number) 2 (2nd Wed in July)
    w week in year (Number) 27
    W week in month (Number) 2
    a am/pm marker (Text) PM
    k hour in day (1~24) (Number) 24
    K hour in am/pm (0~11) (Number) 0
    z time zone (Text) Pacific Standard Time
    ' escape for text
    '' single quote '</pre>
    The count of pattern letters determines the format, as follows:
    (Text): 4 or more, use full form, (Number): the minimum number of digits. Shorter numbers are zero-padded to this amount (e.g. if "m" produces "6", "mm" produces "06"). Year is handled specially; that is, if the count of 'y' is 2, the Year will be truncated to 2 digits. (e.g., if "yyyy" produces "1997", "yy" produces "97".)
    (Text & Number): 3 or over, use text, otherwise use number. (e.g., "M" produces "1", "MM" produces "01", "MMM" produces "Jan", and "MMMM" produces "January".)
    This table, with additional notes, can be found at the International Components for Unicode (ICU) User Guide website. Reprinted by permission from International Business Machines Corporation copyright (2000 - 2004).

    Put the Date in the Menu Bar (10.3, 10.4, 10.5)
    To put the date, as well as the time, into the Menu Bar in 10.3 or higher is not the same as in 10.2 and earlier (see the corresponding FAQ for 10.2), and to complicate things further, the format strings used are different. I have run this on an English language version for several years with no apparent problems – others have reported that it works on systems localised to French and German.
    This change can only be accomplished using the Terminal application, which you will find in /Applications/Utilities. If you are not comfortable using commands at a command line prompt, do not attempt this change.
    Note You should not attempt to type these commands directly, rather use copy and paste to get the commands into a Textedit document (set to Plain Text from the Format menu). Be warned that sometimes copying and pasting from a browser window puts an additional space at the end of a line, so if a command wraps, check that the line has exactly one space where it wraps, and no end-of-line character there. Extra space happens to matter in the "defaults" command because the line wrap tends to occur inside a quoted format string.
    The commands below will give, for example, "Thu 2 Dec, 02:15 pm" in the menu bar. If you're in the USA, you might prefer to have the month precede the day, so you would reverse the order of the 'd' and 'MMM' format specifiers. Note that if you put the day-of-week format specifier (EEE) in the string, you will get two days listed if the "Show the day of the week" box is checked in System Preferences > Date & Time > Clock, so un-check that.
    Edit the format to your choice (see below for the different codes), then when you are happy with it, paste it into Terminal, and press the return key. If it works, Unix won't tell you – it is very concise. So, one command at a time, and press return after each.
    First, take a backup of the existing preference file. Only do this the first time you attempt this – the idea is to keep a copy of the original Apple file. The first command gets to the right directory:
    cd ~/Library/Preferences
    Then copy the existing file, preserving modification dates, etc:
    cp -p .GlobalPreferences.plist .GlobalPreferences.plist.orig
    Now set our desired format ALL ONE LINE, please:
    defaults write -g AppleICUTimeFormatStrings -dict-add 2 "d MMM, hh':'mm':'ss' 'a"
    It is important now to immediately reset the Menu Bar, or our changes will be undone!
    killall SystemUIServer
    This will cause your Right Hand Menu Bar to disappear and then re-appear in the new format. (This often resets the "Show the day of the week" and "Show seconds" options in "Date & Time", so you may wish to change these). If all looks OK, it is a good idea to save a copy (but you need to have executed the 'cd' command above first):
    cp .GlobalPreferences.plist .GlobalPreferences.plist.bak
    My experience with this indicates that your changes can be lost if you go into System Preferences > International > Formats and click either of the "Customise" buttons for Date and Time (even if you then "Cancel"). If this happens, it is easy to restore things from this copy:
    cd ~/Library/Preferences
    cp .GlobalPreferences.plist.bak .GlobalPreferences.plist
    killall SystemUIServer
    To go back to the Apple default settings, use the same command sequence but replace ".bak" by ".orig".
    Formats for Date/Time
    Symbol Meaning Presentation Example
    G era designator (Text) AD
    y year (Number) 1996
    M month in year (Text & Number) July & 07
    d day in month (Number) 10
    h hour in am/pm (1~12) (Number) 12
    H hour in day (0~23) (Number) 0
    m minute in hour (Number) 30
    s second in minute (Number) 55
    S millisecond (Number) 978
    E day of week (Text) Tuesday
    e day of week/local (1~7) (Number) 2
    D day of year (Number) 189
    F day of week in month (Number) 2 (2nd Wed in July)
    w week in year (Number) 27
    W week in month (Number) 2
    a am/pm marker (Text) PM
    k hour in day (1~24) (Number) 24
    K hour in am/pm (0~11) (Number) 0
    z time zone (Text) Pacific Standard Time
    ' escape for text
    '' single quote '
    The count of pattern letters determines the format, as follows:
    (Text): 4 or more, use full form, (Number): the minimum number of digits. Shorter numbers are zero-padded to this amount (e.g. if "m" produces "6", "mm" produces "06"). Year is handled specially; that is, if the count of 'y' is 2, the Year will be truncated to 2 digits. (e.g., if "yyyy" produces "1997", "yy" produces "97".)
    (Text & Number): 3 or over, use text, otherwise use number. (e.g., "M" produces "1", "MM" produces "01", "MMM" produces "Jan", and "MMMM" produces "January".)
    This table, with additional notes, can be found at the International Components for Unicode (ICU) User Guide website. Reprinted by permission from International Business Machines Corporation copyright (2000 - 2004).

  • [SOLVED] Arch won't mount my hard drives correctly, problems at boot.

    Sometimes (only sometimes) Arch Linux will have an error during bootup because my Linux drive gets mounted as sdb instead of sda. My NTFS Sata storage drives gets mounted in its place as sda.
    When this happens, Arch Linux will stop booting at the "checking filesystems" step:
    :: Checking Filesystems [BUSY]
    /dev/sda3:
    The superblock could not be read or does not describe a corect ext2
    filesystem. If the device is valid and it really contains an ext2
    filesystem (and not swap or ufs or something else), then the superblock
    is corrupt, and you might try running e2fsck with an alternate superblock:
    e2fsck -b 8193 <device>
    [FAIL]
    **************** FILESYSTEM CHECK FAILED ****************
    * Please repair manually and reboot. Note that the root *
    * file system is currently mounted read-only. To remount *
    * it read-write type: mount -n -o remount,rw / *
    * When you exit the maintenance shell the system will *
    * reboot automatically. *
    Give root password for maintenance
    (or type Control-D to continue):
    And from there i have to remount my drives manually or restart the computer. Everytime I start the computer, I simply have to hope that my Linux drive will mount as sda. It's totally hit and miss.
    Now, I know that my superblock is not corrupt. fsck is failing because it is looking for my linux filesystem on sda. It is encountering my NTFS Sata drive on sda instead of the expected Linux ext filesystem.
    So how do I know that this is happening?
    Well, after giving the root password, it shows the root prompt
    [root@(none) ~]#
    and i proceed to use the lshw command to see what's up with the drives:
    [root@(none) ~]# lshw -short | grep /dev/
    /0/6/0.0.0 /dev/sdb disk 120GB WDC WD1200JB-00E
    /0/6/0.0.0/1 /dev/sdb1 volume 101MiB Linux filesystem partition
    /0/6/0.0.0/2 /dev/sdb2 volume 258MiB Linux swap volume
    /0/6/0.0.0/3 /dev/sdb3 volume 7506MiB EXT4 volume
    /0/6/0.0.0/4 /dev/sdb4 volume 104GiB EXT4 volume
    /0/6/0.1.0 /dev/sdc disk 81GB Maxtor 6Y080P0
    /0/6/0.1.0/1 /dev/sdc1 volume 76GiB Windows NTFS volume
    /0/8/0.0.0 /dev/sda disk 640GB Hitachi HDT72106
    /0/8/0.0.0/1 /dev/sda1 volume 596GiB Windows NTFS volume
    So, clearly, this shows that my Linux drive has gotten mounted as sdb and my NTFS Sata drive has gottem mounted as sda. It's totally random: sometimes they mount vice versa and the system boots just fine.
    When Arch does happen to mount itself properly as sda and the system starts successfully, then the lshw command shows this:
    [root@(none) ~]# lshw -short | grep /dev/
    /0/6/0.0.0 /dev/sda disk 120GB WDC WD1200JB-00E
    /0/6/0.0.0/1 /dev/sda1 volume 101MiB Linux filesystem partition
    /0/6/0.0.0/2 /dev/sda2 volume 258MiB Linux swap volume
    /0/6/0.0.0/3 /dev/sda3 volume 7506MiB EXT4 volume
    /0/6/0.0.0/4 /dev/sda4 volume 104GiB EXT4 volume
    /0/6/0.1.0 /dev/sdb disk 81GB Maxtor 6Y080P0
    /0/6/0.1.0/1 /dev/sdb1 volume 76GiB Windows NTFS volume
    /0/8/0.0.0 /dev/sdc disk 640GB Hitachi HDT72106
    /0/8/0.0.0/1 /dev/sdc1 volume 596GiB Windows NTFS volume
    The above correctly mounted format shows the drives in the same order as my Hard Disk boot priority in BIOS as well as in the same order as during the initial drive detection directly following the memory test (don't know if it has anything to do with it though).
    So my question is this. How do I ensure that Arch Linux mounts itself as sda ALL of the time, and not randomly?
    Or should I remove my sda entries in etc/fstab and let Arch determine where my Linux filesystems are? If so, how?
    It's interesting to note that GRUB is set to boot Arch Linux from hd0, which should be sda.
    It's also intriguing to note that if I take out my Sata drive, I never encounter this problem.
    Last edited by trusktr (2010-06-15 07:49:31)

    Thanks kgas, here's what i found out so far:
    Alright so after rebooting, this is what i determined:
    When Linux mounts the drives incorrectly (take note of the parts in bold, the short numbers are NTFS filesystems, long numbers the Linux filesystems):
    [trusktr@rocketship ~]$ ls -l /dev/disk/by-uuid
    total 0
    lrwxrwxrwx 1 root root 10 Jun 14 21:08 01CA836D8BE82040 -> ../../[b]sdc1[/b]
    lrwxrwxrwx 1 root root 10 Jun 14 21:08 0ddf0e41-e7e6-4af5-b0e9-bc79a91b12eb -> ../../[b]sdb1[/b]
    lrwxrwxrwx 1 root root 10 Jun 14 21:08 92b88528-dd0f-4c1b-bcce-54084ef2aceb -> ../../[b]sdb4[/b]
    lrwxrwxrwx 1 root root 10 Jun 14 21:08 C838CF5838CF4462 -> ../../[b]sda1[/b]
    lrwxrwxrwx 1 root root 10 Jun 14 21:08 cdb33de5-0100-4c5f-a9b1-5c1a444e6eac -> ../../[b]sdb3[/b]
    lrwxrwxrwx 1 root root 10 Jun 14 21:08 d0a5d49d-169d-43ce-af0f-216dc4a9f604 -> ../../[b]sdb2[/b]
    So an NTFS filesystem is mounted in sda instead of the Linux filesystem
    When Linux mounts everything properly:
    [trusktr@rocketship ~]$ ls -l /dev/disk/by-uuid
    total 0
    lrwxrwxrwx 1 root root 10 Jun 14 21:08 01CA836D8BE82040 -> ../../[b]sdb1[/b]
    lrwxrwxrwx 1 root root 10 Jun 14 21:08 0ddf0e41-e7e6-4af5-b0e9-bc79a91b12eb -> ../../[b]sda1[/b]
    lrwxrwxrwx 1 root root 10 Jun 14 21:08 92b88528-dd0f-4c1b-bcce-54084ef2aceb -> ../../[b]sda4[/b]
    lrwxrwxrwx 1 root root 10 Jun 14 21:08 C838CF5838CF4462 -> ../../[b]sdc1[/b]
    lrwxrwxrwx 1 root root 10 Jun 14 21:08 cdb33de5-0100-4c5f-a9b1-5c1a444e6eac -> ../../[b]sda3[/b]
    lrwxrwxrwx 1 root root 10 Jun 14 21:08 d0a5d49d-169d-43ce-af0f-216dc4a9f604 -> ../../[b]sda2[/b]
    This doesn't tell us much except that I indeed do have uuid's for all the drives.
    So, i guess as kgas said, i probably need to use the uuid in fstab so that Linux always knows which hard drive is the linux drive! In that case, only the uuid for the Linux drive will be necessary. For the other drives it wouldn't matter so much i guess since they don't contain the operating system.
    Alright, i'll be back to determine if this fixes it!
    Last edited by trusktr (2010-06-15 06:41:25)

  • Cell data in tables not lining up

    Hello,
    Apparently, I can't provide any attachments here for the time being, so, this might be hard to describe. I've got columns of numbers in a table that need to line up. And, because there are some negative numbers, shown in parentheses, it's a bit tricky. Those parentheses need to hang. So, I've got a decimal tab in the columns. I flush the text in the columns left. The parentheses hang properly. But, for some reason, shorter numbers, numbers without a dollar sign preceding them, flush to the right. They don't align with the numbers above. Why?
    Thanks.
    $134,000
    $899,028
    $     (089)
                   3.2
                   2.3

    Peter Britt Bailey wrote:
    $134,000
    $899,028
    $     (089)
                   3.2
                   2.3
    The last two figures look like they do not belong in this column. They have only one decimal place, which is odd for currency, and are very small compared to the other figures. I do not think you want to use decimal alignment here. I suspect those are percentages.
    I would use the Align On: tab marker, aligning to the closing parenthesis. This screen shot should help. Note that I have hidden characters showing, but no tabs appear. If the initial tab marker is not left-aligned, then any text in the table will be positioned assuming a tab is already entered.

  • SimpleDateFormat.parse() causes Unparsable date exception

    I am using SimpleDateFormat to both format and parse date strings. The format is working properly, but parse results in the following exception:
    java.text.ParseException: Unparseable date: "2007-08-31T12:05:05.651-0700"
    at java.text.DateFormat.parse(Unknown Source)
    Here is my code:
    SimpleDateFormat dateFormatter = new SimpleDateFormat("yyyy-MM-dd'T'kk:mm:ss.SZ");
    String dateTime = dateFormatter.format(new Date());
    Date test = dateFormatter.parse(dateTime);
    For testing purposes, I am formatting a date string, and then passing it right back into parse() and I get the exception.
    I am using jre1.5.0_10.
    Thank you for your help.
    -Karen

    You have specified the milliseconds (S) to have a minimum of 1 letter.
    From the API:
    Number: For formatting, the number of pattern letters is the minimum number of digits, and shorter numbers are zero-padded to this amount. For parsing, the number of pattern letters is ignored unless it's needed to separate two adjacent fields.
    If you specify it like this:SimpleDateFormat dateFormatter = new SimpleDateFormat("yyyy-MM-dd'T'kk:mm:ss.SSSZ");
    // or like this
    SimpleDateFormat dateFormatter = new SimpleDateFormat("yyyy-MM-dd'T'kk:mm:ss.S Z");it will work.
    Message was edited by:
    dwg

  • Slides out of order!

    I used Aperture to create custom file names for a folder of images. They are numbered 1-740 with no zeros in front of the shorter numbers.
    Now when I import the jpg files into DVDSP to create slideshows, they are not in order! They go 1, 10, 100, 101, 102 and so on. That is the way they show up in the Assets tab. I need to drag them to slideshows in the correct order.
    How can get the files listed in my Assets so that they are in the correct order? It would take forever to do it the way it is. Help!
    Kevin Hawkins

    Yes, but you do NOT want to re-save the files if they are .jpg files, or use any other lossy compression. In those cases, you really need to just change the filenames.
    In fact, you can always re-order the slides -- they don't need to appear in your project in the same order as they are in the asset view. You'll need to break that up into groups of 99 anyway, so select "0-9" and "10-98" for your first set, then "99" and "100-197" for your next, etc. That way you won't have to bother changing all those filenames, and I'm not even sure a Photoshop action will work in your particular situation.
    At least now you know for future projects....

  • Sender id messages

    Hello,
    any idea why on iphone you can't recive any sms with the sender-id shorter than 3 digit?
    Example: if you subscribe to a service named AA, you will never recive any sms from the service AA, but for your operator all messages are delivered.
    Thnx

    Sorry, maybe I didn't explained well the problem.
    By Sender ID, i meant the "name" that you can use in large account sms. This will be displayed like the name from who you have recieved the sms.
    http://en.wikipedia.org/wiki/SMS_spoofing here i find more information, but nothing telling the minimum lenght...
    The short numbers i agree that they must be at least 3 digit numbers.
    Thanks anyway

  • Creating a tracking number for a form

    What's a good (and easy) way to create a random tracking
    number in a form? I would want this to be hidden from the user on
    the HTML form but this tracking number would be processed by the
    script in order to send the user the tracking number in an email.
    The tracking number would be the same length each time but
    randomly generated.

    .oO(Johnny the boy)
    >What's a good (and easy) way to create a random tracking
    number in a form? I
    >would want this to be hidden from the user on the HTML
    form but this tracking
    >number would be processed by the script in order to send
    the user the tracking
    >number in an email.
    If it's in the HTML form, it's not really hidden. Even hidden
    form
    fields can be seen and manipulated. Instead generate the
    number on the
    server when you process the form data and keep it there,
    never send it
    to the client in an HTML form.
    > The tracking number would be the same length each time
    but randomly generated.
    It should not be purely random, but be build using the
    current timestamp
    to avoid collisions. Or simply incremental, for example with
    the current
    year at first if you don't like too-short numbers:
    2009-1
    2009-2
    2009-3
    2010-1
    2010-2
    2010-3
    There are a hundred ways, just don't make them purely random.
    These
    numbers should be unique, which randomness can't guarantee.
    Micha

  • How can I block a number that calls me persistently every single day but only shows 3458  it does not show the full 10 digit

    how can I block a number that calls me persistently every single day but only shows 3458  it does not show the full 10 digit so on your block page will not let me block it!!!  So frustrated and I am not answering it with all the hackers out these days I don't want to give them access to my phone.

        @lottsandy
    I can understand your frustrations and concerns with receiving these unknown calls!  I would love to assist you with preventing these types of calls.
    Sounds as though you're receiving some type of telemarketing call.  Although you're unable to add the shorter numbers to your call block list, you can definitely add your number to the National Do Not Call registry http://1.usa.gov/1whONxp.  I hope this will help prevent those unwanted calls.  Thanks!
    AnthonyTa_VZW
    Follow us on Twitter @VZWSupport

  • Replace String or Insert ?

    I have a text containing phone numbers and other numbers like:
    sms1 number= "29292920"
    sms2 number= "4949930"...
    I want to be able to change just the numbers inside the " ",by knowing of course the name sms1,sms2....
    It works perfectly with tokenizing and replaceString but
    only when I give the SAME length of numbers.
    I want to be able to give 3 or 30 numbers to sms1,sms2....and just replace 8 or numbers.
    If I give longer numbers following text is deleted,
    if I give shorter numbers some old digits remain.
    How can I replace the old number and then change to insert or sth like that ?
    Do you have any ideas?

    Here's a crude version of what I think you want:int firstQuote = str.indexOf("\"");
    int secondQuote = str.indexOf("\"", firstQuote+1);
    String newStr = str.substr(0, firstQuote+1) + insert + str.substr(secondQuote);It doesn't check for error conditions such as the string not containing any quotes and so on, and it's untested so there may be off-by-one errors in it.

  • Nokia 7373 lightning blot indicator?

    hi there,
    Lately my nokia 7373 revealed a new tiny indicator on the top screen next to the signal stregth indicator. It is a lightning blot on the side kind of indicator and shows up everytime i pick up a call. Does anyone know what that means?

    Hello there, I know there's a long time but i wanna to add some points to this subject
    -I got this symbol when i calling short numbers 3 or 4 digits
    -I got it only with outgoing calls never with incoming
    -I've tried to make the voice clarity inactive to mointor the result

  • Blocking a nuisance call

    I keep getting a call from someone and their ID shows up as 4231. Clearly this isn't a real number as when I try to redial it I get a message telling me it wants a 10 digit number. I've called VW and they cannot help me telling me they cannot track who the real caller is. Clearly it's someone who is clever enough to block who they really are. When I answer the call no-one ever answers, but they still call me. How can I track who they really are or how can I block this call when I don't have their real number?
    Thanks
    John

    Lionheart, receiving unwanted calls is very annoying especially when you can't locate a way to stop them. Although we can't control who calls and text you, we do offer our customers some options for blocking. We have our usage control feature that is great for blocking unwanted calls and text. Verizon Wireless’ Usage Controls $4.99 per month for each wireless number enrolled. 
    With the blocking feature,  you can block Up to 20 ten-digit numbers, Private calls, Restricted calls, and Unavailable calls which are not counted towards the 20 number block list because its a stand alone option. YOu can also block 800 and 900 numbers. Also, calls to 411, #411, *411 and 1-411 can now be blocked.
    Although, trusted Numbers and short numbers, such as 911, 611, and #ROAD, cannot be blocked, if you are able to locate a phone number for this company or they start to call you private or restricted I think this will be a good option.
    To register and/or manage Usage Controls, please sign in to “My Verizon” using your Account Owner ID and password and click on “More Actions” link located near the bottom left of your “My Verizon” home page. Next, click on “Set Usage Controls” link, which is located underneath “Safety and Security” in the “I Want To” section in the middle of the page. 
     

Maybe you are looking for

  • Spotlight constantly indexing in a never ending loop

    I've upgraded my older Aluminium iMac Early 2008 model from Tiger to Snow Leopard to Lion and then Mountain Lion. Since Mountain Lion, I've been having indexing problems. The mds process just doesn't want to stop. I have tried all the solutions. Turn

  • Recently installed Windows 7 on Pavilion dv6748us - internal microphone does not work

    Hi, sojo972 wrote: I have been searching the web extensively, without success, to find how to resolve this issue. I recently installed Windows 7, 32 bit, on my wife's HP Pavilion dv6748us laptop. Now her internal microphone does not work. Have gotten

  • HSlider and mouse wheel

    I'm using Flex 4 and I've noticed something annoying with the spark HSlider: if I click the slider, it seems to retain focus so that even if the mouse is not over it, moving the mouse wheel up or down still causes the slider to move left or right. I'

  • ISight to run in MSN (Windows Vista Business via Parallels)

    Hi guys ! I'm a MAC newbee and as I need to run some Windows applications I have installed Windows Vista Business via Parallels. Everything works just fine - except for the iSight web-cam when running MSN. I have installed the AppleiSight drivers fro

  • Safari 6.0 does not open on OS 10.7.4

    Hi, Safari 6.0 crashes soon as I open it on OS 10.7.4. Need help please. Thanks.