Just Can't Get It!!

Ok, this is day 4 of trying to figure this out and I know I am so close, but I am just missing something really simple in manipulating the input such that I get the output into a date in the form of MM/dd/yyyy.
I Have a JTextField text
I have a JButton enter
Under the code below, when I enter:
12122001 in the JTextField
click enter (JButton)
the 12122001 changes to DEcember 12, 2001 00:00:00 utc (or close to that)
When what I really want is for it to change to and output 12/12/2001 (within the same textField).
Iit is actually changing within the same JTextField, which is what I want , just in the wrong format. At what stage and how in the code do I specify the format that I want the changed to text to come out as?
I have gone over the API a hundred times and tried changing the string to a StringBuffer, format(), dateFormat, getDateInstance(), Date, If it is in the API I tried it and done so in various combinations. I am sure I am just missing something small, Could someone please help!!!!!
Thanks alot as always, Oz.
public void actionPerformed(ActionEvent e){
          if((e.getSource() == text) || (e.getSource() == enter)){
               String text1 = text.getText();
               SimpleDateFormat sdf = new SimpleDateFormat();
          try{
               sdf.setLenient(true);
               Date formattedDate = sdf.parse(text1);
               text.setText(formattedDate.toString());
               catch(ParseException pe){
               text.setText("bad Date");
          }

I've tried to manipulate what you said below a number of different ways, but can't seem to figure it out. The original way will suffice for what I want, but it would really help my understanding of how to further manipulte the code if you could just help one last time, I am soooo close I can taste it!!!
This is what I am thinking based on what you mentioned!
Thanks for your patience! Oz.
String text1 = text.getText();
               SimpleDateFormat sdf = new SimpleDateFormat("MMddyyyy");
               SimpleDateFormat df = new SimpleDateFormat("MM/dd/yyyy");
          try{
               sdf.setLenient(false);
               df.setLenient(false);
               Date formattedDate = sdf.parse(text1);
               df.applyPattern("MM/dd/yyyy");          
               text.setText(df.format(formattedDate));
               

Similar Messages

  • I have been using my apple tv to access netflix for several months.  It suddenly stopped working.  When I try to go to netflix from the menu, it says "accessing netflix" but never does.  I can access you tube just fine, but just can't get to netflix.

    I have been using my apple tv to access netflix for several months.  It suddenly stopped working.  When I try to go to netflix from the menu, it says "accessing netflix" but never does.  I can access you tube just fine, but just can't get to netflix.  Any ideas.  I have unplugged everything and waited but nothing helped. 

    Update software. If that doesn't work try resetting.  Mine started working after the update.

  • Port 8080: I know this is simple, I just can't get it to work.

    I'm trying something that I'm sure is relatively simple. But I just can't get it to work. I have OSX Server 10.4.10. I currently have my company site (www.example.com) hosted on it. But I'm trying to get another site hosted on it at port 8080. When I enter my company domain, www.example.com:8080, the page can't be displayed. But when I enter the IP address, such as 192.168.xxx.xxx:8080 from within my network, the correct site shows up. How can I get a website displayed at port 8080 from outside my network? I'm running DD-WRT on my router and have ports 80 and 8080 directed to the IP address of my server.
    Thanks in advance for any help.

    Hi WiFiNetGuy-
    I am a tad confused, which isn't new, but I need to get a grasp on exactly what it is that you are trying to do.
    Do you have both websites (i.e. www.example1.com and www.example2.com) both pointed at the same ip address? How many unique domain names and ip addresses are we talking about?
    From what you describe it sounds like a routing issue but I need more info (:>)
    Luck-
    -DaddyPaycheck

  • My printer is on line i just can not get it working on my laptop

    my printer is on line i just can not get it working on my laptop

    Hi @murphyett , 
    Thank you for visiting the HP Support Forums and Welcome. I have read about your HP Printer and not working Wirelessly. Here is a link to the HP Print and Scan Doctor. The HP Print and Scan Doctor will run a check on your system.
    What is the model of printer? I would be happy to assist if needed as there are many models of HP Printers I would need the model number. How Do I Find My Model Number or Product Number?
    Please respond with which Operating System you are running:
    Which Windows Operating System am I running?
    Please let me know.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • My iPhone 4s Bluetooth is not working, I have ios 5.1 but just can't get my Sony erricson hbh-pv715 headset to connect to the phone,  the phone can't find any Bluetooth device, can you help please

    My iPhone 4s Bluetooth is not working, I have ios 5.1 but just can't get my Sony erricson hbh-pv715 headset to connect to the phone,  the phone can't find any Bluetooth device, can you help please

    Yes it's in pairing mode, it worked fine with the 3GS but doesn't seem to work with the 4s,  my 4s can't find any other bluetooth device, I think the problem ls with apple?

  • I just can't get it to work  :-(

    I was given this code and found another only slightly different. I've seen them both working but when I try to put it on my page, it doesn't matter what I do, I can't get either to work. The problem is not with the code but with the service I'm going through (addr.com). If anyone is willing to help me figure this out through email, I would be very appreciative.
    <APPLET CODE=PoolMenu WIDTH=570 HEIGHT=65>
    <PARAM NAME=image VALUE="images/logo.gif">
    </APPLET>
    <applet code="PoolMenu" CODEBASE="files/" id="PoolMenu" width=468 height=60>
    <param name=image value=images/logo.gif>
    </applet>
    [email protected]

    images/logo.gif does exist at
    www.holidaysportsinc.com/images/logo.gif
    The PoolMenu.class is hard to explain. They have
    given me this address to view their test servlets -
    http://holidaysportsinc.com/servlets/TestServlet
    -- which reveals that they don't know much about what you are doing...
    First you have an applet which is run on the client. Then they give you a servlet container, which is used to run server side application written in Java.
    Something's not right here...
    My .class file is placed into the servlets/holidays
    folder. This is where they told me I had to upload my
    own java/class files but I can't seem to get to it.
    By going to this address -
    http://holidaysportsinc.com/servlets/holidays/PoolMenu
    class
    I get a "The requested URL /servlets/holidays was not
    found on this server."Is it there, then?
    I've even tried putting it into just the servlets
    folder but I get the same message.It shouldn't make any difference where the class file is, if you set the codebase and code attributes properly in th html.
    Just slap it somewhere on the server and give the path to it in codebase. Like if you have the .class in /foo/bar/Baz.class codebase should be "/foo/bar/" - and code "Baz".
    >
    I've tried writing them about it and they recommended
    I come here for further help because they don't deal
    directly with the java/class files, they only supply
    the server to do it on. I am at a loss.And so are they :)

  • I've just changed from a PC to a mac and have a large number of downloaded WMA music files (not i-tunes purchases) which I just can't get into my i-tunes library. File converters don't seem to work either. Any ideas?

    I've just changed from a PC to a mac and have a large number of downloaded WMA music files which I can't get into i-tunes. When the library was in Windows, i-tunes would convert the files automatically, but this doesn't happen now. I've downloaded a couple of file converters, but these don't seem to work either. Any ideas?

    iTunes for Windows (but not iTunes for Mac) can import and convert unprotected WMA tracks. If the tracks are protected by DRM (Digital Rights Management) then it will not accept them.
    One option would be to install iTunes on your PC, do the conversion, and then transfer the converted tracks from iTunes on your PC to iTunes on your Mac.

  • Flash Plug-in - I just can't get it !

    Hi !
    I'm new at the OSX world.
    I just bought my first Apple and I'm loving it. But I have a small problem that I just can't crack. The instalation of the Flash plug-in. Everytime I enter some web pages I get the "MIME application/x-shockwave-flash does not exist" message.
    I know I have to download the plug-in, but the problem is the instalation of it. I do everything as requiered, but there's something wrong as it is not working.
    Can anybody help ?
    Thankx !
    Apple iMac G5 17'' Intel Core Duo 1,83Mhz 512Mb   Mac OS X (10.4.5)  

    ...Thank you guys,
    i've just reinstaled all the plug-ins from my
    original disc through Pacifist.
    You're welcome. Please mark the appropriate posts as "Helpful" and "Solved." It will help others in the future when posed with a similar problem.
    I can see my favourite car now:
    http://www.honda.pt/auto/configurador.asp?modelo=civic
    %20hybrid&popup=hybrid
    Cool car by the way - might just be my next car...who knows
    -Ryan

  • I am trying to down load a moive from Itunes and keep getting err (-50) saying check connection and there is nothing wrong with my connection. I have downloaded movies since just can't get this movie (Safe House) downloaded.

    I am trying to download a movie from Itunes and keep getting the ERR (-50) saying check connection and there is nothing wrong with connnection. I have downloaded movies since and just can't download this movie (Safe House) downloaded. Help Please

    Perhaps try the "Error -50," "-5000," "8003," "8008," or "-42023" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • I just can't get it to install

    At fist i couldent get my ipod to sync.  was recomended to uninstall and re install.  Well no i cant install itunes.  I get to the window that says save file and then nothing happens.  I can't find any install files any where in my computer.

    I get to the window that says save file and then nothing happens.
    Try downloading an installer from the Apple website using a different web browser:
    http://www.apple.com/itunes/download/
    If you use Firefox instead of IE for the download (or vice versa), do you get a working installer?
    If you still can't get a working installer from the standard download page, try the following direct download links for 11.1.5.5:
    iTunes 11.1.5 for Windows (32-bit) - iTunesSetup.exe (2014-02-25)
    iTunes 11.1.5 for Windows (64-bit) - iTunes64Setup.exe (2014-02-25)

  • Just can't get my head around onLoadInit/movieClipLoader

    Hi,
    I am loading images into flash from a mySQL database with php
    using this code:
    myData.onLoad = function(succes){
    if(succes){
    for(var i=0; i<this.cant; i++){
    this.ref["target_mc"+i].loadMovie(this["image"+i])
    } else trace("Error loading data");
    I need to set what size these images display at as they need
    to be shown as thumbnails as well as main images. I have learnt
    that it is best to do this using the onLoadInit and moviecliploader
    actionscript but I just can't understand what they are doing in the
    help files. Does anyone have any advice or code examples that might
    help. This is my first venture into using flash with a database so
    the syntax loses me at times.
    thanks
    Gavin

    Actually the MovieClipLoader is intended to make loading
    external jpg files more controllable...it has nothing to do with
    loading data from a database.
    The MovieClipLoader requires 3 pieces to work:
    1. the MCL object
    2. A Listener object to listen to Events
    3. Event functions (like onLoadInit) which are called by the
    Listener when Events happen

  • Album artwork.... just can't get it to work right.

    Hello.
    I've searched google, I've searched this support community and I've just not been able to come up with an answer.
    My album artwork just won't stay put. Some of my albums have artwork and some don't. I've done the "right click" and "get album art work". I've downloaded an app to find art work for the drag and drop method into the "Now Playing" window but it just gets eaten by Itunes (it appears in the window and magically disappears). I've even done the "get info" on multiple tracks and drag and drop into the "artwork"  window of the info pane and while it sticks and stays put nothing happens when I press ok only to reopen the info pane ( "get info" on multiple tracks) and it's as if I've done absolutely nothing. My permissions are fine. My music files are a mixed bunch of MP3 and WAV but this isn't a factor as some MP3's have artwork and some don't, as well as my WAV's.
    I've searched in and out, high and low but I've just not come up with anything that gets this in order. The problem isn't getting the artwork it's getting Itunes (10.5.1) to attach it to the albums and display it. My Mac OS X is Lion 10.7.2. Can anyone help?
    Thanking you before hand.

    Looks like it does have something to do with WAV format. I got the missing artwork on the MP3's working (by simply dragging and dropping...don't know how that didn't work before) but it's true that the WAV format does not support artwork (as stated several time here in this support community). What threw a brick in all my thinking is that some of my WAV's do have artwork. After some searching though I deduced that the WAV's with artwork showing are albums you can obtain from the itunes store while those that you can't don't show. Even some of the albums that I I copied in WAV that you can obtain from the Itunes store but have minor differences don't show artwork (eg. itunes sells the extended track album while i have the original length album)
    I find this rather silly to be honest since there is a work around. I guess the question now is, where is itunes storing the artwork for the WAV files that do show artwork and can I tap into that so it does show for those WAV's missing the artwork?

  • Just can't get it to work!

    I purchased a 1TB External HDD a few days ago, and after reformatting and trying over and over only to keep seeing the "Calculating Changes" bar, I decided to return the HDD thinking it was broken somehow.
    Now I have a 2TB external HDD, I have formatted it as journaled, checked its permissions, and it is still stuck on "calculating changes" and I'm so frustrated I'm about to throw my Mac out my window. -_-;;
    I have almost no space left on my 250GB drive, so I want to back up my HDD and do a complete reinstall of OSX and then transfer some files onto my external drive.
    I have tried all the tricks found from doing research for this problem for hours, and nothing works.
    Any suggestions? I appreciate them all!

    I have almost no space left on my 250GB drive
    That very well could be the source of your problems. When free space on the boot drive gets too low, performance begins to lag, and if it gets low enough, your machine can start doing strange things, crashing and even become impossible to start up.
    so I want to back up my HDD and do a complete reinstall of OSX and then transfer some files onto my external drive.
    As Pondini says, what you appear to want to do is extremely unsafe. You should not be storing originals on the backup drive. Just because they are on the backup drive does not mean they are backed up; they are not, if there's no copy anywhere else. Further, it's not a good idea to use a backup drive for everyday tasks (other than backup).
    If replacing your internal drive with a larger one is not an option, you need to get another external that can hold the "overflow", and back up both that and the internal onto the 2 TB drive. Also note that having only one backup is only a bit safer than having none at all... you really ought to have a minimum of two completely separate backups, made with two different backup programs. See my [Mac Backup Guide|http://www.reedcorner.net/guides/backups> for more about this kind of thing.

  • Just can't get Airport Express to configure: it worked at my mum's, but not at home!

    Hello helpful people,
    I am really hoping someone can think of what's going wrong with my set up. I keep getting an error message "an unexpected error occurred, please try again" when i try to do my configuration. I only want it to stream music from my ipad to my stereo. I would really prefer to do the set up only using an ipad, if at all possible.
    I was given a shiny new Airport Express for Christmas. As i was staying at my mum's for two weeks, I plugged it into her stereo, and got it working. This was configured to join her existing wifi network, using only my iPad to set it up. The airport utility software was not used, as i didn't know it existed. All worked fine.
    It looks as if my router is running WEP. So i gather i need airport utility to configure it. Airport utility says it can't detect a base station anywhere, even when inches away. There don't seem to be any options to get it to work differently.
    I have reset and factory reset the device many times.
    Some level of wireless access must be working on it, as it appears on my wireless list as a possible "set up airport express base station"
    I go through the menus to set it up in the same way as at my mum's: selecting my existing wifi network to add it into, setting up a new base station password, and then watching and waiting.
    Among the different resets and re-attempts i have done, it varies slightly in behaviour: the last time it failed it didn't get as far as asking for my wifi password.
    After the error message i can't "try again" as suggested. It wipes out my wifi access, so i need to delete my existing wifi network (on the ipad) and re-add it to get an internet connection back again. I need to do a reset to get the "configure new base station" message back.
    The differences between the two houses:
    The stereo connection is different in the two houses: single 3.5mm jack into mum's; 3.5mm jack split into two needed for our stereo. I know it says you need to plug into the stereo first (and I have),  but surely the device doesn't care which cable i use?
    At my house, the wireless router and airport box are within 4m of each other. At my mother's it's more like 20m.
    My wireless router is from O2 (now Sky), my mother's is plusnet.

    It looks as if my router is running WEP.
    Virtually no security at all there, as there are numerous free utilities available on the Internet that will crack a WEP network in seconds.  You might as well run the network wide open, since WEP offers about the same level of protection.
    You will not be able to configure the Express using an iPhone, iPad, or any version of AirPort Utility that is 6.x or higher with your router set to use WEP "security". They will not work with WEP, since it is so long out of date and non-secure.
    An older version of AirPort Utility 5.x might allow you to configure the Express using WEP security, but with no protection anyway, this would be of little value.
    See if your router can be configured to use WPA2 Personal security or WPA/WPA2 Personal security. If it can, then you will be able to use an iPhone, iPad, or any version of AirPort Utility to configure the Express in just a few minutes.
    If your router cannot be configured to use stronger current WPA settings, now might be a very good time to ask your service provider for a new router.

  • Mutt and msmtp - I just can't get mutt to send

    Hello all, I have been battling with this for some time, I hope you can help.
    I have been running arch for several years now and thought I might start using mutt.  I have installed the version from the AUR with the side bar patch (version 1.5.21) and have it retrieving my email from an email server that I run.
    I initially tried to use mutt's new in built SNMP functionality but couldn't get it to work with my server.  My server uses TLS/SSL plain text auth but is listening on a non standard port.
    My .muttrc is as follows
    #muttrc by martin thanks to brisbin
    set realname = "Martin"
    set imap_user = "[email protected]"
    set imap_pass = "somepassword"
    set folder=imaps://mymailserver.com:8993/
    set spoolfile=+INBOX
    set record=imaps://mail.mymailserver.com/Sent
    set imap_check_subscribed
    set certificate_file = ~/.mutt/cert_file # where to store certs
    set mailcap_path = ~/.mutt/mailcap # entrys for filetypes
    source ~/.mutt/colours
    set from="[email protected]"
    set sendmail = "/usr/bin/msmtp"
    set ssl_verify_host = no
    set ssl_verify_dates = no
    set use_from=yes
    #set envelope_from=yes
    # main options
    set beep_new # terminal bell on new message
    unset confirmappend # don't ask, just do
    set delete # don't ask, just do
    set mail_check = 0 # minimum time between scans
    unset markers # no ugly plus signs
    unset mark_old # read/new is good enough for me
    set menu_scroll # scroll in menus
    set pager_index_lines = 10 # number of index lines to show
    set pager_context = 5 # number of context lines to show
    set pager_stop # don't go to next message automatically
    set pipe_decode # strip headers and eval mimes when piping
    set reverse_alias # show names from alias file in index
    #set sort = threads # like gmail
    #set sort_aux = reverse-last-date-received # like gmail
    #unset sort_re # always thread
    set thorough_search # strip headers and eval mimes before searching
    set thread_received # sort threads by date received, not sent
    set tilde # show tildes like in vim
    set timeout = 3 # idle time before scanning
    unset wait_key # don't show "Press any key to continue"
    unset resolve # stops attachjments being downloaded
    # sidebar settings
    set sidebar_visible = yes
    set sidebar_width = 25
    set sidebar_delim = '|'
    set status_format = "-%r- %v ------+----/ %f %m%?n? [+%n]?%?d? [-%d]?%?t? [*%t]? /%?p?---/ %p waiting to send /?-%>-(%P)---"
    # colors
    color sidebar_new brightyellow black
    # sidebar bindings
    bind index,pager \CJ sidebar-next
    bind index,pager \CK sidebar-prev
    bind index,pager \CB sidebar-open
    My .msmtprc file is as follows (which I have sodt linked the /etc/msmtprc just incase....
    account home
    host mail.mymailserver.com
    port 8465
    protocol smtp
    logfile /home/martin/.newmsmtp.log
    auth plain
    user [email protected]
    from [email protected]
    tls on
    tls_certcheck off
    tls_starttls off
    tls_force_sslv3 on
    account default : home
    I have confirmed the path to msmpt and have confirmed it is getting passed to mutt ok by using the "set: sendmail" command.
    If I try sending in mutt it errors out with an SSL error but this error never seems to change regardless of what I do to the msmtprc, in fact if I delete the password field in the msmtprs mutt doesn't even ask for the password (I have tried it with and without passwords in the msmptrc - no change.  The precise error message when trying to send from mutt that shows down the bottom of the terminal is
    SSL failed: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol
    This would explain thing but, if I send a test email direct from the CLI using msmtp eg
    echo "Please prevent me from throwing this against the wall" | msmtp -a home [email protected]
    it sends OK and asks me for the password when I send as well.
    I'm at my wits end and have spent numerous hours o it in an effort to get it working.  There must be something simple I am missing.  Anyone's help is appreciated.

    Good evening all.
    Passing mutt- v find sthat it doesn't appear to be chnaging the sendmail path.....
    Mutt 1.5.21 (2010-09-15)
    Copyright (C) 1996-2009 Michael R. Elkins and others.
    Mutt comes with ABSOLUTELY NO WARRANTY; for details type `mutt -vv'.
    Mutt is free software, and you are welcome to redistribute it
    under certain conditions; type `mutt -vv' for details.
    System: Linux 3.3.4-2-ARCH (i686)
    ncurses: ncurses 5.9.20110404 (compiled with 5.9)
    libidn: 1.24 (compiled with 1.24)
    hcache backend: GDBM version 1.10. 13/11/2011 (built Nov 19 2011 00:26:19)
    Compile options:
    -DOMAIN
    -DEBUG
    -HOMESPOOL -USE_SETGID +USE_DOTLOCK -DL_STANDALONE +USE_FCNTL -USE_FLOCK
    +USE_POP +USE_IMAP +USE_SMTP
    +USE_SSL_OPENSSL -USE_SSL_GNUTLS +USE_SASL +USE_GSS +HAVE_GETADDRINFO
    -HAVE_REGCOMP +USE_GNU_REGEX
    +HAVE_COLOR +HAVE_START_COLOR +HAVE_TYPEAHEAD +HAVE_BKGDSET
    +HAVE_CURS_SET +HAVE_META +HAVE_RESIZETERM
    +CRYPT_BACKEND_CLASSIC_PGP +CRYPT_BACKEND_CLASSIC_SMIME +CRYPT_BACKEND_GPGME
    -EXACT_ADDRESS -SUN_ATTACHMENT
    +ENABLE_NLS -LOCALES_HACK +HAVE_WC_FUNCS +HAVE_LANGINFO_CODESET +HAVE_LANGINFO_YESEXPR
    +HAVE_ICONV -ICONV_NONTRANS +HAVE_LIBIDN +HAVE_GETSID +USE_HCACHE
    -ISPELL
    SENDMAIL="/usr/sbin/sendmail"
    MAILPATH="/var/mail"
    PKGDATADIR="/usr/share/mutt"
    SYSCONFDIR="/etc"
    EXECSHELL="/bin/sh"
    -MIXMASTER
    To contact the developers, please mail to <[email protected]>.
    To report a bug, please visit http://bugs.mutt.org/.
    patch-1.5.16hg.cd.trash_folder.vl.1
    sidebar-1.5.21-5 (debian-version)
    The thing is I do not have sendmail installed.
    Does anyone have any suggestions on how to fix this or is it a bug?
    Cheers.

  • ADSL 2+ I just can't get it working

    So in March we get a new upgraded 21CN exchange (stanford in the vale) I'm 1.2 km from the exchange so am expecting 17mb apparently - my next door neighbour calls Zen and gets an immediate speed increase to 17mb I call BT CS and get the usual runaround after two hours I give up with them. It finally turns out the exchange is out of capacity so I need to wait until end of Sept, after BT wholesale in sept confirm we have capacity I still only have 8 MB so call CS again they suspect a fault so after several calls and testing 6 hrs later I give up. next week I try again and need to call 5 different numbers all with no progress until I somehow get back to Sales who are very apologetic and suggest that I should renew my contract and this may get Openreach to connect me to a full speed service.
    Wow I now have 9.3 mb i don't use a HH preferring a Netgear DGND3700 however I always test wth the HH on the master socket, I'm still expecting 17mb as BT promised however it's still just 9mb. My test with the HH is even stranger it reports a 14mb connection but can barely load the BT wholesale speed test page at all with a wired connection.
    I have run out of patience with BT CS can anyone help here.
    Thanks
    ADSL Link Downstream Upstream
    Connection Speed 10949 kbps 704 kbps
    Line Attenuation 20.0 db 11.5 db
    Noise Margin 3.1 db 6.8 db
    Solved!
    Go to Solution.

    welcome to the BT community forum where customers help customers and only BT employees are the forum mods
    in order for the forum members to help please can you post the adsl stats from your router you may need to 'show detail' to get all stats (if hub enter 192.168.1.254 in your browser and navigate to adsl or if HH4/5 then go to troubleshooting then logs and you are looking for 2 line together when hub last connected to internet and they will show your connection speed and noise margin or if netgear enter 192.168.0.1). Then run  btspeedtester  (MAC users may have problems). when first test completes then run diagnostic test and post the results ( do not reset the router).
    are you connected directly via a filter to the NTE5 master or test socket or to somewhere else? Is the master the only phone socket in your home?
    Have you tried the quiet line test? - dial 17070 option 2 - should hear nothing - best done with a corded phone. if cordless phone you may hear a 'dull hum' which is normal
    Someone may then be able to offer help/assistance/suggestions to your problem
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

Maybe you are looking for

  • Officejet Pro 8600 Plus duplex printing not working

    I am running Mac OSX leopard (10.5.8) and just bought the officejet pro 8600.  Everything seems to work great except I can't figure out how to print on two sides.  The option isn't allowed in page setup I have checked the settings on the printer and

  • 11.1.1.5 - How can we increase the timeout of BPM Workspace ?

    Hi , I am facing an issue where the BPM Workspace times out after every 5 mins or so. I read in another post that we need to edit some workspace.properties file - where can I find it. I tried using http://technology.amis.nl/blog/13768/increase-the-ti

  • Repeatedly being asked for MobileMe password

    Something's wrong with my keychain, and it's driving me bananas. Any help would be appreciated. For instance, I keep getting asked to enter my MobileMe password in Mail. Even though I enter it correctly, it won't accept it. It keeps popping up the sa

  • Webservice with import tag

    Hi All, I found that Flash web services doesn't work with import tags( http://www.adobe.com/devnet/flash/articles/flmxpro_webservices_03.html ).Is it also true for Flex .Becaue When i try to access a web service from flex I keep getting Error# 2032 (

  • Incorrect Date in Portal Production

    Problem is that the date is incorrect in the portal banner. eg. it now says feb. 02 when it's actually the 12th??? Anyone have ideas why it's doing this. I read about turning caching off but that is only a quick fix. It seems that different dates exi